R_ChmlCmplncInfoUnpckgdDraft

DDL: R_CHMLCMPLNCINFOUNPCKGDDRAFT Type: view_entity BASIC Package: EHFND_RAP_CCI

CCI Unpackaged Product Assignment Draft

R_ChmlCmplncInfoUnpckgdDraft is a Basic CDS View that provides data about "CCI Unpackaged Product Assignment Draft" in SAP S/4HANA. It reads from 1 data source (ehfndw_cci_unpck) and exposes 10 fields with key field UnpckgdProductAssgmtUUID. It has 1 association to related views. Part of development package EHFND_RAP_CCI.

Data Sources (1)

SourceAliasJoin Type
ehfndw_cci_unpck ehfndw_cci_unpck from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ChmlCmplncInfo _ChmlCmplncInfo _ChmlCmplncInfo.ChmlCmplncInfoUUID = $projection.PckgdChmlCmplncInfoUUID

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label CCI Unpackaged Product Assignment Draft view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY UnpckgdProductAssgmtUUID unpckgdproductassgmtuuid Product Assignment
PckgdChmlCmplncInfoUUID pckgdchmlcmplncinfouuid Chemical Compliance Information PP
UnpckgdChmlCmplncInfoUUID unpckgdchmlcmplncinfouuid Chemical Compliance Information UP
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes
_ChmlCmplncInfo _ChmlCmplncInfo

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 R_ChmlCmplncInfoUnpckgdDraft.
-- 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 R_ChmlCmplncInfoUnpckgdDraft AS
SELECT
  UnpckgdProductAssgmtUUID,
  PckgdChmlCmplncInfoUUID,
  UnpckgdChmlCmplncInfoUUID,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges
FROM ehfndw_cci_unpck
LEFT OUTER JOIN I_ChmlCmplncInfo AS _ChmlCmplncInfo ON _ChmlCmplncInfo.ChmlCmplncInfoUUID = PckgdChmlCmplncInfoUUID  -- association [0..1]
;