I_BillgDocRequestTypeText
Billing Document Request Type - Text
I_BillgDocRequestTypeText is a Basic CDS View that provides data about "Billing Document Request Type - Text" in SAP S/4HANA. It reads from 2 data sources (I_BillingDocumentRequestType, I_BillingProcessDocTypeText) and exposes 5 fields with key fields BillingDocumentRequestType, Language. Part of development package VDM_SD_BIL_BDR.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_BillingDocumentRequestType | BillingDocumentRequestType | 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 Request Type - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.representativeKey | BillingDocumentRequestType | 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 | BillingDocumentRequestType | I_BillingDocumentRequestType | BillingDocumentRequestType | |
| KEY | Language | I_BillingProcessDocTypeText | Language | |
| BillingDocumentRequestTypeName | ||||
| _Language | I_BillingProcessDocTypeText | _Language | ||
| _BillingDocumentRequestType | _BillingDocumentRequestType |
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@Consumption.ranked: true
@EndUserText.label: 'Billing Document Request Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.representativeKey: 'BillingDocumentRequestType'
@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_BillgDocRequestTypeText
as select from I_BillingProcessDocTypeText as Text
inner join I_BillingDocumentRequestType as BillingDocumentRequestType on Text.BillingProcessDocumentType = BillingDocumentRequestType.BillingDocumentRequestType
association to parent I_BillingDocumentRequestType as _BillingDocumentRequestType on $projection.BillingDocumentRequestType = _BillingDocumentRequestType.BillingDocumentRequestType
{
@ObjectModel.foreignKey.association: '_BillingDocumentRequestType'
@ObjectModel.text.element: ['BillingDocumentRequestTypeName']
key BillingDocumentRequestType.BillingDocumentRequestType,
@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 billingdocumentrequesttypename preserving type ) as BillingDocumentRequestTypeName,
Text._Language,
_BillingDocumentRequestType
}
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