P_ACMLoadDataCaptureHdr

DDL: P_ACMLOADDATACAPTUREHDR Type: view_entity COMPOSITE

P_ACMLoadDataCaptureHdr is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (/accgo/t_uishdr) and exposes 6 fields with key field LDCKey.

Data Sources (1)

SourceAliasJoin Type
/accgo/t_uishdr /accgo/t_uishdr from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY LDCKey uis_key LDC Key
LoadDataCaptureObjectID uis_id LDC ID
LoadDataCaptureType uis_type LDC Type
Vendor vendor Vendor
Customer customer Sold-to Party
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 P_ACMLoadDataCaptureHdr.
-- 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 P_ACMLoadDataCaptureHdr AS
SELECT
  uis_key AS LDCKey,
  uis_id AS LoadDataCaptureObjectID,
  uis_type AS LoadDataCaptureType,
  Vendor,
  Customer,
  vehicle_rel AS ApplicationIsVehicleContrRlvt
FROM /accgo/t_uishdr
;