I_ORDERINTERNALID

CDS View

Order Internal ID

I_ORDERINTERNALID is a CDS View in S/4HANA. Order Internal ID. It contains 2 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
C_IntOrdSettlmtRuleNtwkActyVH view_entity inner CONSUMPTION Internal Order Settlement Rule Network activity
P_MfgOrderOperationHold view inner CONSUMPTION
P_OperationAffectedByProdnHold view_entity inner COMPOSITE

Fields (2)

KeyField CDS FieldsUsed in Views
OrderID ManufacturingOrder 2
OrderInternalID OrderInternalID 1
@AbapCatalog.sqlViewName: 'IORDERINTID'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@ClientHandling.type: #CLIENT_DEPENDENT
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE]
@ObjectModel.representativeKey: 'OrderInternalID'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API  // status "not to be released - kept stable"

@VDM.viewType: #BASIC
@EndUserText.label: 'Order Internal ID'
// Basic view on AFKO with AUFPL (internal ID) as key


/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_OrderInternalID
  as select from I_LogisticsOrderBasic
  association [1..1] to I_Order as _Order on $projection.OrderID = _Order.OrderID
{
  key OrderInternalID as OrderInternalID,
      @ObjectModel.foreignKey.association: '_Order'
      OrderID         as OrderID,

      -- associations
      _Order
}
  where OrderInternalID <> '0000000000';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LOGISTICSORDERBASIC"
],
"ASSOCIATED":
[
"I_ORDER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/