I_LglTransToBeUpdated

DDL: I_LGLTRANSTOBEUPDATED SQL: ILGLTBUPD Type: view BASIC

Legal Transactions that are to be updatd

I_LglTransToBeUpdated is a Basic CDS View that provides data about "Legal Transactions that are to be updatd" in SAP S/4HANA. It reads from 1 data source (lcm_lt_bi_updtim) and exposes 4 fields with key field LegalTransaction.

Data Sources (1)

SourceAliasJoin Type
lcm_lt_bi_updtim lcm_lt_bi_updtim from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ILGLTBUPD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Legal Transactions that are to be updatd view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LegalTransaction legaltransaction Legal Transaction ID
LglCntntMChangedUTCDateTime lglcntntmchangedutcdatetime Changed On
LglCntntMLinkdObj lglcntntmlinkdobj Unique ID
LglCntntMLglTransUpdtIsRqd

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_LglTransToBeUpdated.
-- 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: ILGLTBUPD

CREATE VIEW I_LglTransToBeUpdated AS
SELECT
  LegalTransaction,
  LglCntntMChangedUTCDateTime,
  LglCntntMLinkdObj,
  'X' AS LglCntntMLglTransUpdtIsRqd
FROM lcm_lt_bi_updtim
;