C_BillgDocumentSituationAnchor

DDL: C_BILLGDOCUMENTSITUATIONANCHOR Type: view_entity CONSUMPTION

Billing Document Situation Anchor

C_BillgDocumentSituationAnchor is a Consumption CDS View that provides data about "Billing Document Situation Anchor" in SAP S/4HANA. It reads from 1 data source (I_BillingDocument) and exposes 6 fields with key field BillingDocument.

Data Sources (1)

SourceAliasJoin Type
I_BillingDocument BillingDocument from

Annotations (8)

NameValueLevelField
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Billing Document Situation Anchor view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BillingDocument I_BillingDocument BillingDocument SD Document
BillingDocumentType I_BillingDocument BillingDocumentType Billing Type
SoldToParty I_BillingDocument SoldToParty Sold-to Party
PayerParty I_BillingDocument PayerParty Payer
SalesOrganization I_BillingDocument SalesOrganization Sales Organization
CreatedByUser I_BillingDocument CreatedByUser User Name

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_BillgDocumentSituationAnchor.
-- 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_BillgDocumentSituationAnchor AS
SELECT
  BillingDocument.BillingDocument AS BillingDocument,
  BillingDocument.BillingDocumentType AS BillingDocumentType,
  BillingDocument.SoldToParty AS SoldToParty,
  BillingDocument.PayerParty AS PayerParty,
  BillingDocument.SalesOrganization AS SalesOrganization,
  BillingDocument.CreatedByUser AS CreatedByUser
FROM I_BillingDocument AS BillingDocument
;