C_PurchasingOrganizationDP

DDL: C_PURCHASINGORGANIZATIONDP Type: view_entity CONSUMPTION Package: MM_PUR_MASTER_DATA_BDC

Purchasing Organization

C_PurchasingOrganizationDP is a Consumption CDS View that provides data about "Purchasing Organization" in SAP S/4HANA. It reads from 1 data source (I_PurchasingOrganization) and exposes 3 fields with key field PurchasingOrganization. It is exposed through 1 OData service (DP_PURCHASINGORGANIZATION). Part of development package MM_PUR_MASTER_DATA_BDC.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingOrganization I_PurchasingOrganization from

Annotations (11)

NameValueLevelField
Metadata.allowExtensions true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchasing Organization view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #EXTERNAL_DATA_PROVIDER view
ObjectModel.representativeKey PurchasingOrganization view
ObjectModel.sapObjectNodeType.name PurchasingOrganization view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
DP_PURCHASINGORGANIZATION DP_PURCHASINGORGANIZATION C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingOrganizationName PurchasingOrganizationName Purch. Org. Name
CompanyCode CompanyCode Receiver Company Code

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 C_PurchasingOrganizationDP.
-- 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 C_PurchasingOrganizationDP AS
SELECT
  PurchasingOrganization,
  PurchasingOrganizationName,
  CompanyCode
FROM I_PurchasingOrganization
;