P_PRODUCTDESCRIPTIOND

CDS View

P_PRODUCTDESCRIPTIOND is a CDS View in S/4HANA. It contains 7 fields. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
P_ProductDescriptionWD view left_outer COMPOSITE
P_ProductDescriptionWD view union_all COMPOSITE

Fields (7)

KeyField CDS FieldsUsed in Views
KEY ActiveProduct ActiveProduct 1
KEY Activeproductlanguage Activeproductlanguage 1
HasActiveEntity HasActiveEntity 1
language language 1
Parentdraftkey ParentDraftKey 1
product product 1
productdescription productdescription 1
// Product description draft

@AbapCatalog.sqlViewName: 'PPRDDESCRD'
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_ProductDescriptionD as select from prd_descr as DraftDocument 
{    
    key DraftDocument.draftkey          as Draftkey,     
    DraftDocument.parentdraftkey        as Parentdraftkey,        
    DraftDocument.hasactiveentity       as HasActiveEntity,
    DraftDocument.activeproduct         as ActiveProduct,
    DraftDocument.activeproductlanguage as Activeproductlanguage,
    DraftDocument.product,
    DraftDocument.language,
    DraftDocument.productdescription 
     
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PRD_DESCR"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/