P_ChmlCmplncPrpsAssgmt

DDL: P_CHMLCMPLNCPRPSASSGMT Type: view CONSUMPTION

P_ChmlCmplncPrpsAssgmt is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_ChmlCmplncInfo) and exposes 3 fields with key field ChemicalCmplncPrpsAssgmtUUID.

Data Sources (1)

SourceAliasJoin Type
I_ChmlCmplncInfo PackagedProduct from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PCCPRPSASSGMT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChemicalCmplncPrpsAssgmtUUID PrpsAssgmt ChmlCmplncPrpsAssgmtUUID
ChemicalComplianceUUID I_ChmlCmplncInfo ChmlCmplncInfoUUID
CmplncPrpsUUID PrpsAssgmt CmplncPrpsUUID
@AbapCatalog:
{
  -- SQL view name (16 characters)
  sqlViewName: 'PCCPRPSASSGMT',

  --If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
  compiler.compareFilter: true
}

--Access Control: Authorizations Checks
@AccessControl:
{
  authorizationCheck: #NOT_REQUIRED
}

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

--VDM view type
@VDM.viewType: #CONSUMPTION
@VDM.private: true

define view P_ChmlCmplncPrpsAssgmt
  as select from I_ChmlCmplncInfo       as PackagedProduct
    join         I_ChmlCmplncPrpsAssgmt as PrpsAssgmt on PrpsAssgmt.ChmlCmplncInfoUUID = PackagedProduct.ChmlCmplncInfoUUID
{
  key PrpsAssgmt.ChmlCmplncPrpsAssgmtUUID                   as ChemicalCmplncPrpsAssgmtUUID,
      PackagedProduct.ChmlCmplncInfoUUID                    as ChemicalComplianceUUID,
      PrpsAssgmt.CmplncPrpsUUID                             as CmplncPrpsUUID
}