I_JobText

DDL: I_JOBTEXT SQL: IJOBTEXT Type: view BASIC Package: VDM_SHCM_EMPLOYEE

Job text

I_JobText is a Basic CDS View that provides data about "Job text" in SAP S/4HANA. It reads from 1 data source (wfd_d_jobcodet) and exposes 6 fields with key fields Job, StartDate, EndDate, Language. It has 1 association to related views. Part of development package VDM_SHCM_EMPLOYEE.

Data Sources (1)

SourceAliasJoin Type
wfd_d_jobcodet new from

Associations (1)

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

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IJOBTEXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Job text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Job view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Job job_code Job Code
KEY StartDate start_date Valn start date
KEY EndDate end_date Valn End date
KEY Language
JobName job_title Job Title
_Language _Language

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_JobText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IJOBTEXT

CREATE VIEW I_JobText AS
SELECT
  job_code AS Job,
  start_date AS StartDate,
  end_date AS EndDate,
  coalesce( cast ($session.system_language as langu ), language ) AS Language,
  job_title AS JobName
FROM wfd_d_jobcodet AS new
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;