P_RespyMgmtTeamOrgUnitDesc

DDL: P_RESPYMGMTTEAMORGUNITDESC SQL: PRSMTMORGUNTDESC Type: view BASIC

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

Data Sources (1)

SourceAliasJoin Type
hrt1002 Text left_outer

Annotations (10)

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

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ObjectID objid Work Center
KEY LanguageKey langu Primary lang.
ObjectType otype Type of Val.
TableReference OrgUnitDescription 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_RespyMgmtTeamOrgUnitDesc.
-- 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: PRSMTMORGUNTDESC

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