P_Hu_SDInvoiceCorrection

DDL: P_HU_SDINVOICECORRECTION SQL: PHUSDINVOICECORR Type: view COMPOSITE Package: GLO_FIN_IS_HU

Invoice details for Domestic Sales List

P_Hu_SDInvoiceCorrection is a Composite CDS View that provides data about "Invoice details for Domestic Sales List" in SAP S/4HANA. It reads from 1 data source (I_BillingDocumentItem) and exposes 2 fields with key field BillingDocument. Part of development package GLO_FIN_IS_HU.

Data Sources (1)

SourceAliasJoin Type
I_BillingDocumentItem I_BillingDocumentItem from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PHUSDINVOICECORR view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BillingDocument BillingDocument SD Document
ReferenceSDDocument ReferenceSDDocument Reference Doc.

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 P_Hu_SDInvoiceCorrection.
-- 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.
-- SQL view name: PHUSDINVOICECORR

CREATE VIEW P_Hu_SDInvoiceCorrection AS
SELECT
  BillingDocument,
  ReferenceSDDocument
FROM I_BillingDocumentItem
;