Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

I_ProcmtHubFixedDiscountText

DDL: I_PROCMTHUBFIXEDDISCOUNTTEXT SQL: IPRMTHBFXDDSCTXT Type: view BASIC Package: APPL_CIM_WORKLIST

Procurement Hub Fixed Discount Text

I_ProcmtHubFixedDiscountText is a Basic CDS View that provides data about "Procurement Hub Fixed Discount Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Name, Language, DomainValue. Part of development package APPL_CIM_WORKLIST.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPRMTHBFXDDSCTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Procurement Hub Fixed Discount Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.status #DEPRECATED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Name domname Domain
KEY Language ddlanguage Lang.
KEY DomainValue domvalue_l Lower Value
DomainText ddtext Short text

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 I_ProcmtHubFixedDiscountText.
-- 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: IPRMTHBFXDDSCTXT

CREATE VIEW I_ProcmtHubFixedDiscountText AS
SELECT
  domname AS Name,
  ddlanguage AS Language,
  domvalue_l AS DomainValue,
  ddtext AS DomainText
FROM dd07t
;