I_ClosingTaskListLedgerText

DDL: I_CLOSINGTASKLISTLEDGERTEXT SQL: ICLSGTSKLSTLDGRT Type: view BASIC Package: FCCO_VDM_MD

Closing Task List Ledger Text

I_ClosingTaskListLedgerText is a Basic CDS View that provides data about "Closing Task List Ledger Text" in SAP S/4HANA. It reads from 1 data source (fcco_ledgert) and exposes 6 fields with key fields ClosingCommunicationProfile, Ledger, Language. It has 2 associations to related views. Part of development package FCCO_VDM_MD.

Data Sources (1)

SourceAliasJoin Type
fcco_ledgert fcco_ledgert from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ClosingCommProfile _ClosingCommunicationProfile $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICLSGTSKLSTLDGRT view
EndUserText.label Closing Task List Ledger Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey Ledger view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ClosingCommunicationProfile communication_profile
KEY Ledger rldnr
KEY Language langu
LedgerName text
_ClosingCommunicationProfile _ClosingCommunicationProfile
_Language _Language
@AbapCatalog.sqlViewName: 'ICLSGTSKLSTLDGRT'
@EndUserText.label: 'Closing Task List Ledger Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'Ledger',
                dataCategory: #TEXT,
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #L,
                usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true

define view I_ClosingTaskListLedgerText
  as select from fcco_ledgert

  association [0..1] to I_ClosingCommProfile as _ClosingCommunicationProfile on $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
  association [0..1] to I_Language           as _Language                    on $projection.Language = _Language.Language
{
       @ObjectModel.foreignKey.association: '_ClosingCommunicationProfile'
  key  communication_profile                                  as ClosingCommunicationProfile,
  key  rldnr                                                  as Ledger,
       @ObjectModel.foreignKey.association: '_Language'
       @Semantics.language: true
  key  langu                                                  as Language,

       @Semantics.text: true
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #HIGH
       text                                                   as LedgerName,

       _ClosingCommunicationProfile,
       _Language
}