I_LOCATIONTEXT

CDS View

Location Text

I_LOCATIONTEXT is a CDS View in S/4HANA. Location Text. It contains 2 fields. 5 CDS views read from this table.

CDS Views using this table (5)

ViewTypeJoinVDMDescription
/SCMTMS/CV_LocationDescription view from BOPF: Loc. Descr. Representation Node
I_LocationAnalyticsText view from COMPOSITE Location - Text
I_LstMiRldReqLocationTxt view_entity from COMPOSITE LMD Reload Location - Text
I_LstMiRouteLocationText view_entity from BASIC Last Mile Route Location - Txt
R_LocationTextTP view_entity from TRANSACTIONAL

Fields (2)

KeyField CDS FieldsUsed in Views
KEY Language Language 1
LocationDescription LocationDescription 1
@AbapCatalog.sqlViewName:               'ILOCATIONTEXT'

@AbapCatalog.compiler.compareFilter:    true
@AbapCatalog.preserveKey:               true
@AccessControl.authorizationCheck:      #CHECK
@AccessControl.personalData.blocking:   #REQUIRED
@ClientHandling.algorithm:              #SESSION_VARIABLE
@ObjectModel.dataCategory:              #TEXT
@ObjectModel.representativeKey:         'LocationUUID'
@ObjectModel.usageType.serviceQuality:  #A
@ObjectModel.usageType.sizeCategory:    #M
@ObjectModel.usageType.dataClass:       #MASTER
@VDM.lifecycle.contract.type:           #NONE
@VDM.viewType:                          #BASIC

@EndUserText.label:                     'Location Text'

define view I_LocationText
  as select from /sapapo/loct
  association [0..1] to I_Language      as _Language      on $projection.Language = _Language.Language
  association [1..1] to I_LocationBasic as _LocationBasic on $projection.LocationUUID = _LocationBasic.LocationUUID
{
  key cast( locid as /sapapo/location_id preserving type ) as LocationUUID,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key spras                                                as Language,
      @Semantics.text: true
      descr40                                              as LocationDescription,

      /* Associations */
      _Language,
      _LocationBasic
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/SAPAPO/LOCT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_LOCATIONBASIC"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/