P_MX_DIOTLineItemRawData

DDL: P_MX_DIOTLINEITEMRAWDATA Type: view_entity COMPOSITE Package: GLO_FIN_IS_VAT_MX

MX DIOT Raw Data of G/L Account Line Item

P_MX_DIOTLineItemRawData is a Composite CDS View that provides data about "MX DIOT Raw Data of G/L Account Line Item" in SAP S/4HANA. It reads from 1 data source (I_GLAccountLineItemRawData) and exposes 9 fields with key fields SourceLedger, CompanyCode, FiscalYear, AccountingDocument, AccountingDocumentItem. Part of development package GLO_FIN_IS_VAT_MX.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountLineItemRawData I_GLAccountLineItemRawData from

Parameters (3)

NameTypeDefault
P_CompanyCode fis_bukrs
P_FiscalYear fis_gjahr
P_Ledger fins_ledger

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SourceLedger SourceLedger
KEY CompanyCode CompanyCode
KEY FiscalYear FiscalYear
KEY AccountingDocument AccountingDocument
KEY AccountingDocumentItem AccountingDocumentItem
KEY LedgerGLLineItem LedgerGLLineItem
TaxCode TaxCode
Supplier Supplier
AssignmentReference AssignmentReference
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl:{
  authorizationCheck: #MANDATORY,
  personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #COMPOSITE
@VDM.private:true
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #S,
  dataClass: #MIXED
}
define view entity P_MX_DIOTLineItemRawData
  with parameters
    P_CompanyCode       : fis_bukrs,
    P_FiscalYear        : fis_gjahr,
    P_Ledger            : fins_ledger

  as select from I_GLAccountLineItemRawData
{
  key SourceLedger,
  key CompanyCode,
  key FiscalYear,
  key AccountingDocument,
  key AccountingDocumentItem,
  key LedgerGLLineItem,
  TaxCode,
  Supplier,
  AssignmentReference
}
  where
    SourceLedger    = $parameters.P_Ledger
    and FiscalYear  = $parameters.P_FiscalYear
    and CompanyCode = $parameters.P_CompanyCode