C_IN_IncgInvcHlthChkErrList

DDL: C_IN_INCGINVCHLTHCHKERRLIST Type: view_entity CONSUMPTION Package: J1I_GST_LOG_APP

Incoming Invoice GST IN Hlth Chk Error

C_IN_IncgInvcHlthChkErrList is a Consumption CDS View that provides data about "Incoming Invoice GST IN Hlth Chk Error" in SAP S/4HANA. It reads from 1 data source (I_IN_IncgInvcHlthChkErrList) and exposes 12 fields with key fields CompanyCode, AccountingDocument, FiscalYear. It is exposed through 1 OData service (J_1IG_UI_HC_INCGINVCACCTDOC). Part of development package J1I_GST_LOG_APP.

Data Sources (1)

SourceAliasJoin Type
I_IN_IncgInvcHlthChkErrList I_IN_IncgInvcHlthChkErrList projection

Annotations (8)

NameValueLevelField
EndUserText.label Incoming Invoice GST IN Hlth Chk Error view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

OData Services (1)

ServiceBindingVersionContractRelease
J_1IG_UI_HC_INCGINVCACCTDOC J_1IG_UI_HC_INCGINVCACCTDOC V4 C1 NOT_RELEASED

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY AccountingDocument AccountingDocument Journal Entry
KEY FiscalYear FiscalYear G/L Fiscal Year
DocumentDate DocumentDate Journal Entry Date
PostingDate PostingDate Posting Date for GR
BusinessPlace _IncgInvcAPItem BusinessPlace Business place
BusinessPlaceDescription
Supplier _IncgInvcAPItem Supplier Supplier
BPSupplierName
SupplierInvoiceWthnFiscalYear SupplierInvoiceWthnFiscalYear
CompanyCodeName _CompanyCode CompanyCodeName Company Name
IN_GSTHlthChkNmbrOfErrors IN_GSTHlthChkNmbrOfErrors

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_IN_IncgInvcHlthChkErrList.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_IN_IncgInvcHlthChkErrList AS
SELECT
  CompanyCode,
  AccountingDocument,
  FiscalYear,
  DocumentDate,
  PostingDate,
  _IncgInvcAPItem.BusinessPlace AS BusinessPlace,
  _IncgInvcAPItem._BusinessPlace.BusinessPlaceDescription AS BusinessPlaceDescription,
  _IncgInvcAPItem.Supplier AS Supplier,
  _IncgInvcAPItem._Supplier.BPSupplierName AS BPSupplierName,
  SupplierInvoiceWthnFiscalYear,
  _CompanyCode.CompanyCodeName AS CompanyCodeName,
  IN_GSTHlthChkNmbrOfErrors
FROM I_IN_IncgInvcHlthChkErrList
;