I_CnsldtnBillingType

DDL: I_CNSLDTNBILLINGTYPE Type: view COMPOSITE

Consolidation - Combined Billing Type

I_CnsldtnBillingType is a Composite CDS View (Dimension) that provides data about "Consolidation - Combined Billing Type" in SAP S/4HANA. It has 2 associations to related views.

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnBillingTypeT _Text $projection.BillingDocumentType = _Text.BillingDocumentType
[1..1] I_CnsldtnMDSource _MDSource $projection.AdditionalMasterDataSource = _MDSource.AdditionalMasterDataSource

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICSBILLTYPE view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #COMPOSITE view
EndUserText.label Consolidation - Combined Billing Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillingDocumentType BillingDocumentType Billing Type
AdditionalMasterDataSource AdditionalMasterDataSource
_MDSource _MDSource
_Text _Text

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_CnsldtnBillingType.
-- 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_CnsldtnBillingType AS
SELECT
  BillingDocumentType,
  AdditionalMasterDataSource
LEFT OUTER JOIN I_CnsldtnBillingTypeT AS _Text ON BillingDocumentType = _Text.BillingDocumentType  -- association [0..*]
LEFT OUTER JOIN I_CnsldtnMDSource AS _MDSource ON AdditionalMasterDataSource = _MDSource.AdditionalMasterDataSource  -- association [1..1]
;