I_ACMLoadDataCaptureNomination

DDL: I_ACMLOADDATACAPTURENOMINATION Type: view_entity BASIC

LDC Data with Nomination Details

I_ACMLoadDataCaptureNomination is a Basic CDS View that provides data about "LDC Data with Nomination Details" in SAP S/4HANA. It reads from 1 data source (/accgo/t_uisevnt) and exposes 5 fields with key field LDCKey.

Data Sources (1)

SourceAliasJoin Type
/accgo/t_uisevnt /accgo/t_uisevnt from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label LDC Data with Nomination Details view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY LDCKey parent_key UUID
LoadDataCaptureEventType event_type Type of Event
NominationKey nom_key Nomination key
NominationNumber nom_id Nomination no.
NominationItem nom_item Nomination Relevant

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_ACMLoadDataCaptureNomination.
-- 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_ACMLoadDataCaptureNomination AS
SELECT
  parent_key AS LDCKey,
  event_type AS LoadDataCaptureEventType,
  nom_key AS NominationKey,
  nom_id AS NominationNumber,
  nom_item AS NominationItem
FROM /accgo/t_uisevnt
;