I_PurContractIsExistingText

DDL: I_PURCONTRACTISEXISTINGTEXT SQL: IPURCTRIEXT Type: view BASIC Package: ODATA_MM_PUR_MAT_PROPOSE_CTR

Purchase Contract Exists Text

I_PurContractIsExistingText is a Basic CDS View that provides data about "Purchase Contract Exists Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields PurchaseContractIsExisting, Language. It has 1 association to related views. Part of development package ODATA_MM_PUR_MAT_PROPOSE_CTR.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PurchaseContractIsExisting view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
AbapCatalog.sqlViewName IPURCTRIEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Purchase Contract Exists Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PurchaseContractIsExisting
KEY Language ddlanguage
PurContractIsExistingText
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{representativeKey: 'PurchaseContractIsExisting',
              usageType.dataClass: #MASTER,
              usageType.serviceQuality: #A,
              usageType.sizeCategory: #S,
              dataCategory: #TEXT}

@AbapCatalog.sqlViewName: 'IPURCTRIEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Purchase Contract Exists Text'

define view I_PurContractIsExistingText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast ( substring( domvalue_l, 1, 2 ) as vdm_purctrisexisting )                 as PurchaseContractIsExisting,
      @Semantics.language
  key ddlanguage                                                                     as Language,
      @Semantics.text
      cast( ddtext as vdm_purctrisexistingtext preserving type )                     as PurContractIsExistingText,
      _Language
}
where
      domname  = 'VDM_PURCTRISEXISTING'
  and as4local = 'A'