R_PPSEntityProfileItemDraft

DDL: R_PPSENTITYPROFILEITEMDRAFT Type: view_entity BASIC

Entity Profile Item - Draft

R_PPSEntityProfileItemDraft is a Basic CDS View that provides data about "Entity Profile Item - Draft" in SAP S/4HANA. It reads from 1 data source (pps_prof_i_d) and exposes 33 fields with key field PPSEntityProfileItemUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
pps_prof_i_d pps_prof_i_d from

Associations (1)

CardinalityTargetAliasCondition
[0..1] E_PPSEntityProfileItemDraft _ProfileItemExtensionDraft $projection.PPSEntityProfileItemUUID = _ProfileItemExtensionDraft.PPSEntityProfileItemUUID

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Entity Profile Item - 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
ObjectModel.sapObjectNodeType.name PPSEntityProfileItem view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix PFI view
AbapCatalog.extensibility.quota.maximumFields 170 view
AbapCatalog.extensibility.quota.maximumBytes 1700 view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY PPSEntityProfileItemUUID ppsentityprofileitemuuid
PPSEntityProfileUUID ppsentityprofileuuid
Plant plant Valuation Area
PurchasingOrganization purchasingorganization Purchasing Organization
PurchasingGroup purchasinggroup Purchasing Group
AccountAssignmentCategory accountassignmentcategory Acct Assgmt Cat
MasterFixedAsset masterfixedasset Fixed Asset
FixedAsset fixedasset Sub-number
CompanyCode companycode Receiver Company Code
CostCenter costcenter Cost Center
FundsCenter fundscenter Funds Center
GrantID grantid Sender Grant
ProjectNetwork projectnetwork Order
Currency currency Valuation Crcy
GoodsMovementType goodsmovementtype Movement Type
PPSPricingArrangementType ppspricingarrangementtype
PPSDeliveryToleranceKey ppsdeliverytolerancekey Tolerance Key
WBSElement wbselement WBS Internal ID
PPSWarrantLimit ppswarrantlimit
PPSEntityProfileItemFieldName ppsentityprofileitemfieldname
PPSEntityProfileItemFieldValue ppsentityprofileitemfieldvalue Field_value
PPSEntityAttributeIsExcluded ppsentityattributeisexcluded
PPSEntityAttributeIsDefault ppsentityattributeisdefault
CreatedAtDateTime createdatdatetime Created On
LastChangedAtDateTime lastchangedatdatetime Changed On
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_PPSEntityProfileItemDraft.
-- 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_PPSEntityProfileItemDraft AS
SELECT
  PPSEntityProfileItemUUID,
  PPSEntityProfileUUID,
  Plant,
  PurchasingOrganization,
  PurchasingGroup,
  AccountAssignmentCategory,
  MasterFixedAsset,
  FixedAsset,
  CompanyCode,
  CostCenter,
  FundsCenter,
  GrantID,
  ProjectNetwork,
  Currency,
  GoodsMovementType,
  PPSPricingArrangementType,
  PPSDeliveryToleranceKey,
  WBSElement,
  PPSWarrantLimit,
  PPSEntityProfileItemFieldName,
  PPSEntityProfileItemFieldValue,
  PPSEntityAttributeIsExcluded,
  PPSEntityAttributeIsDefault,
  CreatedAtDateTime,
  LastChangedAtDateTime,
  CreatedByUser,
  ChangedBy,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges
FROM pps_prof_i_d
LEFT OUTER JOIN E_PPSEntityProfileItemDraft AS _ProfileItemExtensionDraft ON PPSEntityProfileItemUUID = _ProfileItemExtensionDraft.PPSEntityProfileItemUUID  -- association [0..1]
;