I_AirborneAgentNameText

DDL: I_AIRBORNEAGENTNAMETEXT SQL: IABAGTTXT Type: view BASIC

Airborne Agent Name

I_AirborneAgentNameText is a Basic CDS View that provides data about "Airborne Agent Name" in SAP S/4HANA. It reads from 1 data source (ehhssd_abagt_txt) and exposes 9 fields with key fields AirborneAgentUUID, AirborneAgentRevisionUUID, RevisionEndDate, Language. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
ehhssd_abagt_txt ehhssd_abagt_txt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_AirborneAgentRevision _AirborneAgentRevision $projection.AirborneAgentRevisionUUID = _AirborneAgentRevision.AirborneAgentRevisionUUID and $projection.AirborneAgentUUID = _AirborneAgentRevision.AirborneAgentUUID
[1..1] I_AirborneAgentRoot _AirborneAgentRoot $projection.AirborneAgentUUID = _AirborneAgentRoot.AirborneAgentUUID

Annotations (12)

NameValueLevelField
EndUserText.label Airborne Agent Name view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AirborneAgentRevisionUUID view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IABAGTTXT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY AirborneAgentUUID root_key
_AirborneAgentRoot _AirborneAgentRoot
KEY AirborneAgentRevisionUUID parent_key
_AirborneAgentRevision _AirborneAgentRevision
KEY RevisionEndDate _AirborneAgentRevision RevisionEndDate
KEY Language
_Language _Language
RevisionStartDate _AirborneAgentRevision RevisionStartDate
AirborneAgentName text
@EndUserText.label: 'Airborne Agent Name'
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AirborneAgentRevisionUUID'
@AccessControl.authorizationCheck: #NOT_REQUIRED

@AbapCatalog.sqlViewName: 'IABAGTTXT'
@AbapCatalog.compiler.compareFilter: true

// Client handling by session 

@ClientHandling.algorithm: #SESSION_VARIABLE

// used for BOBF Master Data Object

@ObjectModel.usageType:{ serviceQuality: #C,        // < 15 msec   

                         sizeCategory:  #L,         // < 10.000.000

                         dataClass: #MASTER }

define view I_AirborneAgentNameText as select from ehhssd_abagt_txt
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  /*+[hideWarning] { "IDS" :  [ "CARDINALITY_CHECK" ] } */  
  association [1..1] to I_AirborneAgentRevision as _AirborneAgentRevision on $projection.AirborneAgentRevisionUUID = _AirborneAgentRevision.AirborneAgentRevisionUUID
                                                                              and $projection.AirborneAgentUUID = _AirborneAgentRevision.AirborneAgentUUID

  association [1..1] to I_AirborneAgentRoot as _AirborneAgentRoot  on $projection.AirborneAgentUUID = _AirborneAgentRoot.AirborneAgentUUID
{
    @ObjectModel.foreignKey.association: '_AirborneAgentRoot' 
    key root_key as AirborneAgentUUID, // TODO EHHSS_ABAGT_KEY_REF

    _AirborneAgentRoot,

    key parent_key as AirborneAgentRevisionUUID,
    _AirborneAgentRevision,

    @Semantics.businessDate.to
    key _AirborneAgentRevision.RevisionEndDate,

    @Semantics.language: true
    @ObjectModel.foreignKey.association: '_Language' 
    key cast( language as sylangu preserving type ) as Language,
    _Language,

    @Semantics.businessDate.from
    _AirborneAgentRevision.RevisionStartDate,

    @Semantics.text:true
    text as AirborneAgentName
}                                
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_AIRBORNEAGENTREVISION",
"EHHSSD_ABAGT_TXT"
],
"ASSOCIATED":
[
"I_AIRBORNEAGENTREVISION",
"I_AIRBORNEAGENTROOT",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/