<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Domain Value - Drop down - filter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/domain-value-drop-down-filter/m-p/11958399#M1967039</link>
    <description>&lt;P&gt;There are many answers in the forum. Search "VRM_SET_VALUES".&lt;/P&gt;</description>
    <pubDate>Wed, 01 May 2019 08:07:47 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2019-05-01T08:07:47Z</dc:date>
    <item>
      <title>Domain Value - Drop down - filter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/domain-value-drop-down-filter/m-p/11958398#M1967038</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
  &lt;P&gt;We have created one domain - with valid values and linked it to a screen field. (In module pool Screen). - (Not webdynpro)&lt;/P&gt;
  &lt;P&gt;We want to filter the domain dropdown values based on some conditions.&lt;/P&gt;
  &lt;P&gt;Kindly help , I searched it and mostly find solution for webdynpro screens . I want is core abap module pool screen.&lt;/P&gt;
  &lt;P&gt;Kindly help&lt;/P&gt;
  &lt;P&gt;REgards,&lt;/P&gt;
  &lt;P&gt;Venkat&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 06:53:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/domain-value-drop-down-filter/m-p/11958398#M1967038</guid>
      <dc:creator>venkateswaran_k</dc:creator>
      <dc:date>2019-05-01T06:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Domain Value - Drop down - filter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/domain-value-drop-down-filter/m-p/11958399#M1967039</link>
      <description>&lt;P&gt;There are many answers in the forum. Search "VRM_SET_VALUES".&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 08:07:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/domain-value-drop-down-filter/m-p/11958399#M1967039</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-05-01T08:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Domain Value - Drop down - filter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/domain-value-drop-down-filter/m-p/11958400#M1967040</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you have to write the code PAI&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PROCESS AFTER INPUT.

PROCESS ON VALUE-REQUEST.

FIELD ztable-matl_pricing_grp MODULE f4_mat_orc_grp. "module name f4_mat_orc_grp


MODULE f4_mat_orc_grp INPUT.

  DATA : BEGIN OF lt_matpcgrp OCCURS 0,
           matl_pricing_grp LIKE zprice-matl_pricing_grp,
           vtext            LIKE t178t-vtext,
         END OF lt_matpcgrp.



  REFRESH: lt_matpcgrp.

  CLEAR lt_matpcgrp.



  SELECT *
    INTO TABLE lt_matpcgrp
    FROM zprice.

   



 

*Call Function to give F4

  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

    EXPORTING

      retfield    = 'MATL_PRICING_GRP'

      dynpprog    = 'PROGRAM_NAME'

      dynpnr      = '0212'  "Screen No

      dynprofield = 'MATL_PRICING_GRP'  "Out Put field Name

      value_org   = 'S'

    TABLES

      value_tab   = lt_matpcgrp.

ENDMODULE.                    "f4_mat_orc_grp

* in the screen field- property will be set "Possible entry" tick and "foreign key check" &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 May 2019 20:03:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/domain-value-drop-down-filter/m-p/11958400#M1967040</guid>
      <dc:creator>Nawanandana</dc:creator>
      <dc:date>2019-05-02T20:03:36Z</dc:date>
    </item>
  </channel>
</rss>

