A_CnsldtnDebitCreditCodeT
Debit Credit Text
A_CnsldtnDebitCreditCodeT is a Basic CDS View that provides data about "Debit Credit Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnDebitCreditCodeText) and exposes 3 fields with key fields Language, DebitCreditCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnDebitCreditCodeText | I_CnsldtnDebitCreditCodeText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACSDEBITCREDITT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Debit Credit Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| KEY | DebitCreditCode | DebitCreditCode | ||
| DebitCreditCodeName |
@AbapCatalog.sqlViewName: 'ACSDEBITCREDITT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Debit Credit Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: ['DebitCreditCode']
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #C,
sizeCategory: #S
}
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view A_CnsldtnDebitCreditCodeT as select from I_CnsldtnDebitCreditCodeText
{
@Semantics.language: true
key Language,
key DebitCreditCode,
@Semantics.text: true
cast(DebitCreditCodeName as fincs_drcrk_t preserving type) as DebitCreditCodeName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CNSLDTNDEBITCREDITCODETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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