I_LoadDataCaptureHdr

DDL: I_LOADDATACAPTUREHDR SQL: IACMLDCHDR Type: view BASIC

ACM UIS Header

I_LoadDataCaptureHdr is a Basic CDS View that provides data about "ACM UIS Header" in SAP S/4HANA. It reads from 1 data source (/accgo/t_uishdr) and exposes 4 fields with key field LDCKey.

Data Sources (1)

SourceAliasJoin Type
/accgo/t_uishdr /accgo/t_uishdr from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACMLDCHDR view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label ACM UIS Header view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.supportedCapabilities #TRANSACTIONAL_PROVIDER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LDCKey uis_key LDC Key
LDCId uis_id LDC ID
LDCIsMultipleBuySellRelevant mbs_rel Multiple Buy Sell
ApplicationIsVehicleContrRlvt vehicle_rel Vehicle Contract

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_LoadDataCaptureHdr.
-- 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: IACMLDCHDR

CREATE VIEW I_LoadDataCaptureHdr AS
SELECT
  uis_key AS LDCKey,
  uis_id AS LDCId,
  mbs_rel AS LDCIsMultipleBuySellRelevant,
  vehicle_rel AS ApplicationIsVehicleContrRlvt
FROM /accgo/t_uishdr
;