A_BillingDocumentText_2

DDL: A_BILLINGDOCUMENTTEXT_2 Type: view_entity CONSUMPTION Package: ODATA_SD_BIL_BD_API

Header Texts

A_BillingDocumentText_2 is a Consumption CDS View that provides data about "Header Texts" in SAP S/4HANA. It reads from 1 data source (R_BillingDocumentTextTP) and exposes 4 fields with key fields BillingDocument, Language, LongTextID. It is exposed through 1 OData service (API_BILLINGDOCUMENT). Part of development package ODATA_SD_BIL_BD_API.

Data Sources (1)

SourceAliasJoin Type
R_BillingDocumentTextTP R_BillingDocumentTextTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Header Texts view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
OData.entityType.name BillingDocumentText_Type view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
API_BILLINGDOCUMENT API_BILLINGDOCUMENT V4 C2 C1

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillingDocument BillingDocument SD Document
KEY Language Language Report Text Language
KEY LongTextID LongTextID Text ID
string

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 A_BillingDocumentText_2.
-- 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 A_BillingDocumentText_2 AS
SELECT
  BillingDocument,
  Language,
  LongTextID,
  virtual LongText: abap.string AS string
FROM R_BillingDocumentTextTP
;