I_AllocationCycleKeyFieldTP
Allocation Cycle Key Field TP
I_AllocationCycleKeyFieldTP is a Transactional CDS View that provides data about "Allocation Cycle Key Field TP" in SAP S/4HANA. It reads from 1 data source (I_AllocationKeyField) and exposes 15 fields with key fields AllocationType, AllocationCycle, AllocationCycleStartDate, AllocationCycleSegment, AllocDocumentSequenceNumber. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_AllocationKeyField | I_AllocationKeyField | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_AllocationCycleTP | _Cycle | $projection.AllocationType = _Cycle.AllocationType and $projection.AllocationCycle = _Cycle.AllocationCycle and $projection.AllocationCycleStartDate = _Cycle.AllocationCycleStartDate |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ALOCCYCLEFIELDTP | 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 | |
| EndUserText.label | Allocation Cycle Key Field TP | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| ObjectModel.transactionalProcessingEnabled | true | view | |
| ObjectModel.writeDraftPersistence | ALOCCYCLEFLDTPD | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocationType | AllocationType | ||
| KEY | AllocationCycle | AllocationCycle | ||
| KEY | AllocationCycleStartDate | AllocationCycleStartDate | ||
| KEY | AllocationCycleSegment | AllocationCycleSegment | ||
| KEY | AllocDocumentSequenceNumber | AllocDocumentSequenceNumber | ||
| AllocationFieldName | AllocationFieldName | |||
| AllocationSetName | AllocationSetName | |||
| AllocationFieldMinimumValue | AllocationFieldMinimumValue | |||
| AllocationFieldMaximumValue | AllocationFieldMaximumValue | |||
| AllocationSetId | AllocationSetId | |||
| AllocationSetType | AllocationSetType | |||
| AllocationFieldText | ||||
| AllocKeyFieldIsInitial | ||||
| AllocKeyFieldIsAllValues | ||||
| _Cycle | _Cycle |
@AbapCatalog.sqlViewName: 'ALOCCYCLEFIELDTP'
@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
@EndUserText.label: 'Allocation Cycle Key Field TP'
@VDM.viewType: #TRANSACTIONAL
@ObjectModel:
{
transactionalProcessingEnabled:true,
writeDraftPersistence: 'ALOCCYCLEFLDTPD',
semanticKey: ['AllocationType', 'AllocationCycle', 'AllocationCycleStartDate', 'AllocationCycleSegment', 'AllocDocumentSequenceNumber' ],
createEnabled: true,
updateEnabled: true,
deleteEnabled: true
// entityChangeStateId: 'LastChangeTime'
}
define view I_AllocationCycleKeyFieldTP
as select from I_AllocationKeyField
association [1..1] to I_AllocationCycleTP as _Cycle on $projection.AllocationType = _Cycle.AllocationType
and $projection.AllocationCycle = _Cycle.AllocationCycle
and $projection.AllocationCycleStartDate = _Cycle.AllocationCycleStartDate
{
key AllocationType,
key AllocationCycle,
key AllocationCycleStartDate,
key AllocationCycleSegment,
key AllocDocumentSequenceNumber,
AllocationFieldName,
AllocationSetName,
AllocationFieldMinimumValue,
AllocationFieldMaximumValue,
AllocationSetId,
AllocationSetType,
@ObjectModel: {
readOnly: true,
virtualElement,
virtualElementCalculatedBy: 'ABAP:CL_FCO_ALLOC_KEY_CDS_EXIT'
}
cast( '' as ltext ) as AllocationFieldText,
@ObjectModel.readOnly: true
cast( '' as boolean ) as AllocKeyFieldIsInitial,
@ObjectModel.readOnly: true
cast( '' as boolean ) as AllocKeyFieldIsAllValues,
@ObjectModel.association.type: [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
_Cycle
}
where
AllocationSetType = '0' and AllocationCycleSegment = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ALLOCATIONKEYFIELD"
],
"ASSOCIATED":
[
"I_ALLOCATIONCYCLETP"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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