P_AllocationContextType

DDL: P_ALLOCATIONCONTEXTTYPE SQL: PALLOCCONTEXTTYP Type: view COMPOSITE

P_AllocationContextType is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_AllocationContextType) and exposes 2 fields with key field AllocationType.

Data Sources (1)

SourceAliasJoin Type
I_AllocationContextType I_AllocationContextType from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PALLOCCONTEXTTYP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable false view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AllocationType
AllocationContextTypeText
@AbapCatalog.sqlViewName: 'PALLOCCONTEXTTYP'
@AbapCatalog.compiler.compareFilter:true 
@AbapCatalog.preserveKey:true
@VDM.viewType: #COMPOSITE
@VDM.private: true
//@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }

@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass:  #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: false
@ObjectModel.resultSet.sizeCategory: #XS
define view P_AllocationContextType
as select from I_AllocationContextType
  
{     
  @ObjectModel.text.element: ['AllocationContextTypeText']
  key cast(AllocationType as fco_allocation_context) as AllocationType,  
  _Text[1:Language = $session.system_language].AllocationContextTypeText
}