I_BillgReqItmSettlmtStatusText
Billing Request Item Settlement Status Text
I_BillgReqItmSettlmtStatusText is a Basic CDS View that provides data about "Billing Request Item Settlement Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields BillgReqItemBillingStatus, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BillgReqItmSettlmtStatus | _BillgReqItmSettlmtStatus | $projection.BillgReqItemBillingStatus = _BillgReqItmSettlmtStatus.BillgReqItemBillingStatus |
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBILREQISTLSTATX | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Billing Request Item Settlement Status Text | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | BillgReqItemBillingStatus | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BillgReqItemBillingStatus | domvalue_l | ||
| KEY | Language | ddlanguage | ||
| BillgReqItemBillingStatusName | ddtext | |||
| _BillgReqItmSettlmtStatus | _BillgReqItmSettlmtStatus | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IBILREQISTLSTATX'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Billing Request Item Settlement Status Text'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.representativeKey: 'BillgReqItemBillingStatus'
@Metadata.ignorePropagatedAnnotations: true
define view I_BillgReqItmSettlmtStatusText
as select from dd07t
association [1..1] to I_BillgReqItmSettlmtStatus as _BillgReqItmSettlmtStatus on $projection.BillgReqItemBillingStatus = _BillgReqItmSettlmtStatus.BillgReqItemBillingStatus
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
{
@ObjectModel.foreignKey.association: '_BillgReqItmSettlmtStatus'
key domvalue_l as BillgReqItemBillingStatus,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@Semantics.text: true
ddtext as BillgReqItemBillingStatusName,
_BillgReqItmSettlmtStatus,
_Language
}
where
domname = 'CRM_BILLING_SETTLEMENT_STATUS'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_BILLGREQITMSETTLMTSTATUS",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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