I_SupplierInvoiceTransactText
Supplier invoice transaction texts
I_SupplierInvoiceTransactText is a Basic CDS View that provides data about "Supplier invoice transaction texts" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SupplierInvoiceTransactionType, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = $session.system_language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SupplierInvoiceTransactionType | view | |
| EndUserText.label | Supplier invoice transaction texts | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AbapCatalog.sqlViewName | ISINVOICETEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SupplierInvoiceTransactionType | |||
| KEY | Language | ddlanguage | ||
| SuplrInvcTransactionTypeDesc | ddtext | |||
| _Language | _Language |
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SupplierInvoiceTransactionType'
@EndUserText.label: 'Supplier invoice transaction texts'
@VDM.viewType : #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AbapCatalog.sqlViewName: 'ISINVOICETEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
define view I_SupplierInvoiceTransactText
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = $session.system_language
{
key cast ( substring( domvalue_l, 1, 1 ) as mrm_vorgang preserving type) as SupplierInvoiceTransactionType,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text: true
ddtext as SuplrInvcTransactionTypeDesc,
_Language
}
where
domname = 'MRM_VORGANG'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"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