I_BillingDocumentTypeText_2

DDL: I_BILLINGDOCUMENTTYPETEXT_2 Type: view_entity BASIC Package: VDM_SD_BIL_BD

Billing Document Type - Text

I_BillingDocumentTypeText_2 (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Sales

I_BillingDocumentTypeText_2 is a Basic CDS View that provides data about "Billing Document Type - Text" in SAP S/4HANA. It reads from 2 data sources (I_BillingDocumentType_2, I_BillingProcessDocTypeText) and exposes 5 fields with key fields BillingDocumentType, Language. It is exposed through 1 OData service (ASQL_F4374A). Part of development package VDM_SD_BIL_BD.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSales
Application ComponentSD-BIL-BD-2CL
CapabilitiesData Source for Data Extraction,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Language-Dependent Text,Data Source for Search,Data Source in SQL Select
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSales for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
I_BillingDocumentType_2 BillingDocumentType inner
I_BillingProcessDocTypeText Text from

Annotations (15)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
Consumption.ranked true view
EndUserText.label Billing Document Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey BillingDocumentType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4374A ASQL_F4374A C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BillingDocumentType I_BillingDocumentType_2 BillingDocumentType Billing Document Type
KEY Language I_BillingProcessDocTypeText Language Report Text Language
BillingDocumentTypeName Description of Billing Document Type
_Language I_BillingProcessDocTypeText _Language
_BillingDocumentType _BillingDocumentType

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 I_BillingDocumentTypeText_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 I_BillingDocumentTypeText_2 AS
SELECT
  BillingDocumentType.BillingDocumentType AS BillingDocumentType,
  Text.Language AS Language,
  cast ( Text.BillingProcessDocumentTypeName as billingdocumenttypename preserving type ) AS BillingDocumentTypeName,
  Text._Language AS _Language
FROM I_BillingProcessDocTypeText AS Text
INNER JOIN I_BillingDocumentType_2 AS BillingDocumentType ON /* join condition not captured in parsed metadata */
;