I_IL_CreditCardTransacTypeText
Credit Card Transaction Type - Text
I_IL_CreditCardTransacTypeText is a Basic CDS View that provides data about "Credit Card Transaction Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field Language. Part of development package GLO_FIN_CASH_IL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Credit Card Transaction Type - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| TransactionTypeDescription | ddtext |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Credit Card Transaction Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel: { dataCategory: #TEXT,
usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER } }
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_IL_CreditCardTransacTypeText
as select from dd07t
{
@Semantics.language: true
key ddlanguage as Language,
key cast(
substring(domvalue_l,1,1)
as gsfincsil_trn_type preserving type ) as IL_CreditCardTransactionType,
@Semantics.text: true
ddtext as TransactionTypeDescription
}
where
domname = 'GSFINCSIL_TRN_TYPE'
and as4local = 'A'
and(
ddlanguage = 'E'
or ddlanguage = $session.system_language
)
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