<?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: How to create dropdown list for custom remote function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dropdown-list-for-custom-remote-function-module/m-p/8343318#M1639313</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not possible directly f4 values in a fm.Please create a screen and keep all the buttons and update the custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Nov 2011 10:47:49 GMT</pubDate>
    <dc:creator>madhu_vadlamani</dc:creator>
    <dc:date>2011-11-23T10:47:49Z</dc:date>
    <item>
      <title>How to create dropdown list for custom remote function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dropdown-list-for-custom-remote-function-module/m-p/8343317#M1639312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ,&lt;/P&gt;&lt;P&gt;       I created a custom remote function module for a ztable.table having four fields.But now the requirement is to maintain the dropdown list for input parameter .&lt;/P&gt;&lt;P&gt;For eg: I maintain Input parameter as action.For that Action we have to maintain a dropdown list(display,insert,update and delete  values ) in function module.Is it possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2011 10:09:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dropdown-list-for-custom-remote-function-module/m-p/8343317#M1639312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-23T10:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to create dropdown list for custom remote function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dropdown-list-for-custom-remote-function-module/m-p/8343318#M1639313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not possible directly f4 values in a fm.Please create a screen and keep all the buttons and update the custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2011 10:47:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dropdown-list-for-custom-remote-function-module/m-p/8343318#M1639313</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-11-23T10:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create dropdown list for custom remote function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dropdown-list-for-custom-remote-function-module/m-p/8343319#M1639314</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;Try using &lt;STRONG&gt;POPUP_GET_VALUES&lt;/STRONG&gt; function module in the begining of the Function module this gives a POP to provide a value to you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this you can provide a value &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the import parameters of this Function module if it has COMBOBOX as parameter ( I dont have SAP access at this point of time) you can pass X to it so you get List box for the following fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a domain to field and assing fixed values to it and use it in any table(As this works with only existing tables)&lt;/P&gt;&lt;P&gt;refresh fields.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: fields LIKE SVAL OCCURS 0.

fields-tabname = 'MAKT'.
FILEDS-FIELDNAME = 'MAKTX'.
APPEND FIELDS.
 
CALL FUNCTION 'POPUP_GET_VALUES'  " Try copying this in a Test program and execute 
        EXPORTING
          POPUP_TITLE  = 'Enter Mail Id here'
          START_COLUMN = '5'
          START_ROW    = '5'
        IMPORTING 
          RETURNCODE   = SRETURN
        TABLES&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;          FIELDS       = FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Nov 23, 2011 9:50 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2011 11:12:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-dropdown-list-for-custom-remote-function-module/m-p/8343319#M1639314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-23T11:12:43Z</dc:date>
    </item>
  </channel>
</rss>

