I_ClosingApprovalType

DDL: I_CLOSINGAPPROVALTYPE SQL: ICLSGAPPRVLTYPE Type: view BASIC Package: FCCO_VDM_MD

Closing Approval Type

I_ClosingApprovalType is a Basic CDS View (Dimension) that provides data about "Closing Approval Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ClosingApprovalType. It has 1 association to related views. Part of development package FCCO_VDM_MD.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ClosingApprovalTypeText _Text $projection.ClosingApprovalType = _Text.ClosingApprovalType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICLSGAPPRVLTYPE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
EndUserText.label Closing Approval Type view
VDM.viewType #BASIC view
ObjectModel.representativeKey ClosingApprovalType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ClosingApprovalType
_Text _Text
@AbapCatalog.sqlViewName: 'ICLSGAPPRVLTYPE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@EndUserText.label: 'Closing Approval Type'
@VDM.viewType: #BASIC

@ObjectModel: { representativeKey: 'ClosingApprovalType',
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #S,
                usageType.dataClass: #CUSTOMIZING }
@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_ClosingApprovalType
  as select from dd07l

  association [0..*] to I_ClosingApprovalTypeText as _Text on $projection.ClosingApprovalType = _Text.ClosingApprovalType
{
      @ObjectModel.text.association: '_Text'
  key cast(domvalue_l as fcco_approval_type)                                       as ClosingApprovalType,
      _Text
}
where
      as4local = 'A'
  and domname  = 'FCCO_APPROVAL_TYPE'