P_FirstDbtrCrdtrRblsPyblMinItm

DDL: P_FIRSTDBTRCRDTRRBLSPYBLMINITM SQL: PDKMINITEM Type: view COMPOSITE Package: GLO_FIN_IS_VAT_GEN

Customer Vendor Minimum Line item

P_FirstDbtrCrdtrRblsPyblMinItm is a Composite CDS View that provides data about "Customer Vendor Minimum Line item" in SAP S/4HANA. It reads from 1 data source (I_OperationalAcctgDocItem) and exposes 4 fields with key fields CompanyCode, AccountingDocument, FiscalYear. Part of development package GLO_FIN_IS_VAT_GEN.

Data Sources (1)

SourceAliasJoin Type
I_OperationalAcctgDocItem I_OperationalAcctgDocItem from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PDKMINITEM view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
KEY AccountingDocument AccountingDocument
KEY FiscalYear FiscalYear
AccountingDocumentItem
@AbapCatalog.sqlViewName: 'PDKMINITEM'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass:  #MIXED
@ObjectModel.usageType.serviceQuality: #X
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
define view P_FirstDbtrCrdtrRblsPyblMinItm as select from I_OperationalAcctgDocItem
{

  key CompanyCode,
  key AccountingDocument,
  key FiscalYear,

  min(AccountingDocumentItem)       as  AccountingDocumentItem

}
where FinancialAccountType = 'D' or
      FinancialAccountType = 'K'
group by
CompanyCode,
AccountingDocument,
FiscalYear