I_ProcmtHubSourceJobXtrctnTxt

DDL: I_PROCMTHUBSOURCEJOBXTRCTNTXT SQL: IJOBXTRCNTXT Type: view BASIC

Procurement Hub Source Job Extraction Text

I_ProcmtHubSourceJobXtrctnTxt is a Basic CDS View that provides data about "Procurement Hub Source Job Extraction Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, MMApplicationArea. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IJOBXTRCNTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Procurement Hub Source Job Extraction Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MMApplicationArea view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY MMApplicationArea
TriggerPointName dd07t ddtext
_ProcmtHubSourceJobXtrctn _ProcmtHubSourceJobXtrctn
_Language _Language
@AbapCatalog.sqlViewName: 'IJOBXTRCNTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Procurement Hub Source Job Extraction Text'

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'MMApplicationArea'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC

define view I_ProcmtHubSourceJobXtrctnTxt
  as select from dd07t

  association        to parent I_ProcmtHubSourceJobXtrctn as _ProcmtHubSourceJobXtrctn on $projection.MMApplicationArea = _ProcmtHubSourceJobXtrctn.MMApplicationArea

  association [0..1] to I_Language                        as _Language                 on $projection.Language = _Language.Language
{
       @ObjectModel.foreignKey.association: '_Language'
       @Semantics.language: true
  key  dd07t.ddlanguage                                as Language,
       @ObjectModel.foreignKey.association: '_ProcmtHubSourceJobXtrctn'
       @ObjectModel.text.element: ['TriggerPointName']
  key  cast (dd07t.domvalue_l as mmpur_job_trgr_appl ) as MMApplicationArea, //casting has been done as per guidelines (https://wiki.wdf.sap.corp/wiki/display/SuiteCDS/VDM+CDS+Code+List+Views+and+Services)


       @Semantics.text: true
       dd07t.ddtext                                    as TriggerPointName,
       _ProcmtHubSourceJobXtrctn,
       _Language
}
where
      dd07t.domname    = 'MMPUR_JOB_TRGR_APPL'
  and dd07t.as4local   = 'A'
  and dd07t.as4vers    = '0000'
  and dd07t.ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PROCMTHUBSOURCEJOBXTRCTN"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/