I_TranspChargeInstrnType

DDL: I_TRANSPCHARGEINSTRNTYPE Type: view BASIC

Transportation Charges Instruction Type

I_TranspChargeInstrnType is a Basic CDS View (Dimension) that provides data about "Transportation Charges Instruction Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field TranspChargeInstrnType.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (13)

NameValueLevelField
EndUserText.label Transportation Charges Instruction Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey TranspChargeInstrnType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #NONE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IINSTRUCTTYPE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TranspChargeInstrnType
_Text _Text
@EndUserText:   {label:              'Transportation Charges Instruction Type'}
@Analytics:     {dataCategory:       #DIMENSION, 
                 dataExtraction:     {enabled: true}}
@ObjectModel:   {representativeKey:  'TranspChargeInstrnType',
                 usageType:          {serviceQuality: #A,
                                      sizeCategory:   #S,
                                      dataClass:      #CUSTOMIZING}}
@VDM:           {viewType:           #BASIC,
                  lifecycle.contract.type: #NONE }
@AbapCatalog:   {compiler:           {compareFilter: true},
                 sqlViewName:        'IINSTRUCTTYPE'}
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:           #SESSION_VARIABLE

define view I_TranspChargeInstrnType 
as select from dd07l
association[0..*] to I_TranspChargeInstrnTypeText as _Text on $projection.TranspChargeInstrnType = _Text.TranspChargeInstrnType
{
    @ObjectModel.text.association: '_Text'
key cast(substring(domvalue_l, 1, 6) as /scmtms/trcharg_clc_res_instr preserving type) as TranspChargeInstrnType,

    /* Associations */
    _Text
} 
where domname = '/SCMTMS/TCC_CLC_RES_INSTR'
and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_TRANSPCHARGEINSTRNTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/