P_CHMLCMPLNCPRPSASSGMT
Purpose Assignments from Unpackaged and Packaged Product
P_CHMLCMPLNCPRPSASSGMT is a CDS View in S/4HANA. Purpose Assignments from Unpackaged and Packaged Product. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_ChmlCmplncPrpsAssgmtCt | view | from | CONSUMPTION | Count Purpose Assignments from Finished Good and Product |
@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
}