I_ChmlCompositionTP

DDL: I_CHMLCOMPOSITIONTP Type: view TRANSACTIONAL

Chemical Composition

I_ChmlCompositionTP is a Transactional CDS View that provides data about "Chemical Composition" in SAP S/4HANA. It reads from 1 data source (I_ChmlComposition) and exposes 17 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ChmlComposition ChemicalComposition from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ChmlComponentTP _ChemicalComponent $projection.ChmlCompositionUUID = _ChemicalComponent.ChmlCompositionUUID

Annotations (21)

NameValueLevelField
EndUserText.label Chemical Composition view
AbapCatalog.sqlViewName ICCOMPOSITIONTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.compositionRoot true view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.createEnabled EXTERNAL_CALCULATION view
ObjectModel.updateEnabled EXTERNAL_CALCULATION view
ObjectModel.deleteEnabled true view
ObjectModel.draftEnabled true view
ObjectModel.writeDraftPersistence EHFNDW_CCMPS view
ObjectModel.writeActivePersistence EHFNDV_CCMPS view
ObjectModel.entityChangeStateId LastChangeUTCDateTime view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.sapObjectNodeType.name ProductAnalyticalComposition view

Fields (17)

KeyFieldSource TableSource FieldDescription
UUIDofcompositionkeyChmlCompositionUUID
ChangedbyuserLastChangedByUser
CompositionTypeChmlCompositionType
LegalAreaProdCmplncLegalArea
ReleaseStatusChmlCompositionStatus
ValidfromdateValidityStartDateTime
ValidtoDateValidityEndDateTime
_ChemicalComponent _ChemicalComponent
_ChmlCmplncInfo _ChmlCmplncInfo
_Substance _Substance
_CompositionStatus _CompositionStatus
_CompositionType _CompositionType
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser
_ReleasedByUser _ReleasedByUser
_LegalArea _LegalArea
_LegalAreaRef _LegalAreaRef

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_ChmlCompositionTP.
-- 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_ChmlCompositionTP AS
SELECT *  -- field list not available in parsed metadata
FROM I_ChmlComposition AS ChemicalComposition
LEFT OUTER JOIN I_ChmlComponentTP AS _ChemicalComponent ON ChmlCompositionUUID = _ChemicalComponent.ChmlCompositionUUID  -- association [0..*]
;