I_PurReqnBlockIndText

DDL: I_PURREQNBLOCKINDTEXT SQL: IPURREQBLKINDT Type: view BASIC

Basic view for PR Blocked Indicator Text

I_PurReqnBlockIndText is a Basic CDS View that provides data about "Basic view for PR Blocked Indicator Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields IsPurReqnBlocked, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PurReqnBlockInd _PurReqnBlockInd $projection.IsPurReqnBlocked = _PurReqnBlockInd.IsPurReqnBlocked
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPURREQBLKINDT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Basic view for PR Blocked Indicator Text view
ObjectModel.representativeKey IsPurReqnBlocked view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY IsPurReqnBlocked
KEY Language ddlanguage
PurReqnBlockedIndicatorDesc ddtext
_Language _Language
_PurReqnBlockInd _PurReqnBlockInd
@AbapCatalog.sqlViewName: 'IPURREQBLKINDT'
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Basic view for PR Blocked Indicator Text'
@ObjectModel.representativeKey: 'IsPurReqnBlocked'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true

define view I_PurReqnBlockIndText
  as select from dd07t
  association [0..1] to I_PurReqnBlockInd as _PurReqnBlockInd on $projection.IsPurReqnBlocked = _PurReqnBlockInd.IsPurReqnBlocked
  association [0..1] to I_Language        as _Language        on $projection.Language = _Language.Language
{
  key cast(substring(domvalue_l, 1, 1) as blckd preserving type)                 as IsPurReqnBlocked,
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                                                 as Language,
      @Semantics.text
      ddtext                                                                     as PurReqnBlockedIndicatorDesc,
      
      /* Associations */
      _Language,
      _PurReqnBlockInd

}
where
      domname  = 'BLCKD'
  and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PURREQNBLOCKIND"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/