I_MDChangeProcessModelFieldVH

DDL: I_MDCHANGEPROCESSMODELFIELDVH SQL: IMDCHGPRMDLFLDVH Type: view BASIC Package: MDC_PROCESS_OBJECT

Process model field value help

I_MDChangeProcessModelFieldVH is a Basic CDS View that provides data about "Process model field value help" in SAP S/4HANA. It reads from 3 data sources (dd03l, mdc_model_fields, I_MDChangeProcessModelTable) and exposes 10 fields with key fields MDChgProcessSrchQueryAttribute, MDChgProcessSrceObjectTypeCode. It is exposed through 4 OData services (ASQL_F7204A, MASTERDATACHANGEPROCESSSD, MASTERDATACHANGEPROCESSSD, ...). Part of development package MDC_PROCESS_OBJECT.

Data Sources (3)

SourceAliasJoin Type
dd03l dd03l inner
mdc_model_fields Field inner
I_MDChangeProcessModelTable Table from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMDCHGPRMDLFLDVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Process model field value help view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
Consumption.ranked true view

OData Services (4)

ServiceBindingVersionContractRelease
ASQL_F7204A ASQL_F7204A C2 NOT_RELEASED
MASTERDATACHANGEPROCESSSD C_MASTERDATACHANGEPROCESS_V4 V4 C1 C1
MASTERDATACHANGEPROCESSSD MASTERDATACHANGEPROCESSSB V2 C1 NOT_RELEASED
MASTERDATACHANGEPROCESSSD MDCHANGEPROCESSSB_2 V2 C1 NOT_RELEASED

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessSrchQueryAttribute Attribute
KEY MDChgProcessSrceObjectTypeCode I_MDChangeProcessModelTable MDChgProcessSrceObjectTypeCode Bus. Obj. Type
MDChgProcessModelTableName I_MDChangeProcessModelTable MDChgProcessModelTableName Table
MDChangeProcModelTableDesc I_MDChangeProcessModelTable MDChangeProcModelTableDesc Table Description
MDChangeProcessModelFieldName mdc_model_fields field_name Field
MDChangeProcessModelFieldDesc dd04t ddtext Field Description
IsKeyField dd03l keyflag Key field
MDChgProcQryAttribIsSelective
MDChgProcQryAttribIsObscured
MDChgProcQryAttribIsTechnical

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_MDChangeProcessModelFieldVH.
-- 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: IMDCHGPRMDLFLDVH

CREATE VIEW I_MDChangeProcessModelFieldVH AS
SELECT
  cast ( concat(concat(Table.MDChgProcessModelTableName, '-'), Field.field_name) as mdc_wl_attribute ) AS MDChgProcessSrchQueryAttribute,
  Table.MDChgProcessSrceObjectTypeCode AS MDChgProcessSrceObjectTypeCode,
  Table.MDChgProcessModelTableName AS MDChgProcessModelTableName,
  Table.MDChangeProcModelTableDesc AS MDChangeProcModelTableDesc,
  Field.field_name AS MDChangeProcessModelFieldName,
  dd04t.ddtext AS MDChangeProcessModelFieldDesc,
  dd03l.keyflag AS IsKeyField,
  case when CustomField.selective is not null then CustomField.selective else Field.selective end AS MDChgProcQryAttribIsSelective,
  case when CustomField.obscured is not null then CustomField.obscured else Field.obscured end AS MDChgProcQryAttribIsObscured,
  case when CustomField.technical is not null then CustomField.technical else Field.technical end AS MDChgProcQryAttribIsTechnical
FROM I_MDChangeProcessModelTable AS Table
INNER JOIN mdc_model_fields AS Field ON /* join condition not captured in parsed metadata */
INNER JOIN dd03l ON /* join condition not captured in parsed metadata */
;