P_PropTreeValueAssType

DDL: P_PROPTREEVALUEASSTYPE Type: view BASIC

P_PropTreeValueAssType is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (tcg53) and exposes 3 fields with key field id.

Data Sources (1)

SourceAliasJoin Type
tcg53 PropertyTree from

Parameters (1)

NameTypeDefault
p_menid esemenid

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName PPRTRVALASSTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY id tcg53 id WorklistID
estcat ValueAssignmentType estcat Val. Asst Type
esttype ValueAssignmentType esttype Value Ass. Cat.

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_PropTreeValueAssType.
-- 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.
-- Parameters: p_menid : esemenid

CREATE VIEW P_PropTreeValueAssType AS
SELECT
  PropertyTree.id AS id,
  ValueAssignmentType.estcat AS estcat,
  ValueAssignmentType.esttype AS esttype
FROM tcg53 AS PropertyTree
;