C_PurchasingOrgValueHelp

DDL: C_PURCHASINGORGVALUEHELP SQL: CPURORG_VH Type: view CONSUMPTION

Purchasing Organization

C_PurchasingOrgValueHelp 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 6 fields with key field PurchasingOrganization. It has 1 association to related views. It is exposed through 3 OData services (MM_PUR_PROCESS_PR_V4, UI_CNTRLCONTRITMSELECT_MANAGE, UI_TRDGCONTR_MANAGEV4).

Data Sources (1)

SourceAliasJoin Type
I_PurchasingOrganization PurchasingOrganization from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CPURORG_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.semanticKey PurchasingOrganization view
ObjectModel.representativeKey PurchasingOrganization view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Purchasing Organization view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view

OData Services (3)

ServiceBindingVersionContractRelease
MM_PUR_PROCESS_PR_V4 MM_PUR_PR_PROCESS_V4 V4 C1 NOT_RELEASED
UI_CNTRLCONTRITMSELECT_MANAGE UI_CNTRLCONTRITMSEL_MANAGE V2 C1 NOT_RELEASED
UI_TRDGCONTR_MANAGEV4 UI_TRDGCONTR_MANAGEV4 V4 C1 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PurchasingOrganization I_PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingOrganizationName I_PurchasingOrganization PurchasingOrganizationName Purchasing Organization Name
CompanyCode I_PurchasingOrganization CompanyCode Receiver Company Code
_CompanyCode _CompanyCode
CompanyCodeName _CompanyCode CompanyCodeName Company Name
ConfigDeprecationCode I_PurchasingOrganization ConfigDeprecationCode Validity

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_PurchasingOrgValueHelp.
-- 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.
-- SQL view name: CPURORG_VH

CREATE VIEW C_PurchasingOrgValueHelp AS
SELECT
  PurchasingOrganization.PurchasingOrganization AS PurchasingOrganization,
  PurchasingOrganization.PurchasingOrganizationName AS PurchasingOrganizationName,
  PurchasingOrganization.CompanyCode AS CompanyCode,
  _CompanyCode.CompanyCodeName AS CompanyCodeName,
  PurchasingOrganization.ConfigDeprecationCode AS ConfigDeprecationCode
FROM I_PurchasingOrganization AS PurchasingOrganization
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
;