R_ChmlCmplncInfoPckgdProdDraft

DDL: R_CHMLCMPLNCINFOPCKGDPRODDRAFT Type: view_entity BASIC Package: EHFND_RAP_CCI

CCI Packaged Product Assgmt - Draft

R_ChmlCmplncInfoPckgdProdDraft is a Basic CDS View that provides data about "CCI Packaged Product Assgmt - Draft" in SAP S/4HANA. It reads from 1 data source (ehfndw_cci_prod2) and exposes 11 fields with key field PckgdProductAssgmtUUID. It has 1 association to related views. Part of development package EHFND_RAP_CCI.

Data Sources (1)

SourceAliasJoin Type
ehfndw_cci_prod2 ehfndw_cci_prod2 from

Associations (1)

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

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions true view
EndUserText.label CCI Packaged Product Assgmt - 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 (11)

KeyFieldSource TableSource FieldDescription
KEY PckgdProductAssgmtUUID pckgdproductassgmtuuid Product Assignment
PckgdChmlCmplncInfoUUID pckgdchmlcmplncinfouuid Chemical Compliance Information PP
UnpckgdChmlCmplncInfoUUID unpckgdchmlcmplncinfouuid Chemical Compliance Information UP
ChmlCmplncInfoType chmlcmplncinfotype Type of Chemical Compliance Information
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_ChmlCmplncInfoPckgdProdDraft.
-- 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_ChmlCmplncInfoPckgdProdDraft AS
SELECT
  PckgdProductAssgmtUUID,
  PckgdChmlCmplncInfoUUID,
  UnpckgdChmlCmplncInfoUUID,
  ChmlCmplncInfoType,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges
FROM ehfndw_cci_prod2
LEFT OUTER JOIN I_ChmlCmplncInfo AS _ChmlCmplncInfo ON _ChmlCmplncInfo.ChmlCmplncInfoUUID = PckgdChmlCmplncInfoUUID  -- association [1..1]
;