I_ClosingTaskListText

DDL: I_CLOSINGTASKLISTTEXT Type: view BASIC Package: FCCO_VDM_MD

Closing Task List Text

I_ClosingTaskListText is a Basic CDS View that provides data about "Closing Task List Text" in SAP S/4HANA. It reads from 1 data source (fcco_hdrt) and exposes 8 fields with key fields ClosingTemplate, ClosingTaskListInstance, FinancialTaskListContextType, Language. It has 3 associations to related views. Part of development package FCCO_VDM_MD.

Data Sources (1)

SourceAliasJoin Type
fcco_hdrt fcco_hdrt from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_ClosingTemplate _ClosingTemplate $projection.ClosingTemplate = _ClosingTemplate.ClosingTemplate and $projection.FinancialTaskListContextType = _ClosingTemplate.FinancialTaskListContextType
[1..1] I_FinTaskListContextType _FinTaskListContextType $projection.FinancialTaskListContextType = _FinTaskListContextType.FinancialTaskListContextType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICLSGTASKLISTT view
AbapCatalog.preserveKey true view
EndUserText.label Closing Task List Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ClosingTaskListInstance 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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ClosingTemplate profile
KEY ClosingTaskListInstance instance
KEY FinancialTaskListContextType flavor
KEY Language langu
ClosingTaskListDescription text
_Language _Language
_ClosingTemplate _ClosingTemplate
_FinTaskListContextType _FinTaskListContextType
@AbapCatalog: {sqlViewName: 'ICLSGTASKLISTT', preserveKey: true}
@EndUserText.label: 'Closing Task List Text'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: 'ClosingTaskListInstance',
                dataCategory: #TEXT,
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #L,
                usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

define view I_ClosingTaskListText
  as select from fcco_hdrt

  association [0..1] to I_Language               as _Language               on  $projection.Language = _Language.Language

  association [0..1] to I_ClosingTemplate        as _ClosingTemplate        on  $projection.ClosingTemplate              = _ClosingTemplate.ClosingTemplate
                                                                            and $projection.FinancialTaskListContextType = _ClosingTemplate.FinancialTaskListContextType

  association [1..1] to I_FinTaskListContextType as _FinTaskListContextType on  $projection.FinancialTaskListContextType = _FinTaskListContextType.FinancialTaskListContextType
{
      @ObjectModel.foreignKey.association: '_ClosingTemplate'
  key profile  as ClosingTemplate,
  key instance as ClosingTaskListInstance,
      @ObjectModel.foreignKey.association: '_FinTaskListContextType'
  key flavor   as FinancialTaskListContextType,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key langu    as Language,

      @Semantics.text: true
      text     as ClosingTaskListDescription,

      _Language,
      _ClosingTemplate,
      _FinTaskListContextType
}