I_CollectionsCompanyCode

DDL: I_COLLECTIONSCOMPANYCODE Type: view BASIC

Collections Company Code

I_CollectionsCompanyCode is a Basic CDS View that provides data about "Collections Company Code" in SAP S/4HANA. It reads from 1 data source (udm_comp_code) and exposes 1 field with key field CompanyCode.

Data Sources (1)

SourceAliasJoin Type
udm_comp_code udm_comp_code from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICOLLCCODE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Collections Company Code view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey CompanyCode view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode comp_code Procuring Comp. Cde

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_CollectionsCompanyCode.
-- 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 I_CollectionsCompanyCode AS
SELECT
  comp_code AS CompanyCode
FROM udm_comp_code
;