@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #XL
@VDM.private: true
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PSDDOCSTDPART1'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
// Get all distinct sd document to get rid of duplicated items
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view P_SDDocStandardPartner1
as select distinct from
I_SDDocumentPartner as SDDocumentPartner
{
key SDDocument
}
where
SDDocumentPartner.PartnerFunction = 'AG' or
SDDocumentPartner.PartnerFunction = 'WE' or
SDDocumentPartner.PartnerFunction = 'RE' or
SDDocumentPartner.PartnerFunction = 'RG' or
SDDocumentPartner.PartnerFunction = 'VE' or
SDDocumentPartner.PartnerFunction = 'ZM';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SDDOCUMENTPARTNER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/