P_ConditionChangeReasonText

DDL: P_CONDITIONCHANGEREASONTEXT Type: view BASIC Package: VDM_SD_MD_CM

Reason Text for Changing Condition Record

P_ConditionChangeReasonText is a Basic CDS View that provides data about "Reason Text for Changing Condition Record" in SAP S/4HANA. It reads from 1 data source (cndn_chg_reasont) and exposes 5 fields with key fields Language, ConditionUsage, ConditionApplication, ConditionChangeReason. Part of development package VDM_SD_MD_CM.

Data Sources (1)

SourceAliasJoin Type
cndn_chg_reasont cndn_chg_reasont from

Annotations (7)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY ConditionUsage kvewe Usage
KEY ConditionApplication kappl Application
KEY ConditionChangeReason cndn_chgreason Cndn Change Reason
ConditionChangeReasonText text User Group

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_ConditionChangeReasonText.
-- 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.

CREATE VIEW P_ConditionChangeReasonText AS
SELECT
  spras AS Language,
  kvewe AS ConditionUsage,
  kappl AS ConditionApplication,
  cndn_chgreason AS ConditionChangeReason,
  text AS ConditionChangeReasonText
FROM cndn_chg_reasont
;