R_PPSEntityProfileHeaderDraft

DDL: R_PPSENTITYPROFILEHEADERDRAFT Type: view_entity BASIC

Entity Profile Header - Draft

R_PPSEntityProfileHeaderDraft is a Basic CDS View that provides data about "Entity Profile Header - Draft" in SAP S/4HANA. It reads from 1 data source (pps_prof_h_d) and exposes 14 fields with key field PPSEntityProfileUUID.

Data Sources (1)

SourceAliasJoin Type
pps_prof_h_d pps_prof_h_d from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Entity Profile Header - Draft view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY PPSEntityProfileUUID ppsentityprofileuuid
ChangeLogRefObjID changelogrefobjid CHAR90
PPSEntityProfileID ppsentityprofileid
PPSEntityProfileDescription ppsentityprofiledescription
CreatedAtDateTime createdatdatetime Created On
ChangedOnDateTime changedondatetime Last Changed At
CreatedByUser createdbyuser User Name
ChangedBy changedby User Name
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view R_PPSEntityProfileHeaderDraft.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW R_PPSEntityProfileHeaderDraft AS
SELECT
  PPSEntityProfileUUID,
  ChangeLogRefObjID,
  PPSEntityProfileID,
  PPSEntityProfileDescription,
  CreatedAtDateTime,
  ChangedOnDateTime,
  CreatedByUser,
  ChangedBy,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges
FROM pps_prof_h_d
;