FCCX_TP_DEF

DDL: FCCX_TP_DEF Type: view_entity

Program reg param def

FCCX_TP_DEF is a CDS View that provides data about "Program reg param def" in SAP S/4HANA. It reads from 4 data sources (fccx_tskpar_def, FCCX_TP_HD, fccx_rep_met_par, FCCX_V_tp_rul_distinct) and exposes 33 fields with key fields VariantId, ProgramName, ParameterName.

Data Sources (4)

SourceAliasJoin Type
fccx_tskpar_def def from
FCCX_TP_HD hdp inner
fccx_rep_met_par meta inner
FCCX_V_tp_rul_distinct rul left_outer

Annotations (6)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Program reg param def view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (33)

KeyFieldSource TableSource FieldDescription
KEY VariantId fccx_tskpar_def variant_id Variant Id
KEY ProgramName fccx_tskpar_def program_name Program Name
KEY ParameterName fccx_tskpar_def parameter_name Support Parameter
ParameterType fccx_tskpar_def parameter_type Parameter Type
HiddenIndicator fccx_tskpar_def hidden_indicator Hidden for End User
JobTemplateName FCCX_TP_HD JobTemplateName Job Template Name
RuleCount FCCX_V_tp_rul_distinct RuleCount
Kind fccx_rep_met_par kind Usage Data Source
Type fccx_rep_met_par type Worklist Type
Dtyp fccx_rep_met_par dtyp DDIC Type
Length fccx_rep_met_par length Text Length
Intlen fccx_rep_met_par intlen Length
Decimals fccx_rep_met_par decimals Rounding Places
MandatoryInd fccx_rep_met_par mandatory_ind Mandatory Parameter
CheRad fccx_rep_met_par che_rad CHAR01 data element for SYST
GroupId fccx_rep_met_par group_id UUID
Dbtabname fccx_rep_met_par dbtabname Table Name
Dbfieldname fccx_rep_met_par dbfieldname Field Name
TypingDataType fccx_rep_met_par typing_data_type
ConvExit fccx_rep_met_par conv_exit Convers. Rout.
Lowercase fccx_rep_met_par lowercase Link
HiddenInd fccx_rep_met_par hidden_ind Hidden
ChangeableInd fccx_rep_met_par changeable_ind Boolean Variable (X = True, - = False, Space = Unknown)
IsDate fccx_rep_met_par is_date TRUE
IsFyear fccx_rep_met_par is_fyear TRUE
IsFper fccx_rep_met_par is_fper TRUE
IsFyearperiod fccx_rep_met_par is_fyearperiod TRUE
IsManagedByFcco fccx_rep_met_par is_managed_by_fcco TRUE
ParameterTypeMeta fccx_rep_met_par parameter_type Parameter Type
ScreenPosition fccx_rep_met_par screen_position
ValueHelpType fccx_rep_met_par value_help_type Value Help Type
ShlpName fccx_rep_met_par shlp_name Search Help Name
HasValueHelp fccx_rep_met_par has_value_help Boolean Variable (X = True, - = False, Space = Unknown)

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 FCCX_TP_DEF.
-- 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 FCCX_TP_DEF AS
SELECT
  def.variant_id AS VariantId,
  def.program_name AS ProgramName,
  def.parameter_name AS ParameterName,
  def.parameter_type AS ParameterType,
  def.hidden_indicator AS HiddenIndicator,
  hdp.JobTemplateName AS JobTemplateName,
  rul.RuleCount AS RuleCount,
  meta.kind AS Kind,
  meta.type AS Type,
  meta.dtyp AS Dtyp,
  meta.length AS Length,
  meta.intlen AS Intlen,
  meta.decimals AS Decimals,
  meta.mandatory_ind AS MandatoryInd,
  meta.che_rad AS CheRad,
  meta.group_id AS GroupId,
  meta.dbtabname AS Dbtabname,
  meta.dbfieldname AS Dbfieldname,
  meta.typing_data_type AS TypingDataType,
  meta.conv_exit AS ConvExit,
  meta.lowercase AS Lowercase,
  meta.hidden_ind AS HiddenInd,
  meta.changeable_ind AS ChangeableInd,
  meta.is_date AS IsDate,
  meta.is_fyear AS IsFyear,
  meta.is_fper AS IsFper,
  meta.is_fyearperiod AS IsFyearperiod,
  meta.is_managed_by_fcco AS IsManagedByFcco,
  meta.parameter_type AS ParameterTypeMeta,
  meta.screen_position AS ScreenPosition,
  meta.value_help_type AS ValueHelpType,
  meta.shlp_name AS ShlpName,
  meta.has_value_help AS HasValueHelp
FROM fccx_tskpar_def AS def
INNER JOIN fccx_rep_met_par AS meta ON /* join condition not captured in parsed metadata */
INNER JOIN FCCX_TP_HD AS hdp ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN FCCX_V_tp_rul_distinct AS rul ON /* join condition not captured in parsed metadata */
;