I_OrderTypeConfirmationParam
Order Type Based Control Parameters for Confirmation
I_OrderTypeConfirmationParam is a Basic CDS View that provides data about "Order Type Based Control Parameters for Confirmation" in SAP S/4HANA. It reads from 1 data source (tcoru) and exposes 16 fields with key fields Plant, OrderType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tcoru | tcoru | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Plant | _Plant | $projection.Plant = _Plant.Plant |
| [1..1] | I_OrderType | _OrderType | $projection.OrderType = _OrderType.OrderType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IORDTYPECONFPARM | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.buffering.numberOfKeyFields | 001 | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Order Type Based Control Parameters for Confirmation | view |
Fields (16)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | tcoru | werks | |
| KEY | OrderType | tcoru | auart | |
| UnderDeliveryTolIsChecked | tcoru | untli | ||
| OverDeliveryTolIsChecked | tcoru | uebli | ||
| OpenReservationIsFinallyIssued | tcoru | ausor | ||
| FinalConfirmationType | tcoru | aueru | ||
| QuantitiesAreProposed | tcoru | vssmg | ||
| ActivitiesAreProposed | tcoru | vssle | ||
| DatesAreProposed | tcoru | vsszt | ||
| PersonnelDataAreProposed | tcoru | vsszu | ||
| SequenceOfOperationsIsChecked | tcoru | mrflg | ||
| AllComponentsAreProposed | tcoru | acomp | ||
| FutureDateIsAllowed | tcoru | trmzk | ||
| ActualDateIsNotUpdated | tcoru | nodat | ||
| _Plant | _Plant | |||
| _OrderType | _OrderType |
@AbapCatalog.sqlViewName: 'IORDTYPECONFPARM'
@AbapCatalog.buffering: {status: #ACTIVE, type: #FULL, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Order Type Based Control Parameters for Confirmation'
define view I_OrderTypeConfirmationParam as select from tcoru as tcoru
association [1..1] to I_Plant as _Plant on $projection.Plant = _Plant.Plant
association [1..1] to I_OrderType as _OrderType on $projection.OrderType = _OrderType.OrderType
{
@ObjectModel.foreignKey.association: '_Plant'
key tcoru.werks as Plant,
@ObjectModel.foreignKey.association: '_OrderType'
key tcoru.auart as OrderType,
// Control Parameters
tcoru.untli as UnderDeliveryTolIsChecked,
tcoru.uebli as OverDeliveryTolIsChecked,
tcoru.ausor as OpenReservationIsFinallyIssued,
tcoru.aueru as FinalConfirmationType,
tcoru.vssmg as QuantitiesAreProposed,
tcoru.vssle as ActivitiesAreProposed,
tcoru.vsszt as DatesAreProposed,
tcoru.vsszu as PersonnelDataAreProposed,
tcoru.mrflg as SequenceOfOperationsIsChecked,
tcoru.acomp as AllComponentsAreProposed,
tcoru.trmzk as FutureDateIsAllowed,
tcoru.nodat as ActualDateIsNotUpdated,
// Associations
_Plant,
_OrderType
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TCORU"
],
"ASSOCIATED":
[
"I_ORDERTYPE",
"I_PLANT"
],
"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