I_ClosingTaskListOrgUnit

DDL: I_CLOSINGTASKLISTORGUNIT SQL: ICLSGTASKLORGU Type: view BASIC Package: FCCO_VDM_MD

Closing Task List Organizational Unit

I_ClosingTaskListOrgUnit is a Basic CDS View that provides data about "Closing Task List Organizational Unit" in SAP S/4HANA. It reads from 1 data source (fcco_org_values) and exposes 14 fields with key fields ClosingCommunicationProfile, ClosingFolderType, OrganizationalUnit. It has 2 associations to related views. Part of development package FCCO_VDM_MD.

Data Sources (1)

SourceAliasJoin Type
fcco_org_values fcco_org_values from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ClosingCommProfile _ClosingCommunicationProfile $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
[1..1] I_ClosingFolderType _ClosingFolderType $projection.ClosingFolderType = _ClosingFolderType.ClosingFolderType

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ICLSGTASKLORGU view
EndUserText.label Closing Task List Organizational Unit view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY ClosingCommunicationProfile communication_profile
KEY ClosingFolderType type
KEY OrganizationalUnit value
ParentClosingFolderType parent_type
OrganizationalUnitName text
ChartOfAccounts ktopl
FiscalYearVariant periv
ValuationArea bwkey
Currency waers
Country country
ParentOrganizationalUnit parent_value
IsMarkedForDeletion orphaned
_ClosingCommunicationProfile _ClosingCommunicationProfile
_ClosingFolderType _ClosingFolderType
@AbapCatalog.sqlViewName: 'ICLSGTASKLORGU'
@EndUserText.label: 'Closing Task List Organizational Unit'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: { representativeKey: ['OrganizationalUnit'],
                usageType.serviceQuality: #A,
                usageType.sizeCategory: #L,
                usageType.dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_ClosingTaskListOrgUnit
  as select from fcco_org_values

  association [0..1] to I_ClosingCommProfile as _ClosingCommunicationProfile on $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile
  association [1..1] to I_ClosingFolderType  as _ClosingFolderType           on $projection.ClosingFolderType = _ClosingFolderType.ClosingFolderType
{
       @ObjectModel.foreignKey.association: '_ClosingCommunicationProfile'
  key  communication_profile  as ClosingCommunicationProfile,
       @ObjectModel.foreignKey.association: '_ClosingFolderType'
  key  type                   as ClosingFolderType,
       @ObjectModel.text.element: 'OrganizationalUnitName'
  key  value                  as OrganizationalUnit,

       parent_type            as ParentClosingFolderType,
       @Semantics.text: true
       text                   as OrganizationalUnitName,
       ktopl                  as ChartOfAccounts,
       periv                  as FiscalYearVariant,
       bwkey                  as ValuationArea,
       waers                  as Currency,
       country                as Country,
       parent_value           as ParentOrganizationalUnit,

       orphaned               as IsMarkedForDeletion,

       /* Associations */
       _ClosingCommunicationProfile,
       _ClosingFolderType
}