I_InvoiceListType

DDL: I_INVOICELISTTYPE Type: view_entity BASIC

Invoice List Type

I_InvoiceListType (Basic)

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

Invoice List Type · Sales

I_InvoiceListType is a Basic CDS View (Dimension) that provides data about "Invoice List Type" in SAP S/4HANA. It reads from 1 data source (I_BillingProcessDocumentType) and exposes 7 fields with key field InvoiceListType.

SAP API Hub

StateC1
Line of BusinessSales
Application ComponentSD-BIL-IL
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
I_BillingProcessDocumentType I_BillingProcessDocumentType from

Annotations (17)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Consumption.ranked true view
EndUserText.label Invoice List Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey InvoiceListType view
ObjectModel.sapObjectNodeType.name InvoiceListType 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 (7)

KeyFieldSource TableSource FieldDescription
KEY InvoiceListType Invoice List Type
SDDocumentCategory SDDocumentCategory SD Document Category
IncrementItemNumber IncrementItemNumber Item Number Increment of SD Documents
BillingDocumentCategory BillingDocumentCategory Billing Category
_Text _Text
_SDDocumentCategory _SDDocumentCategory
_BillingDocumentCategory _BillingDocumentCategory

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_InvoiceListType.
-- 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_InvoiceListType AS
SELECT
  cast ( BillingProcessDocumentType as invoicelisttype preserving type) AS InvoiceListType,
  SDDocumentCategory,
  IncrementItemNumber,
  BillingDocumentCategory
FROM I_BillingProcessDocumentType
;