I_MDChgProcSrchWlAssgmtTP

DDL: I_MDCHGPROCSRCHWLASSGMTTP Type: view_entity TRANSACTIONAL

MDC Process Search to Worklist Assignment - TP

I_MDChgProcSrchWlAssgmtTP is a Transactional CDS View that provides data about "MDC Process Search to Worklist Assignment - TP" in SAP S/4HANA. It reads from 2 data sources (I_MDChgProcessSearch, I_Mdchgprocessworklist) and exposes 4 fields with key fields MasterDataChgProcessSearch, MasterDataChgProcessWorklist. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_MDChgProcessSearch Search from
I_Mdchgprocessworklist Worklist inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MDChgProcessWorklistTP _Worklist $projection.MasterDataChgProcessWorklist = _Worklist.MasterDataChgProcessWorklist

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label MDC Process Search to Worklist Assignment - TP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #TRANSACTIONAL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MasterDataChgProcessSearch I_MDChgProcessSearch MasterDataChgProcessSearch GUID
KEY MasterDataChgProcessWorklist I_Mdchgprocessworklist MasterDataChgProcessWorklist Worklist GUID
_Search _Search
_Worklist _Worklist

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_MDChgProcSrchWlAssgmtTP.
-- 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_MDChgProcSrchWlAssgmtTP AS
SELECT
  Search.MasterDataChgProcessSearch AS MasterDataChgProcessSearch,
  Worklist.MasterDataChgProcessWorklist AS MasterDataChgProcessWorklist
FROM I_MDChgProcessSearch AS Search
INNER JOIN I_Mdchgprocessworklist AS Worklist ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_MDChgProcessWorklistTP AS _Worklist ON MasterDataChgProcessWorklist = _Worklist.MasterDataChgProcessWorklist  -- association [1..1]
;