P_AllocSqntlProcessingType
Sequential Processing Type
P_AllocSqntlProcessingType is a Basic CDS View that provides data about "Sequential Processing Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field AllocSequentialProcessingType. It has 1 association to related views. Part of development package ODATA_RUN_ALLOCATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | P_AllocSqntlProcessingTypeName | _Text | $projection.AllocSequentialProcessingType = _Text.AllocSequentialProcessingType |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocSequentialProcessingType | |||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@VDM.private: true
define view entity P_AllocSqntlProcessingType
as select from dd07l
association [0..*] to P_AllocSqntlProcessingTypeName as _Text on $projection.AllocSequentialProcessingType = _Text.AllocSequentialProcessingType
{
key cast( substring( domvalue_l, 1, 30) as fco_alloc_run_seq_proc ) as AllocSequentialProcessingType,
_Text
}
where
dd07l.domname = 'FCO_ALLOC_RUN_SEQ_PROC'
and dd07l.as4local = 'A';
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