I_InvoiceListTypeText
Invoice List Type - Text
I_InvoiceListTypeText is a Basic CDS View that provides data about "Invoice List Type - Text" in SAP S/4HANA. It reads from 2 data sources (I_InvoiceListType, I_BillingProcessDocTypeText) and exposes 5 fields with key fields InvoiceListType, Language. Part of development package VDM_SD_BIL_IL.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_InvoiceListType | InvoiceListType | inner |
| I_BillingProcessDocTypeText | Text | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Invoice List Type - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | 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 (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | InvoiceListType | I_InvoiceListType | InvoiceListType | |
| KEY | Language | I_BillingProcessDocTypeText | Language | |
| InvoiceListTypeName | ||||
| _Language | I_BillingProcessDocTypeText | _Language | ||
| _InvoiceListType | _InvoiceListType |
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@Consumption.ranked: true
@EndUserText.label: 'Invoice List Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.representativeKey: 'InvoiceListType'
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#LANGUAGE_DEPENDENT_TEXT,
#SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE ]
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, serviceQuality: #A, sizeCategory: #S }
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view entity I_InvoiceListTypeText
as select from I_BillingProcessDocTypeText as Text
inner join I_InvoiceListType as InvoiceListType on Text.BillingProcessDocumentType = InvoiceListType.InvoiceListType
association to parent I_InvoiceListType as _InvoiceListType on $projection.InvoiceListType = _InvoiceListType.InvoiceListType
{
@ObjectModel.foreignKey.association: '_InvoiceListType'
@ObjectModel.text.element: [ 'InvoiceListTypeName' ]
key InvoiceListType.InvoiceListType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key Text.Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
cast(Text.BillingProcessDocumentTypeName as invoicelisttypename preserving type) as InvoiceListTypeName,
Text._Language,
_InvoiceListType
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA