I_BlockFunctionStatusText

DDL: I_BLOCKFUNCTIONSTATUSTEXT SQL: IBLKFUNCSTATTXT Type: view BASIC

Texts for actions on block functions

I_BlockFunctionStatusText is a Basic CDS View that provides data about "Texts for actions on block functions" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, EntProjElementFunctionIsBlkd. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_BlockFunctionStatus _BlockFunctionStatus $projection.EntProjElementFunctionIsBlkd = _BlockFunctionStatus.EntProjElementFunctionIsBlkd
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBLKFUNCSTATTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey EntProjElementFunctionIsBlkd view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
EndUserText.label Texts for actions on block functions view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY EntProjElementFunctionIsBlkd
BlockStatusDescription Processing Status Description
_BlockFunctionStatus _BlockFunctionStatus
_Language _Language
@AbapCatalog.sqlViewName: 'IBLKFUNCSTATTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel:
{
   representativeKey: 'EntProjElementFunctionIsBlkd',
   resultSet.sizeCategory: #XS,
   usageType:
   {
      serviceQuality: #A,
      dataClass: #MASTER,
      sizeCategory:   #S
   }
}

@VDM.viewType: #BASIC
@EndUserText.label: 'Texts for actions on block functions'
define view I_BlockFunctionStatusText
  as select from dd07t
  association [0..1] to I_BlockFunctionStatus as _BlockFunctionStatus on $projection.EntProjElementFunctionIsBlkd = _BlockFunctionStatus.EntProjElementFunctionIsBlkd
  association [0..1] to I_Language            as _Language            on $projection.Language = _Language.Language

{
      @Semantics.language
  key cast( ddlanguage as spras )                       as Language,

      @ObjectModel.foreignKey.association: '_BlockFunctionStatus'

  key cast ( substring( domvalue_l, 1, 1 ) as boole_d ) as EntProjElementFunctionIsBlkd,

      @Semantics.text
      @EndUserText.label: 'Processing Status Description'
      cast ( ddtext as /s4ppm/tv_proc_status_text )     as BlockStatusDescription,

      _BlockFunctionStatus,
      _Language
}
where
      domname  = 'ENTOBJ_FUNCTION_IS_BLOCKED'
  and as4local = 'A'