P_PH_AssetDocItem

DDL: P_PH_ASSETDOCITEM SQL: PPHASSETITM Type: view COMPOSITE Package: GLO_FIN_IS_VAT_PH

Collecting Asset Item for Phillipine VAT

P_PH_AssetDocItem is a Composite CDS View that provides data about "Collecting Asset Item for Phillipine VAT" in SAP S/4HANA. It reads from 1 data source (I_OperationalAcctgDocItem) and exposes 5 fields with key fields CompanyCode, FiscalYear, AccountingDocument, TaxCode. Part of development package GLO_FIN_IS_VAT_PH.

Data Sources (1)

SourceAliasJoin Type
I_OperationalAcctgDocItem I_OperationalAcctgDocItem from

Parameters (1)

NameTypeDefault
P_CompanyCode fis_bukrs

Annotations (8)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode
KEY FiscalYear FiscalYear
KEY AccountingDocument AccountingDocument
KEY TaxCode TaxCode
AccountingDocumentItem
@AbapCatalog.sqlViewName: 'PPHASSETITM'
@VDM.viewType: #COMPOSITE
@VDM.private: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #P
@ObjectModel.usageType.dataClass: #MIXED
define view P_PH_AssetDocItem
  with parameters
    P_CompanyCode      : fis_bukrs
  as select from I_OperationalAcctgDocItem
{
  key CompanyCode,
  key FiscalYear,
  key AccountingDocument,
  key TaxCode,
      // key TransactionTypeDetermination,

      min (AccountingDocumentItem ) as AccountingDocumentItem
}
where
      CompanyCode = $parameters.P_CompanyCode
  and MasterFixedAsset <> ' '
  and MasterFixedAsset <> ''
group by
  CompanyCode,
  FiscalYear,
  AccountingDocument,
  // TransactionTypeDetermination,

  TaxCode