I_ACMLoadDataCaptureHdr1

DDL: I_ACMLOADDATACAPTUREHDR1 SQL: IACMLDCHDR1 Type: view BASIC

Basic ACM UIS Header

I_ACMLoadDataCaptureHdr1 is a Basic CDS View that provides data about "Basic 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 (12)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LDCKey uis_key LDC Key
LDCId uis_id LDC ID
ReferenceVendor vendor Vendor
TransactingCtpty ccp_partner CCP Partner

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_ACMLoadDataCaptureHdr1.
-- 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: IACMLDCHDR1

CREATE VIEW I_ACMLoadDataCaptureHdr1 AS
SELECT
  uis_key AS LDCKey,
  uis_id AS LDCId,
  vendor AS ReferenceVendor,
  ccp_partner AS TransactingCtpty
FROM /accgo/t_uishdr
;