I_ACCRENGINEACCRITEMTYPEBASIC
Accrual Engine: Accrual Item Type
I_ACCRENGINEACCRITEMTYPEBASIC is a CDS View in S/4HANA. Accrual Engine: Accrual Item Type. 6 CDS views read from this table.
CDS Views using this table (6)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_AccrEngineAccrItmTypeBasicVH | view | from | CONSUMPTION | Accrual Engine Accrual Item Type Basic Value Help |
| I_AccrEngineAccrItemType | view | from | BASIC | Accrual Engine: Accrual Item Type |
| I_AccrEngineActualAccrItemType | view | from | BASIC | Accrual Engine: Actual Item Type |
| I_AccrEngineDeferralItemType | view | from | BASIC | Accrual Engine: Deferral Item Type |
| I_AccrEnginePlanAccrItemType | view | from | BASIC | Accrual Engine: Plan Item Type |
| I_AccrEngnAccrPostingEntryItem | view_entity | inner | COMPOSITE | Accrual Posting Entry Item |
@AbapCatalog.sqlViewName: 'IACEITEMTYPEB'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Accrual Engine: Accrual Item Type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@ObjectModel.representativeKey: 'AccrualItemType'
@VDM.viewType: #BASIC
@Search.searchable: true
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName:#LOCAL
@Metadata.allowExtensions:true
define view I_AccrEngineAccrItemTypeBasic
as select from tace_itemtype
association [0..1] to I_AccrEngineAccrObjectType as _AccrObjectType on $projection.AccrualEngineAccrualObjectType = _AccrObjectType.AccrualEngineAccrualObjectType
association [0..*] to I_AccrEngineAccrItemTypeText as _Text on $projection.AccrualEngineAccrualObjectType = _Text.AccrualEngineAccrualObjectType
and $projection.AccrualItemType = _Text.AccrualItemType
{
@ObjectModel.foreignKey.association: '_AccrObjectType'
key tace_itemtype.comp as AccrualEngineAccrualObjectType,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key tace_itemtype.itemtype as AccrualItemType,
tace_itemtype.planned_itemtype as PlanAccrualItemType,
tace_itemtype.actual_itemtype as ActualAccrualItemType,
tace_itemtype.deferral_itemtype as DeferralItemType,
tace_itemtype.xdependent as AccrualItemTypeIsDerived,
/* item type catagory*/
// cast( '' as ace_s4_itemtype_category preserving type ) as AccrualItemTypeCategory,
tace_itemtype.itemtype_category as AccrualItemTypeCategory,
_AccrObjectType,
_Text
}