P_LDC_VENDORSPLIT

DDL: P_LDC_VENDORSPLIT Type: view_entity COMPOSITE

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

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 #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY uis_key uis_key LDC Key
vendor vendor Vendor

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_LDC_VENDORSPLIT.
-- 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_LDC_VENDORSPLIT AS
SELECT
  uis_key,
  vendor
FROM /accgo/t_uishdr
;