C_AllocationSenderInformation
C_AllocationSenderInformation is a Consumption CDS View 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)
| Source | Alias | Join Type |
|---|---|---|
| P_AllocationInformation | P_AllocationInformation | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CALLOCSENDINFO | 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 |
Fields (24)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocationType | AllocationType | ||
| KEY | AllocationPostingType | AllocationPostingType | ||
| KEY | AllocationActualPlanVariant | AllocationActualPlanVariant | ||
| KEY | AllocationFieldName | AllocationFieldName | ||
| AllocationFieldType | AllocationFieldType | |||
| SuperiorToField1 | SuperiorToField1 | |||
| SuperiorToField2 | SuperiorToField2 | |||
| AllocationFieldActive | SenderFieldActive | |||
| AllocationFieldGroup | SenderFieldGroup | |||
| AllocationSingleField | SenderSingleField | |||
| AllocationFieldInterval | SenderFieldInterval | |||
| 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: 'CALLOCSENDINFO'
@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
define view C_AllocationSenderInformation
as select from P_AllocationInformation
{
//key DatabaseTable,
key AllocationType,
//key AllocationType,
key AllocationPostingType,
key AllocationActualPlanVariant,
key AllocationFieldName,
AllocationFieldType,
SuperiorToField1,
SuperiorToField2,
SenderFieldActive as AllocationFieldActive,
SenderFieldGroup as AllocationFieldGroup,
SenderSingleField as AllocationSingleField,
SenderFieldInterval as AllocationFieldInterval,
AllocationFieldDisplayPosition,
AllocationFieldLabel,
AllocationFieldLength,
AllocationFieldPropertyType,
AllocationFieldIsUppercase,
AllocationFieldDecimalPlaces,
AllocationFieldPrecision,
AllocationFieldScale,
AllocationSearchHelpEntityName,
AllocationSearchHelpOutput,
GroupValueHelpEntityName,
GroupValueHelpOutput,
GroupValueHelpOutputText
}
where
SenderFieldActive = 'X'
or SenderFieldActive = '+'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_ALLOCATIONINFORMATION"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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