I_CmmdtyCoCodePrftCtrVH

DDL: I_CMMDTYCOCODEPRFTCTRVH SQL: ICMMDTYCOCODEPFC Type: view BASIC

View for Company Code and Profit Center

I_CmmdtyCoCodePrftCtrVH is a Basic CDS View that provides data about "View for Company Code and Profit Center" in SAP S/4HANA. It reads from 3 data sources (I_CompanyCode, I_ProfitCenter, I_ProfitCenterText) and exposes 4 fields with key fields CompanyCode, ProfitCenter.

Data Sources (3)

SourceAliasJoin Type
I_CompanyCode CompanyCode from
I_ProfitCenter ProfitCenter left_outer
I_ProfitCenterText ProfitCenterText left_outer

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICMMDTYCOCODEPFC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label View for Company Code and Profit Center view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_CompanyCode CompanyCode Receiver Company Code
KEY ProfitCenter I_ProfitCenter ProfitCenter Profit Center
CompanyCodeName I_CompanyCode CompanyCodeName Company Name
ProfitCenterName I_ProfitCenterText ProfitCenterName Profit Center Name

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 I_CmmdtyCoCodePrftCtrVH.
-- 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: ICMMDTYCOCODEPFC

CREATE VIEW I_CmmdtyCoCodePrftCtrVH AS
SELECT
  CompanyCode.CompanyCode AS CompanyCode,
  ProfitCenter.ProfitCenter AS ProfitCenter,
  CompanyCode.CompanyCodeName AS CompanyCodeName,
  ProfitCenterText.ProfitCenterName AS ProfitCenterName
FROM I_CompanyCode AS CompanyCode
LEFT OUTER JOIN I_ProfitCenter AS ProfitCenter ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_ProfitCenterText AS ProfitCenterText ON /* join condition not captured in parsed metadata */
;