I_BillingProcessDocumentType

DDL: I_BILLINGPROCESSDOCUMENTTYPE Type: view_entity BASIC

Billing Process Document Type

I_BillingProcessDocumentType (Basic)

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

Billing Process Document Type · Sales

I_BillingProcessDocumentType is a Basic CDS View (Dimension) that provides data about "Billing Process Document Type" in SAP S/4HANA. It reads from 1 data source (tvfk) and exposes 11 fields with key field BillingProcessDocumentType.

SAP API Hub

StateC1
Line of BusinessSales
Application ComponentSD-BIL-GF
CapabilitiesAnalytical Dimension, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Search, Data Source for Data Extraction
PackageSales for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tvfk tvfk from

Annotations (16)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
EndUserText.label Billing Process Document Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey BillingProcessDocumentType view
ObjectModel.sapObjectNodeType.name BillingProcessDocumentType 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

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY BillingProcessDocumentType Billing Process Document Type
SDDocumentCategory vbtyp SD Document Category
IncrementItemNumber incpo Item Number Increment of SD Documents
BillingDocumentCategory fktyp Billing Category
BillgProcDocTxtDetnProcedure Text Determination Procedure for Billing Process Doc Header
BillgProcDocItmTxtDetnProced Text Determination Procedure for Billing Process Doc. Item
_Text _Text
_SDDocumentCategory _SDDocumentCategory
_BillingDocumentCategory _BillingDocumentCategory
_BillgProcDocTxtDetnProcedure _BillgProcDocTxtDetnProcedure
_BillgProcDocItmTxtDetnProced _BillgProcDocItmTxtDetnProced

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_BillingProcessDocumentType.
-- 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_BillingProcessDocumentType AS
SELECT
  cast( fkart as billingprocessdocumenttype preserving type ) AS BillingProcessDocumentType,
  vbtyp AS SDDocumentCategory,
  incpo AS IncrementItemNumber,
  fktyp AS BillingDocumentCategory,
  cast( txtgr as billg_proc_doc_text_detn_head preserving type ) AS BillgProcDocTxtDetnProcedure,
  cast( txtgr_p as billg_proc_doc_text_detn_item preserving type ) AS BillgProcDocItmTxtDetnProced
FROM tvfk
;