P_PostingProcedureTypeVHT

DDL: P_POSTINGPROCEDURETYPEVHT SQL: PPSTNGPROCTYPET Type: view BASIC

P_PostingProcedureTypeVHT is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 9 fields with key fields ReprocRuleDomName, ReprocgRulePostgProcedureType, Language, Pos2, Pos3. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..*] P_PostingProcedureType _ProcedureType $projection.ReprocgRulePostgProcedureType = _ProcedureType.ReprocgRulePostgProcedureType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PPSTNGPROCTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
Search.searchable true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ReprocRuleDomName domname Domain
KEY ReprocgRulePostgProcedureType domvalue_l Lower Value
KEY Language ddlanguage Lang.
KEY Pos2 as4local Activation State
KEY Pos3 valpos Value key
KEY Pos4 as4vers Version
PostgProcedureTypeName ddtext Short text
_Language _Language
_ProcedureType _ProcedureType

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_PostingProcedureTypeVHT.
-- 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: PPSTNGPROCTYPET

CREATE VIEW P_PostingProcedureTypeVHT AS
SELECT
  domname AS ReprocRuleDomName,
  domvalue_l AS ReprocgRulePostgProcedureType,
  ddlanguage AS Language,
  as4local AS Pos2,
  valpos AS Pos3,
  as4vers AS Pos4,
  ddtext AS PostgProcedureTypeName
FROM dd07t
LEFT OUTER JOIN P_PostingProcedureType AS _ProcedureType ON ReprocgRulePostgProcedureType = _ProcedureType.ReprocgRulePostgProcedureType  -- association [0..*]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;