I_APPLICATIONSTATUSVALUEHELP
Application Status Details
I_APPLICATIONSTATUSVALUEHELP is a CDS View in S/4HANA. Application Status Details. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_ACMApplicationOverview | view | inner | TRANSACTIONAL | Interface Layer for ACM Application Overview |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| TrdgContrApplStsName | TrdgContrApplStsName | 1 |
@AbapCatalog.sqlViewName: 'IAPPLDOCSTAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel : { resultSet.sizeCategory: #XS }
@ObjectModel.supportedCapabilities: #CDS_MODELING_DATA_SOURCE
@EndUserText.label: 'Application Status Details'
define view I_ApplicationStatusValueHelp as select from tj04 as Status
inner join tj02t as Desc on Desc.istat = Status.istat
and Desc.spras = $session.system_language
{
// key Status.obtyp,
@ObjectModel.text.element: ['TrdgContrApplStsName']
key Status.istat as ContractApplicationStatus,
@Semantics.text: true
Desc.txt30 as TrdgContrApplStsName
}
where Status.obtyp = 'SAD'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TJ02T",
"TJ04"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/