I_ACMTrdgContrApplStatus
Contract Application Status
I_ACMTrdgContrApplStatus is a Basic CDS View that provides data about "Contract Application Status" in SAP S/4HANA. It reads from 2 data sources (/accgo/t_cakstat, tb2ba) and exposes 3 fields with key field ACMTradingContractApplStatus. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| /accgo/t_cakstat | /accgo/t_cakstat | inner |
| tb2ba | ContractApplicationStatus | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [*] | I_ACMTrdgContrApplStatusText | _ContractApplStatusText | |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IAPPLSTATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Contract Application Status | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ACMTradingContractApplStatus | tb2ba | btbsta | |
| ACMTrdgContrStatusCategory | StatusCategory | category | ||
| _ContractApplStatusText | _ContractApplStatusText |
@AbapCatalog.sqlViewName: 'IAPPLSTATUS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Contract Application Status'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #L
}
}
define root view I_ACMTrdgContrApplStatus
as select from tb2ba as ContractApplicationStatus
inner join /accgo/t_cakstat StatusCategory on StatusCategory.btbsta = ContractApplicationStatus.btbsta
composition [*] of I_ACMTrdgContrApplStatusText as _ContractApplStatusText
{
key ContractApplicationStatus.btbsta as ACMTradingContractApplStatus,
StatusCategory.category as ACMTrdgContrStatusCategory,
//Association
_ContractApplStatusText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/ACCGO/T_CAKSTAT",
"TB2BA"
],
"ASSOCIATED":
[
"I_ACMTRDGCONTRAPPLSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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