I_InternalOrderType

DDL: I_INTERNALORDERTYPE SQL: IFIINTORDTYPE Type: view BASIC Package: FINS_INTERNAL_ORDER_VDM

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. Part of development package FINS_INTERNAL_ORDER_VDM.

Data Sources (1)

SourceAliasJoin Type
t003o t003o from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_InternalOrderTypeText _Text $projection.OrderType = _Text.OrderType

Annotations (17)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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

};