P_RespyMgmtTeamDescription

DDL: P_RESPYMGMTTEAMDESCRIPTION SQL: PTEAMHDRDESC Type: view BASIC

P_RespyMgmtTeamDescription is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (hrt1002, hrp1002) and exposes 6 fields with key fields ObjectID, LanguageKey.

Data Sources (2)

SourceAliasJoin Type
hrt1002 _Text left_outer
hrp1002 TeamDescription from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PTEAMHDRDESC view
VDM.private true view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED 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 (6)

KeyFieldSource TableSource FieldDescription
KEY ObjectID objid Work Center
KEY LanguageKey langu Primary lang.
ObjectType otype Type of Val.
TableReference hrp1002 tabnr Reference no.
SequenceNumber hrt1002 tabseqnr Sequence number
tline hrt1002 tline Line

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_RespyMgmtTeamDescription.
-- 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: PTEAMHDRDESC

CREATE VIEW P_RespyMgmtTeamDescription AS
SELECT
  objid AS ObjectID,
  langu AS LanguageKey,
  otype AS ObjectType,
  TeamDescription.tabnr AS TableReference,
  _Text.tabseqnr AS SequenceNumber,
  _Text.tline AS tline
FROM hrp1002 AS TeamDescription
LEFT OUTER JOIN hrt1002 AS _Text ON /* join condition not captured in parsed metadata */
;