P_RU_OperAcctgDocItemNegPost

DDL: P_RU_OPERACCTGDOCITEMNEGPOST SQL: PRUACCDOCITNEGP Type: view CONSUMPTION

P_RU_OperAcctgDocItemNegPost is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_OperationalAcctgDocItem) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
I_OperationalAcctgDocItem I_OperationalAcctgDocItem from

Annotations (6)

NameValueLevelField
VDM.private true view
VDM.viewType #CONSUMPTION view
AbapCatalog.sqlViewName PRUACCDOCITNEGP view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
CompanyCode CompanyCode
AccountingDocument AccountingDocument
FiscalYear FiscalYear
IsNegativePosting IsNegativePosting
@VDM.private: true
@VDM.viewType: #CONSUMPTION
@AbapCatalog.sqlViewName: 'PRUACCDOCITNEGP'
@AbapCatalog.compiler.compareFilter:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_RU_OperAcctgDocItemNegPost
  as select from I_OperationalAcctgDocItem

{
  CompanyCode,
  AccountingDocument,
  FiscalYear,
  IsNegativePosting
}
where
      AccountingDocumentItem = '001'
  and IsNegativePosting      = 'X'
  
//  as select distinct from I_OperationalAcctgDocItem

//

//{

//  CompanyCode,

//  AccountingDocument,

//  FiscalYear,

//  TaxCode,

//  IsNegativePosting

//}

//where

//      TaxCode              <> ''

//  and IsNegativePosting    =  'X'

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_OPERATIONALACCTGDOCITEM"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/