A_ACMBusPartCompanyCode

DDL: A_ACMBUSPARTCOMPANYCODE Type: view_entity CONSUMPTION

Business Partner Company Code entity

A_ACMBusPartCompanyCode is a Consumption CDS View that provides data about "Business Partner Company Code entity" in SAP S/4HANA. It reads from 1 data source (R_ACMBusPartCompanyCodeTP) and exposes 2 fields with key fields BusinessPartnerNumber, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
R_ACMBusPartCompanyCodeTP R_ACMBusPartCompanyCodeTP projection

Annotations (8)

NameValueLevelField
OData.entityType.name BusinessPartnerCompanyCode_Type view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Business Partner Company Code entity view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerNumber BusinessPartnerNumber
KEY 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 A_ACMBusPartCompanyCode.
-- 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 A_ACMBusPartCompanyCode AS
SELECT
  BusinessPartnerNumber,
  CompanyCode
FROM R_ACMBusPartCompanyCodeTP
;