I_InternalOrderType
Internal Order Type
I_InternalOrderType is a Basic CDS View (Dimension) that provides data about "Internal Order Type" in SAP S/4HANA. It reads from 1 data source (t003o) and exposes 8 fields with key field OrderType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t003o | t003o | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_InternalOrderTypeText | _Text | $projection.OrderType = _Text.OrderType |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Internal Order Type | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIINTORDTYPE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | OrderType | view | |
| ClientHandling.type | #CLIENT_DEPENDENT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 1 | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderType | auart | ||
| RevenuePostingIsAllowed | erloese | |||
| OrderCategory | autyp | |||
| CommitmentsMgmtActvtnStatus | ||||
| StatusProfile | stsma | |||
| ResidenceTime1 | resz1 | |||
| ResidenceTime2 | resz2 | |||
| _Text | _Text |
@EndUserText.label: 'Internal Order Type'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIINTORDTYPE'
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'OrderType'
@ClientHandling.type: #CLIENT_DEPENDENT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AbapCatalog.buffering: {type: #GENERIC, numberOfKeyFields: 1, status: #ACTIVE}
@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions:true
define view I_InternalOrderType
as select from t003o
association [0..*] to I_InternalOrderTypeText as _Text on $projection.OrderType = _Text.OrderType
{
@ObjectModel.text.association: '_Text'
key auart as OrderType,
@Semantics.booleanIndicator: true
erloese as RevenuePostingIsAllowed,
autyp as OrderCategory,
cast( obligo as fins_co_obligo preserving type ) as CommitmentsMgmtActvtnStatus,
stsma as StatusProfile,
resz1 as ResidenceTime1,
resz2 as ResidenceTime2,
_Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T003O"
],
"ASSOCIATED":
[
"I_INTERNALORDERTYPETEXT"
],
"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