Deprecated
This CDS view is deprecated in S/4HANA. Use I_LstdSubstWthVarAndGrpName instead. View all deprecated CDS views →

P_LSTDSUBSTUNIONNAME

DDL: P_LSTDSUBSTUNIONNAME SQL: PLISUUNNM Type: view BASIC

P_LSTDSUBSTUNIONNAME is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (ehfndd_lisu_name) and exposes 13 fields with key fields listsub_id, bco_key, db_key.

Data Sources (1)

SourceAliasJoin Type
ehfndd_lisu_name lisnd from

Annotations (12)

NameValueLevelField
VDM.viewType #BASIC view
VDM.private true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_LstdSubstWthVarAndGrpName view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PLISUUNNM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY listsub_id listsub_id Pollutant Container
KEY bco_key bco_key BCO KEY
KEY db_key db_key UUID
parent_key parent_key UUID
node_cat_key node_cat_key NodeID
datetime_cr Created On/At
user_id_cr user_id_cr Created By
datetime_ch Changed On/At
user_id_ch user_id_ch Changed By
language language Report Text Language
text text User Group
text_normed text_normed Text
name_id name_id Name ID

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_LSTDSUBSTUNIONNAME.
-- 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: PLISUUNNM

CREATE VIEW P_LSTDSUBSTUNIONNAME AS
SELECT
  listsub_id,
  bco_key,
  db_key,
  parent_key,
  node_cat_key,
  cast(datetime_cr as ehfnd_datetime_cr preserving type ) AS datetime_cr,
  user_id_cr,
  cast(datetime_ch as ehfnd_datetime_ch preserving type ) AS datetime_ch,
  user_id_ch,
  language,
  text,
  text_normed,
  name_id
FROM ehfndd_lisu_name AS lisnd
;