I_OverallDangerousGoodsStatus

DDL: I_OVERALLDANGEROUSGOODSSTATUS SQL: IOVRLDGSTS Type: view BASIC

Overall Dangerous Goods Status

I_OverallDangerousGoodsStatus is a Basic CDS View (Dimension) that provides data about "Overall Dangerous Goods Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field OverallDangerousGoodsStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_OverallDangerousGoodsStsTxt _Text $projection.OverallDangerousGoodsStatus = _Text.OverallDangerousGoodsStatus

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IOVRLDGSTS view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey OverallDangerousGoodsStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
Search.searchable true view
Consumption.ranked true view
EndUserText.label Overall Dangerous Goods Status view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OverallDangerousGoodsStatus
DomainValue domvalue_l
_Text _Text
@AbapCatalog.sqlViewName: 'IOVRLDGSTS'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'OverallDangerousGoodsStatus'
@ObjectModel.usageType.dataClass: #META 
@ObjectModel.usageType.serviceQuality: #A 
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@Analytics: { dataCategory: #DIMENSION,
              internalName: #LOCAL }

@VDM.viewType: #BASIC
@Search.searchable: true
@Consumption.ranked: true

@EndUserText.label: 'Overall Dangerous Goods Status'
define view I_OverallDangerousGoodsStatus as select from dd07l

  association [0..*] to I_OverallDangerousGoodsStsTxt as _Text on $projection.OverallDangerousGoodsStatus = _Text.OverallDangerousGoodsStatus
{
    @ObjectModel.text.association: '_Text'
    key cast (substring(dd07l.domvalue_l, 1, 1) as tdd_total_dgsta preserving type ) as OverallDangerousGoodsStatus,
    
    @Analytics.hidden: true
    @Consumption.hidden: true
    @Search.defaultSearchElement: true
    @Search.ranking: #HIGH
    domvalue_l as DomainValue,
    
    _Text
}
where (dd07l.domname = 'DOM_TOTAL_DGSTA') and (dd07l.as4local = 'A')
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_OVERALLDANGEROUSGOODSSTSTXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/