P_SuplrInvcTransactionTypeDesc
Value Help Text for Invoice Transaction Type
P_SuplrInvcTransactionTypeDesc is a Basic CDS View that provides data about "Value Help Text for Invoice Transaction Type" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SupplierInvoiceTransactionType, Language. It has 2 associations to related views. Part of development package ODATA_MANAGE_APAR_GEN_INVOICES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = $session.system_language |
| [1..1] | P_SuplrInvcTransactionType | _SuplrInvcTransactionType | $projection.SupplierInvoiceTransactionType = _SuplrInvcTransactionType.SupplierInvoiceTransactionType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view | |
| AbapCatalog.sqlViewName | PSIVTRANSACTTEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SupplierInvoiceTransactionType | |||
| KEY | Language | ddlanguage | ||
| SuplrInvcTransactionTypeDesc | ||||
| _SuplrInvcTransactionType | _SuplrInvcTransactionType | |||
| _Language | _Language |
//@ObjectModel.dataCategory: #TEXT
@VDM.viewType : #BASIC
@VDM.private:true
@AbapCatalog.sqlViewName: 'PSIVTRANSACTTEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
//This is a technical view only returning texts for the account assignment type
@AccessControl.personalData.blocking:#NOT_REQUIRED
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
define view P_SuplrInvcTransactionTypeDesc
as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = $session.system_language
association [1..1] to P_SuplrInvcTransactionType as _SuplrInvcTransactionType on $projection.SupplierInvoiceTransactionType = _SuplrInvcTransactionType.SupplierInvoiceTransactionType
{
// Substring() so that domvalue_l is of same length and type as mmiv_acct_assgmt_desc
key cast ( substring( domvalue_l, 1, 1 ) as mmiv_transactiontype_desc preserving type) as SupplierInvoiceTransactionType,
@Semantics.language: true
key ddlanguage as Language,
@Semantics.text
cast ( ddtext as mmiv_description_text preserving type) as SuplrInvcTransactionTypeDesc,
//association
_SuplrInvcTransactionType,
_Language
}
where
domname = 'MMIV_TRANSACTIONTYPE_DESC'
and as4local = 'A'
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