C_AllocReceiverInformation

DDL: C_ALLOCRECEIVERINFORMATION SQL: CALLOCRCVRINFO Type: view CONSUMPTION

Allocation Receiver Information

C_AllocReceiverInformation is a Consumption CDS View that provides data about "Allocation Receiver Information" in SAP S/4HANA. It reads from 1 data source (P_AllocationInformation) and exposes 24 fields with key fields AllocationType, AllocationPostingType, AllocationActualPlanVariant, AllocationFieldName.

Data Sources (1)

SourceAliasJoin Type
P_AllocationInformation P_AllocationInformation from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CALLOCRCVRINFO view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #CONSUMPTION view
EndUserText.label Allocation Receiver Information view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY AllocationType AllocationType
KEY AllocationPostingType AllocationPostingType
KEY AllocationActualPlanVariant AllocationActualPlanVariant
KEY AllocationFieldName AllocationFieldName
AllocationFieldType AllocationFieldType
SuperiorToField1 SuperiorToField1
SuperiorToField2 SuperiorToField2
AllocationFieldActive ReceiverFieldActive
AllocationFieldGroup ReceiverFieldGroup
AllocationSingleField ReceiverSingleField
AllocationFieldInterval ReceiverFieldInterval
AllocationFieldDisplayPosition AllocationFieldDisplayPosition
AllocationFieldLabel AllocationFieldLabel
AllocationFieldLength AllocationFieldLength
AllocationFieldPropertyType AllocationFieldPropertyType
AllocationFieldIsUppercase AllocationFieldIsUppercase
AllocationFieldDecimalPlaces AllocationFieldDecimalPlaces
AllocationFieldPrecision AllocationFieldPrecision
AllocationFieldScale AllocationFieldScale
AllocationSearchHelpEntityName AllocationSearchHelpEntityName
AllocationSearchHelpOutput AllocationSearchHelpOutput
GroupValueHelpEntityName GroupValueHelpEntityName
GroupValueHelpOutput GroupValueHelpOutput
GroupValueHelpOutputText GroupValueHelpOutputText
@AbapCatalog.sqlViewName: 'CALLOCRCVRINFO'
@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:#NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M

@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Allocation Receiver Information'

define view C_AllocReceiverInformation
  as select from P_AllocationInformation
{
  //key DatabaseTable,

  key AllocationType,
  //key AllocationType,

  key AllocationPostingType,
  key AllocationActualPlanVariant,
  key AllocationFieldName,
      AllocationFieldType,
      SuperiorToField1,
      SuperiorToField2,
      ReceiverFieldActive   as AllocationFieldActive,
      ReceiverFieldGroup    as AllocationFieldGroup,
      ReceiverSingleField   as AllocationSingleField,
      ReceiverFieldInterval as AllocationFieldInterval,
      AllocationFieldDisplayPosition,
      AllocationFieldLabel,
      AllocationFieldLength,
      AllocationFieldPropertyType,
      AllocationFieldIsUppercase,
      AllocationFieldDecimalPlaces,
      AllocationFieldPrecision,
      AllocationFieldScale,
      AllocationSearchHelpEntityName,
      AllocationSearchHelpOutput,
      GroupValueHelpEntityName,
      GroupValueHelpOutput,
      GroupValueHelpOutputText
}
where
     ReceiverFieldActive = 'X'
  or ReceiverFieldActive = '+'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_ALLOCATIONINFORMATION"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/