I_ClosingFolderText

DDL: I_CLOSINGFOLDERTEXT Type: view BASIC Package: FCCO_VDM_MD

Closing Folder Text

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

Data Sources (1)

SourceAliasJoin Type
fcco_foldert fcco_foldert from

Associations (4)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICLSGFOLDT view
AbapCatalog.preserveKey true view
EndUserText.label Closing Folder Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ClosingFolder 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 (10)

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

define view I_ClosingFolderText
  as select from fcco_foldert

  association [0..1] to I_Language               as _Language               on  $projection.Language = _Language.Language
  association [1..1] to I_ClosingTemplate        as _ClosingTemplate        on  $projection.ClosingTemplate              = _ClosingTemplate.ClosingTemplate
                                                                            and $projection.FinancialTaskListContextType = _ClosingTemplate.FinancialTaskListContextType
  association [1..1] to I_ClosingTaskList        as _ClosingTaskList        on  $projection.ClosingTemplate              = _ClosingTaskList.ClosingTemplate
                                                                            and $projection.ClosingTaskListInstance      = _ClosingTaskList.ClosingTaskListInstance
                                                                            and $projection.FinancialTaskListContextType = _ClosingTaskList.FinancialTaskListContextType
  association [1..1] to I_FinTaskListContextType as _FinTaskListContextType on  $projection.FinancialTaskListContextType = _FinTaskListContextType.FinancialTaskListContextType
{
      @ObjectModel.foreignKey.association: '_ClosingTemplate'
  key profile                                                                                                                                                                             as       ClosingTemplate,
      @ObjectModel.foreignKey.association: '_ClosingTaskList'
  key instance                                                                                                                                                                            as       ClosingTaskListInstance,
      @ObjectModel.foreignKey.association: '_FinTaskListContextType'
  key flavor                                                                                                                                                                              as       FinancialTaskListContextType,
  key org_id                                                                                                                                                                              as       ClosingFolder,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key langu                                                                                                                                                                               as       Language,
      text                                                                                                                                                                                as       ClosingFolderDescription,

      _ClosingTemplate,
      _ClosingTaskList,
      _FinTaskListContextType,
      _Language
}