I_BOOOperationInternalID

DDL: I_BOOOPERATIONINTERNALID SQL: IPPBOOOPINTID Type: view_entity BASIC

Bill of Operations Operation Internal ID

I_BOOOperationInternalID is a Basic CDS View (Dimension) that provides data about "Bill of Operations Operation Internal ID" in SAP S/4HANA. It has 2 associations to related views.

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_BillOfOperationsType _BillOfOperationsType $projection.BillOfOperationsType = _BillOfOperationsType.BillOfOperationsType
[1..1] I_BillOfOperationsGroup _BillOfOperationsGroup $projection.BillOfOperationsType = _BillOfOperationsGroup.BillOfOperationsType and $projection.BillOfOperationsGroup = _BillOfOperationsGroup.BillOfOperationsGroup

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
ObjectModel.representativeKey BOOOperationInternalID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Bill of Operations Operation Internal ID view
Metadata.allowExtensions true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType plpo plnty
KEY BillOfOperationsGroup plpo plnnr
KEY BOOOperationInternalID plpo plnkn
_BillOfOperationsType _BillOfOperationsType
_BillOfOperationsGroup _BillOfOperationsGroup
//@AbapCatalog.sqlViewName: 'IPPBOOOPINTID'

//@AbapCatalog.compiler.compareFilter: true

//@AbapCatalog.preserveKey:true 

@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
//@ClientHandling.algorithm: #SESSION_VARIABLE

//@ClientHandling.type: #CLIENT_DEPENDENT

@ObjectModel.representativeKey: 'BOOOperationInternalID'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #L, dataClass: #MASTER }
@Search.searchable: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'Bill of Operations Operation Internal ID'
@Metadata.allowExtensions:true

/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
//define view I_BOOOperationInternalID

define view entity I_BOOOperationInternalID
  as select distinct from plpo

  association [1..1] to I_BillOfOperationsType  as _BillOfOperationsType  on  $projection.BillOfOperationsType = _BillOfOperationsType.BillOfOperationsType
  association [1..1] to I_BillOfOperationsGroup as _BillOfOperationsGroup on  $projection.BillOfOperationsType  = _BillOfOperationsGroup.BillOfOperationsType
                                                                          and $projection.BillOfOperationsGroup = _BillOfOperationsGroup.BillOfOperationsGroup

{
      // Key

      @ObjectModel.foreignKey.association: '_BillOfOperationsType'
  key plpo.plnty                                           as BillOfOperationsType,
      @ObjectModel.foreignKey.association: '_BillOfOperationsGroup'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key plpo.plnnr                                           as BillOfOperationsGroup,

  key plpo.plnkn                                           as BOOOperationInternalID,
  
      // Associations

      _BillOfOperationsType,
      _BillOfOperationsGroup
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"PLPO"
],
"ASSOCIATED":
[
"I_BILLOFOPERATIONSGROUP",
"I_BILLOFOPERATIONSTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/