I_BillingDocumentTypeText_2
Billing Document Type - Text
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. Part of development package VDM_SD_BIL_BD.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_BillingDocumentType_2 | BillingDocumentType | 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 | 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 |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillingDocumentType | I_BillingDocumentType_2 | BillingDocumentType | |
| KEY | Language | I_BillingProcessDocTypeText | Language | |
| BillingDocumentTypeName | ||||
| _Language | I_BillingProcessDocTypeText | _Language | ||
| _BillingDocumentType | _BillingDocumentType |
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@Consumption.ranked: true
@EndUserText.label: 'Billing Document Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.representativeKey: 'BillingDocumentType'
@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_BillingDocumentTypeText_2
as select from I_BillingProcessDocTypeText as Text
inner join I_BillingDocumentType_2 as BillingDocumentType on Text.BillingProcessDocumentType = BillingDocumentType.BillingDocumentType
association to parent I_BillingDocumentType_2 as _BillingDocumentType on $projection.BillingDocumentType = _BillingDocumentType.BillingDocumentType
{
@ObjectModel.foreignKey.association: '_BillingDocumentType'
@ObjectModel.text.element: ['BillingDocumentTypeName']
key BillingDocumentType.BillingDocumentType,
@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 billingdocumenttypename preserving type ) as BillingDocumentTypeName,
Text._Language,
_BillingDocumentType
}
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