ESH_N_RTCODE

DDL: ESH_N_RTCODE SQL: VESH_N_RTCODE Type: view

Transactions without Apps

ESH_N_RTCODE is a CDS View that provides data about "Transactions without Apps" in SAP S/4HANA. It reads from 1 data source (tstc) and exposes 3 fields with key field tcode. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tstc tstc from

Associations (2)

CardinalityTargetAliasCondition
[1..*] tstct _TSTC2TXT $projection.tcode = _TSTC2TXT.tcode
[0..*] ESH_APP_KEYWORDT_CDS _tcode_to_app $projection.tcode = _tcode_to_app.keywords

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName VESH_N_RTCODE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #INHERITED view
EndUserText.label Transactions without Apps view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY tcode tcode
keywordsthenXelseendashas_app
_TSTC2TXT _TSTC2TXT
@AbapCatalog.sqlViewName: 'VESH_N_RTCODE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #P
@ClientHandling.algorithm: #SESSION_VARIABLE
@ClientHandling.type: #INHERITED
@EndUserText.label: 'Transactions without Apps'
define view ESH_N_RTCODE
  as select from tstc
  association [1..*] to tstct                as _TSTC2TXT     on $projection.tcode = _TSTC2TXT.tcode
  association [0..*] to ESH_APP_KEYWORDT_CDS as _tcode_to_app on $projection.tcode = _tcode_to_app.keywords
{
  key tcode,

      case tcode
      when _tcode_to_app.keywords //when tcode = keyword

      then 'X'
      else ' '
      end as has_app,

      _TSTC2TXT,
      _tcode_to_app
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ESH_APP_KEYWORDT_CDS",
"TSTC"
],
"ASSOCIATED":
[
"ESH_APP_KEYWORDT_CDS",
"TSTCT"
],
"BASE":
[],
"VERSION":0
}
}*/