I_WmpcConfig_S

DDL: I_WMPCCONFIG_S Type: view_entity

WMPC Config Singleton

I_WmpcConfig_S is a CDS View that provides data about "WMPC Config Singleton" in SAP S/4HANA. It reads from 2 data sources (I_CstmBizConfignLastChgd, I_Language) and exposes 6 fields with key field SingletonID. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_CstmBizConfignLastChgd I_CstmBizConfignLastChgd left_outer
I_Language I_Language from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_WMPCDT _WmpcDT $projection.SingletonID = _WmpcDT.SingletonID
[0..*] I_WmpcConfig _WmpcConfig

Annotations (2)

NameValueLevelField
EndUserText.label WMPC Config Singleton view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SingletonID 1
_WmpcConfig _WmpcConfig
_WmpcDT _WmpcDT
LastChangedAtMax I_CstmBizConfignLastChgd LastChangedDateTime Time Stamp
TransportRequestID
HideTransport

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_WmpcConfig_S.
-- 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_WmpcConfig_S AS
SELECT
  1 AS SingletonID,
  I_CstmBizConfignLastChgd.LastChangedDateTime AS LastChangedAtMax,
  cast( '' as sxco_transport) AS TransportRequestID,
  cast( 'X' as abap_boolean preserving type) AS HideTransport
FROM I_Language
LEFT OUTER JOIN I_CstmBizConfignLastChgd ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_WMPCDT AS _WmpcDT ON SingletonID = _WmpcDT.SingletonID  -- association [0..*]
LEFT OUTER JOIN I_WmpcConfig AS _WmpcConfig ON /* condition not available in parsed metadata */  -- association [0..*]
;