I_REFlowType

DDL: I_REFLOWTYPE SQL: IREFLOWTYPE Type: view BASIC

Flow Type

I_REFlowType is a Basic CDS View (Dimension) that provides data about "Flow Type" in SAP S/4HANA. It reads from 1 data source (tivcdflowtype) and exposes 9 fields with key field REFlowType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tivcdflowtype tivcdflowtype from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_REFlowTypeText _Text $projection.REFlowType = _Text.REFlowType
[0..1] I_DebitCreditCode _DebitCreditCode $projection.DebitCreditCode = _DebitCreditCode.DebitCreditCode

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IREFLOWTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Flow Type view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY REFlowType flowtype
DebitCreditCode
REAnticipatoryAccrualType antacrtype
RETransitoryAccrualType traacrtype
REFlowTypeForSummary flowtypecnds
REFlowTypeIsRlvtForApproval fcomrelevant
REFlowTypeIsRlvtForCashMgmt iscmcfrelevant
_Text _Text
_DebitCreditCode _DebitCreditCode
@AbapCatalog.sqlViewName: 'IREFLOWTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Flow Type'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.representativeKey: ['REFlowType']
@ObjectModel.semanticKey: ['REFlowType']
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.modelingPattern:           #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities:  [  #ANALYTICAL_DIMENSION,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #SQL_DATA_SOURCE,
                                        #CDS_MODELING_DATA_SOURCE]

define view I_REFlowType 
    as select from tivcdflowtype
    association [0..*] to I_REFlowTypeText as _Text on $projection.REFlowType = _Text.REFlowType
    association [0..1] to I_DebitCreditCode as _DebitCreditCode on $projection.DebitCreditCode = _DebitCreditCode.DebitCreditCode
{
        @ObjectModel.text.association: '_Text'
    key flowtype        as REFlowType,
        @ObjectModel.foreignKey.association:  '_DebitCreditCode'
        cast( ssolhab as shkzg preserving type )        as DebitCreditCode,
        antacrtype      as REAnticipatoryAccrualType,
        traacrtype      as RETransitoryAccrualType,
        flowtypecnds    as REFlowTypeForSummary,
        fcomrelevant    as REFlowTypeIsRlvtForApproval,
        iscmcfrelevant  as REFlowTypeIsRlvtForCashMgmt,
        
        _Text,
        _DebitCreditCode
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TIVCDFLOWTYPE"
],
"ASSOCIATED":
[
"I_DEBITCREDITCODE",
"I_REFLOWTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/