I_TransportationLocationType

DDL: I_TRANSPORTATIONLOCATIONTYPE SQL: ITRANSPLOCTP Type: view BASIC

Transportation Location Type

I_TransportationLocationType is a Basic CDS View (Dimension) that provides data about "Transportation Location Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field LocationType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TransportationLocationTypeT _Text $projection.LocationType = _Text.LocationType

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName ITRANSPLOCTP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey LocationType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
VDM.lifecycle.contract.type #NONE view
VDM.viewType #BASIC view
EndUserText.label Transportation Location Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY LocationType
DomainValue dd07l domvalue_l
_Text _Text
@AbapCatalog.sqlViewName:               'ITRANSPLOCTP'
@AbapCatalog.compiler.compareFilter:    true
@AbapCatalog.preserveKey:               true
@AccessControl.authorizationCheck:      #NOT_REQUIRED
@AccessControl.personalData.blocking:   #NOT_REQUIRED
@Analytics.dataCategory:                #DIMENSION
@Analytics.internalName:                #LOCAL
@ClientHandling.algorithm:              #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:  true
@ObjectModel.representativeKey:         'LocationType'
@ObjectModel.usageType.serviceQuality:  #A
@ObjectModel.usageType.sizeCategory:    #S
@ObjectModel.usageType.dataClass:       #CUSTOMIZING
@ObjectModel.resultSet.sizeCategory:    #XS
@ObjectModel.dataCategory:              #VALUE_HELP
@Search.searchable:                     true
@VDM.lifecycle.contract.type:           #NONE
@VDM.viewType:                          #BASIC

@EndUserText.label:                     'Transportation Location Type'


/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view I_TransportationLocationType
  as select from dd07l
  association [0..*] to I_TransportationLocationTypeT as _Text on $projection.LocationType = _Text.LocationType
{
      @ObjectModel.text.association: '_Text'
  key cast(substring(domvalue_l, 1, 4) as /sapapo/tm_loctype preserving type) as LocationType,
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      dd07l.domvalue_l                                                        as DomainValue,
      _Text
}
where
      dd07l.domname    =  '/SAPAPO/TM_LOCTYPE'
  and dd07l.as4local   =  'A'
  and dd07l.domvalue_l <> '1010'
  and dd07l.domvalue_l <> '1011';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_TRANSPORTATIONLOCATIONTYPET"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/