I_SchedulingActivityText

DDL: I_SCHEDULINGACTIVITYTEXT Type: view_entity BASIC Package: BPS_VDM

Scheduling Activity - Text

I_SchedulingActivityText is a Basic CDS View that provides data about "Scheduling Activity - Text" in SAP S/4HANA. It reads from 1 data source (bps_activityt) and exposes 5 fields with key fields SchedulingActivity, Language. It has 2 associations to related views. Part of development package BPS_VDM.

Data Sources (1)

SourceAliasJoin Type
bps_activityt bps_activityt from

Associations (2)

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

Annotations (9)

NameValueLevelField
EndUserText.label Scheduling Activity - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SchedulingActivity view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SchedulingActivity activity VAT Activity
KEY Language language Report Text Language
SchedulingActivityText activity_desc Activity Description
_SchedulingActivity _SchedulingActivity
_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_SchedulingActivityText.
-- 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.

CREATE VIEW I_SchedulingActivityText AS
SELECT
  activity AS SchedulingActivity,
  Language,
  activity_desc AS SchedulingActivityText
FROM bps_activityt
LEFT OUTER JOIN I_SchedulingActivity AS _SchedulingActivity ON SchedulingActivity = _SchedulingActivity.SchedulingActivity  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;