P_SU2X_WBO_USOBKEY

DDL: P_SU2X_WBO_USOBKEY SQL: PSU2X_WBO_UKEY Type: view

Objektkatalogdaten zu USOBKEY ermitteln

P_SU2X_WBO_USOBKEY is a CDS View that provides data about "Objektkatalogdaten zu USOBKEY ermitteln" in SAP S/4HANA. It reads from 3 data sources (df14l, tdevc, tadir) and exposes 3 fields with key field obj_name.

Data Sources (3)

SourceAliasJoin Type
df14l df14l left_outer
tdevc tdevc left_outer
tadir wbo from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PSU2X_WBO_UKEY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Objektkatalogdaten zu USOBKEY ermitteln view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY obj_name tadir obj_name Object Name
su2x_dlvunit tdevc dlvunit Softw. Comp.
su2x_author tadir author User Name

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_SU2X_WBO_USOBKEY.
-- 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: PSU2X_WBO_UKEY

CREATE VIEW P_SU2X_WBO_USOBKEY AS
SELECT
  wbo.obj_name AS obj_name,
  tdevc.dlvunit AS su2x_dlvunit,
  wbo.author AS su2x_author
FROM tadir AS wbo
LEFT OUTER JOIN tdevc ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN df14l ON /* join condition not captured in parsed metadata */
;