I_ClsgTaskListAcctgPrinciple

DDL: I_CLSGTASKLISTACCTGPRINCIPLE SQL: ICLSGTASKLACCPR Type: view BASIC Package: FCCO_VDM_MD

Closing Task List Accounting Principle

I_ClsgTaskListAcctgPrinciple is a Basic CDS View (Dimension) that provides data about "Closing Task List Accounting Principle" in SAP S/4HANA. It reads from 1 data source (fcco_acc_princ) and exposes 5 fields with key fields ClosingCommunicationProfile, AccountingPrinciple. It has 2 associations to related views. Part of development package FCCO_VDM_MD.

Data Sources (1)

SourceAliasJoin Type
fcco_acc_princ fcco_acc_princ from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ClosingCommProfile _ClosingCommunicationProfile $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
[0..*] I_ClsgTskListAcctgPrncplText _Text $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile and $projection.AccountingPrinciple = _Text.AccountingPrinciple

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICLSGTASKLACCPR view
EndUserText.label Closing Task List Accounting Principle view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AccountingPrinciple view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ClosingCommunicationProfile communication_profile
KEY AccountingPrinciple acc_principle
IsMarkedForDeletion orphaned
_ClosingCommunicationProfile _ClosingCommunicationProfile
_Text _Text
@AbapCatalog.sqlViewName: 'ICLSGTASKLACCPR'
@EndUserText.label: 'Closing Task List Accounting Principle'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'AccountingPrinciple',
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #L,
                usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true

define view I_ClsgTaskListAcctgPrinciple
  as select from fcco_acc_princ

  association [0..1] to I_ClosingCommProfile         as _ClosingCommunicationProfile on  $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
  association [0..*] to I_ClsgTskListAcctgPrncplText as _Text                        on  $projection.ClosingCommunicationProfile = _Text.ClosingCommunicationProfile
                                                                                     and $projection.AccountingPrinciple         = _Text.AccountingPrinciple
{
       @ObjectModel.foreignKey.association: '_ClosingCommunicationProfile'
  key  communication_profile                                      as ClosingCommunicationProfile,
       @ObjectModel.text.association: '_Text'
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #HIGH
  key  acc_principle                                              as AccountingPrinciple,

       @UI.hidden: true
       orphaned                                                   as IsMarkedForDeletion,

       /* Associations */
       _ClosingCommunicationProfile,
       _Text
}