I_ChmlCmplncMnlDngrsGdsDraft

DDL: I_CHMLCMPLNCMNLDNGRSGDSDRAFT SQL: ICCIMNLDGDRFT Type: view BASIC Package: EHFND_RAP_CCI_DG

Manual Maintenance of DG Data - Draft

I_ChmlCmplncMnlDngrsGdsDraft is a Basic CDS View that provides data about "Manual Maintenance of DG Data - Draft" in SAP S/4HANA. It reads from 1 data source (ehfndw_cci_dg) and exposes 21 fields with key field ChmlCmplncMnlDngrsGdsUUID. It has 3 associations to related views. Part of development package EHFND_RAP_CCI_DG.

Data Sources (1)

SourceAliasJoin Type
ehfndw_cci_dg ehfndw_cci_dg from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_TransportPermission _TransportPermission $projection.TransportPermission = _TransportPermission.TransportPermission
[1..1] I_ChmlCmplncInfo _ChmlCmplncInfo $projection.ChmlCmplncInfoUUID = _ChmlCmplncInfo.ChmlCmplncInfoUUID
[1..1] I_CmplRqVersEnhanced _CmplRqVers $projection.CmplRqVersUUID = _CmplRqVers.CmplRqVersUUID

Annotations (10)

NameValueLevelField
EndUserText.label Manual Maintenance of DG Data - Draft view
AbapCatalog.sqlViewName ICCIMNLDGDRFT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY ChmlCmplncMnlDngrsGdsUUID chmlcmplncmnldngrsgdsuuid Generic Key
ChmlCmplncInfoUUID chmlcmplncinfouuid Chemical Compliance Information PP
ChmlCmplncProdUUID chmlcmplncproduuid Product Assignment
ClassifiedAsDangerousGood classifiedasdangerousgood Classified As
DngrsGoodsModeOfTransport dngrsgoodsmodeoftransport Mode of Transport
TransportPermission transportpermission Transport Permission
DngrsGoodsPackagingType dngrsgoodspackagingtype Dangerous Goods Packaging Type
DngrsGoodsPackagingSize dngrsgoodspackagingsize Dangerous Goods Packaging Size
DngrsGoodsPackagingSizeUnit dngrsgoodspackagingsizeunit DngrsGds Packaging Size Unit
CmplRqVersUUID cmplrqversuuid NodeID
ProductIsPackaged productispackaged Dangerous Goods: Is Packed Product
DngrsGoodsDescription dngrsgoodsdescription Dangerous Goods Description
DraftEntityOperationCode ehfndw_cci_dg draftentityoperationcode Draft - Operation Code
HasActiveEntity ehfndw_cci_dg hasactiveentity TRUE
CreationDateTime creationdatetime Timestamp
CreatedByUser createdbyuser User Name
LastChangeDateTime lastchangedatetime Timestamp
LastChangedByUser lastchangedbyuser User Name
_ChmlCmplncInfo _ChmlCmplncInfo
_TransportPermission _TransportPermission
_CmplRqVers _CmplRqVers

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_ChmlCmplncMnlDngrsGdsDraft.
-- 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.
-- SQL view name: ICCIMNLDGDRFT

CREATE VIEW I_ChmlCmplncMnlDngrsGdsDraft AS
SELECT
  ChmlCmplncMnlDngrsGdsUUID,
  ChmlCmplncInfoUUID,
  ChmlCmplncProdUUID,
  ClassifiedAsDangerousGood,
  DngrsGoodsModeOfTransport,
  TransportPermission,
  DngrsGoodsPackagingType,
  DngrsGoodsPackagingSize,
  DngrsGoodsPackagingSizeUnit,
  CmplRqVersUUID,
  ProductIsPackaged,
  DngrsGoodsDescription,
  ehfndw_cci_dg.draftentityoperationcode AS DraftEntityOperationCode,
  ehfndw_cci_dg.hasactiveentity AS HasActiveEntity,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangedByUser
FROM ehfndw_cci_dg
LEFT OUTER JOIN I_TransportPermission AS _TransportPermission ON TransportPermission = _TransportPermission.TransportPermission  -- association [0..1]
LEFT OUTER JOIN I_ChmlCmplncInfo AS _ChmlCmplncInfo ON ChmlCmplncInfoUUID = _ChmlCmplncInfo.ChmlCmplncInfoUUID  -- association [1..1]
LEFT OUTER JOIN I_CmplRqVersEnhanced AS _CmplRqVers ON CmplRqVersUUID = _CmplRqVers.CmplRqVersUUID  -- association [1..1]
;