P_ID_StRpAssignment

DDL: P_ID_STRPASSIGNMENT SQL: PIDASSIGNMENT Type: view COMPOSITE

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

Data Sources (1)

SourceAliasJoin Type
I_ReceivablesPayablesItem I_ReceivablesPayablesItem from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PIDASSIGNMENT view
VDM.private true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (5)

KeyFieldSource TableSource FieldDescription
CompanyCode CompanyCode
FiscalYear FiscalYear
AccountingDocument AccountingDocument
TaxItemGroup TaxItemGroup
AccountingDocumentItem
@AbapCatalog.sqlViewName: 'PIDASSIGNMENT'
@VDM.private:true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #P
@ObjectModel.usageType.dataClass: #MIXED
@AccessControl.personalData.blocking: #NOT_REQUIRED

define view P_ID_StRpAssignment
  as select from I_ReceivablesPayablesItem
{
  CompanyCode,
  FiscalYear,
  AccountingDocument,
  TaxItemGroup,
  max( AccountingDocumentItem) as AccountingDocumentItem
}
where AssignmentReference  <> ' '
group by
  CompanyCode,
  FiscalYear,
  AccountingDocument,
  TaxItemGroup
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RECEIVABLESPAYABLESITEM"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/