P_AROAccDocHdrData

DDL: P_AROACCDOCHDRDATA SQL: PAROACCDOC Type: view BASIC Package: ARO_UI_ODATA

Private on BKPF without logic

P_AROAccDocHdrData is a Basic CDS View that provides data about "Private on BKPF without logic" in SAP S/4HANA. It reads from 1 data source (bkpf) and exposes 6 fields with key fields CompanyCode, AccountingDocument, FiscalYear. Part of development package ARO_UI_ODATA.

Data Sources (1)

SourceAliasJoin Type
bkpf bkpf from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PAROACCDOC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.private true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs
KEY AccountingDocument belnr
KEY FiscalYear gjahr
AROPostingObjectKey awkey
AROPostingDocumentNumber xblnr
AROAccountingPrinciple acc_principle
@AbapCatalog.sqlViewName: 'PAROACCDOC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.private: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view P_AROAccDocHdrData
  as select from bkpf
{
  key bukrs         as CompanyCode,
  key belnr         as AccountingDocument,
  key gjahr         as FiscalYear,
      awkey         as AROPostingObjectKey,
      xblnr         as AROPostingDocumentNumber,
      acc_principle as AROAccountingPrinciple

}