P_ChmlCmplncInfoMigration

DDL: P_CHMLCMPLNCINFOMIGRATION SQL: PCCMPLCNINFOMIG Type: view COMPOSITE

P_ChmlCmplncInfoMigration is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfo) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncInfo I_ChmlCmplncInfo from

Annotations (9)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName PCCMPLCNINFOMIG view
AccessControl.authorizationCheck #NOT_ALLOWED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
mandt I_ChmlCmplncInfo mandt Editing Client
ChmlCmplncInfoUUID I_ChmlCmplncInfo ChmlCmplncInfoUUID Chemical Compliance Information PP
ChmlCmplncInternalName I_ChmlCmplncInfo ChmlCmplncInternalName Internal Name
StatusField

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 P_ChmlCmplncInfoMigration.
-- 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: PCCMPLCNINFOMIG

CREATE VIEW P_ChmlCmplncInfoMigration AS
SELECT
  I_ChmlCmplncInfo.mandt AS mandt,
  I_ChmlCmplncInfo.ChmlCmplncInfoUUID AS ChmlCmplncInfoUUID,
  I_ChmlCmplncInfo.ChmlCmplncInternalName AS ChmlCmplncInternalName,
  '00' AS StatusField
FROM I_ChmlCmplncInfo
;