I_ABOPStrategy

DDL: I_ABOPSTRATEGY SQL: IABOPSTRATEGY Type: view BASIC

Confirmation strategy in BOP

I_ABOPStrategy is a Basic CDS View that provides data about "Confirmation strategy in BOP" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ABOPConfirmationStrategy. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ABOPStrategyText _ABOPStrategyText $projection.ABOPConfirmationStrategy = _ABOPStrategyText.ABOPConfirmationStrategy

Annotations (10)

NameValueLevelField
EndUserText.label Confirmation strategy in BOP view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IABOPSTRATEGY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ABOPConfirmationStrategy view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ABOPConfirmationStrategy dd07l domvalue_l
_ABOPStrategyText _ABOPStrategyText
@EndUserText.label: 'Confirmation strategy in BOP'
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IABOPSTRATEGY'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED //#CHECK


@ObjectModel: {
    representativeKey: 'ABOPConfirmationStrategy',
    usageType: {
      serviceQuality: #B,
      sizeCategory: #L,
      dataClass: #META
    }
}

@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_ABOPStrategy
  as select from dd07l as typ
  association [0..*] to I_ABOPStrategyText as _ABOPStrategyText on $projection.ABOPConfirmationStrategy = _ABOPStrategyText.ABOPConfirmationStrategy
{
      @ObjectModel.text.association: '_ABOPStrategyText'
  key typ.domvalue_l as ABOPConfirmationStrategy,

      // Associations

      _ABOPStrategyText
}
where
      typ.domname    =  'ATP_BOP_CONFIRMATION_STRATEGY'
  and typ.domvalue_l <> 'NC'
  and typ.as4local   =  'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_ABOPSTRATEGYTEXT"
],
"BASE":
[],
"VERSION":0
}
}*/