A_PrftCtrCompanyCodeAssignment

DDL: A_PRFTCTRCOMPANYCODEASSIGNMENT Type: view COMPOSITE

Company Code Assignment

A_PrftCtrCompanyCodeAssignment is a Composite CDS View that provides data about "Company Code Assignment" in SAP S/4HANA. It reads from 1 data source (I_PrftCtrCompanyCodeAssignment) and exposes 3 fields with key fields ControllingArea, ProfitCenter, CompanyCode.

Data Sources (1)

SourceAliasJoin Type
I_PrftCtrCompanyCodeAssignment I_PrftCtrCompanyCodeAssignment from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName AFIPRFTCTRCCASGN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Company Code Assignment view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea Controlling Area
KEY ProfitCenter ProfitCenter Profit Center
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_PrftCtrCompanyCodeAssignment.
-- 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_PrftCtrCompanyCodeAssignment AS
SELECT
  ControllingArea,
  ProfitCenter,
  CompanyCode
FROM I_PrftCtrCompanyCodeAssignment
;