<?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: Screen painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308066#M160761</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can assign search help in the screen painter for the field. Go to screen painter click on the field which should have this feature and goto dict attribute, here in searc help u can connect. &lt;/P&gt;&lt;P&gt;Alternatively if you are building ur custom program then u can use event PROCESS ON VALUE-REQUEST and process the search help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Jun 2006 06:47:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-05T06:47:06Z</dc:date>
    <item>
      <title>Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308065#M160760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to get the dropdown list values in Screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MARK K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 06:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308065#M160760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T06:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308066#M160761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can assign search help in the screen painter for the field. Go to screen painter click on the field which should have this feature and goto dict attribute, here in searc help u can connect. &lt;/P&gt;&lt;P&gt;Alternatively if you are building ur custom program then u can use event PROCESS ON VALUE-REQUEST and process the search help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 06:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308066#M160761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T06:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308067#M160762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;check this demo program&lt;/P&gt;&lt;P&gt;DEMO_DROPDOWN_LIST_BOX&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_DROPDOWN_LISTBOX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;latheesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 06:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308067#M160762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T06:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308068#M160763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Go to screen painter SE51  click on the field which should have this feature and goto dict attribute, here in search help u can connect. Other wise Create Search Help in SE11 assignt it to Screen name field.&lt;/P&gt;&lt;P&gt;Alternatively if you are building ur custom program then u can use event PROCESS ON VALUE-REQUEST and process the search help.&lt;/P&gt;&lt;P&gt;Otherwise...&lt;/P&gt;&lt;P&gt;call&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF it_zmto_reason OCCURS 0,&lt;/P&gt;&lt;P&gt;        reason LIKE zmto_reason-reason ,&lt;/P&gt;&lt;P&gt;        descr LIKE zmto_reason-descr,&lt;/P&gt;&lt;P&gt;       END OF it_zmto_reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA : iddshretval LIKE ddshretval OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;Read  ur  Table into internal table...&lt;/P&gt;&lt;P&gt;  SELECT reason descr FROM zmto_reason&lt;/P&gt;&lt;P&gt;         INTO TABLE it_zmto_reason&lt;/P&gt;&lt;P&gt;        WHERE doctype = 'DIN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for which sel field ur want call FM...&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            retfield    = 'REASON'&lt;/P&gt;&lt;P&gt;            dynpprog    = 'SAPMZDIN'&lt;/P&gt;&lt;P&gt;            dynpnr      = sy-dynnr&lt;/P&gt;&lt;P&gt;            dynprofield = 'IDINDTL-REASONCD'&lt;/P&gt;&lt;P&gt;            value_org   = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            value_tab   = it_zmto_reason&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           RETURN_TAB  = IDDSHRETVAL&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;Hope it would solve ur purpose...&lt;/P&gt;&lt;P&gt;Kindly rewards points....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 07:01:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/1308068#M160763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T07:01:30Z</dc:date>
    </item>
  </channel>
</rss>

