I_ContractApplicationStatusTxt
Contract Application Status Text
I_ContractApplicationStatusTxt is a Basic CDS View that provides data about "Contract Application Status Text" in SAP S/4HANA. It reads from 1 data source (tb2bat) and exposes 4 fields with key fields ContractApplicationStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tb2bat | tb2bat | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICNTRCTSTTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | ContractApplicationStatus | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Contract Application Status Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
@AbapCatalog.sqlViewName: 'ICNTRCTSTTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
@VDM.viewType: #BASIC
@ObjectModel.semanticKey: ['ContractApplicationStatus']
@ObjectModel.representativeKey: 'ContractApplicationStatus'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Contract Application Status Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_ContractApplicationStatusTxt
as select from tb2bat
//association to parent C_ContractApplicationStatusVH as _ContractApplicationStatus on $projection.ContractApplicationStatus = _ContractApplicationStatus.ContractApplicationStatus
association to I_Language as _Language on $projection.Language = _Language.Language
{
// @ObjectModel.foreignKey.association: '_ContractApplicationStatus'
@ObjectModel.text.element: ['ACMContractApplStatusTxt']
key tb2bat.btbsta as ContractApplicationStatus,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key tb2bat.spras as Language,
/*@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
tb2bat.bezei as ContractApplicationStatusTxt,*/
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
tb2bat.bezei as ACMContractApplStatusTxt,
// _ContractApplicationStatus,
_Language
}
where
_Language.Language = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LANGUAGE",
"TB2BAT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"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