I_ClosingTaskListOrgUnit
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)
| Source | Alias | Join Type |
|---|---|---|
| fcco_org_values | fcco_org_values | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ClosingCommProfile | _ClosingCommunicationProfile | $projection.ClosingCommunicationProfile = _ClosingCommunicationProfile.ClosingCommunicationProfile |
| [1..1] | I_ClosingFolderType | _ClosingFolderType | $projection.ClosingFolderType = _ClosingFolderType.ClosingFolderType |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA