<?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: Select-Options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124944#M109998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, why do you need to put all that code when you can just use T513S to get the Jobs?? I feel there is no need to build a F4 logic  in this case..&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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Feb 2006 17:57:46 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2006-02-23T17:57:46Z</dc:date>
    <item>
      <title>Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124937#M109991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  In my program I am declaring as following,&lt;/P&gt;&lt;P&gt;select-options: s_job for hrp1000-objid.&lt;/P&gt;&lt;P&gt;After I run the program I hit F4 I am getting all the Object Types, I want only the object type C which is for job.So can you guys let me know how to filter or populate my desired values.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124937#M109991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T17:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124938#M109992</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;SELECT-OPTIONS: s_job for hrp1000-objid&lt;/P&gt;&lt;P&gt;                       MATCHCODE OBJECT Z_objid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Z_OBJid : is user defind search help , develope this search help based on user defined database view z_view.in database view give the object type as C. then in F4 you will get the required values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laxman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:38:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124938#M109992</guid>
      <dc:creator>Laxmana_Appana_</dc:creator>
      <dc:date>2006-02-23T17:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124939#M109993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can do this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN on value request for s_job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select objecttype from ztab where objecttype = 'C'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:38:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124939#M109993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T17:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124940#M109994</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;you need to do some coding work..&lt;/P&gt;&lt;P&gt;you need to call the below FM &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;at selection-screen on value request for s_job.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;F4IF_INT_TABLE_VALUE_REQUEST&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass your own values with objet type C.&lt;/P&gt;&lt;P&gt;select the data for object type c, and show them as search help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124940#M109994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T17:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124941#M109995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to handle the F4 in your program.  You can do something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0003.

tables: hrp1000.



data: begin of iplogi occurs 0,
      plvar type plogi-plvar,
      otype  type plogi-otype,
      objid  type plogi-objid,
      end of iplogi.

select-options: s_job for hrp1000-objid.


initialization.

  select * from plogi into corresponding fields of table iplogi
           where otype = 'C'.

at selection-screen on value-request for s_job-low.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield    = 'OBJID'
            dynprofield = 'S_JOB'
            dynpprog    = sy-cprog
            dynpnr      = sy-dynnr
            value_org   = 'S'
       tables
            value_tab   = iplogi.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:42:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124941#M109995</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-23T17:42:35Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124942#M109996</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;Replace  it with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_job for T513S-STELL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:43:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124942#M109996</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-02-23T17:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124943#M109997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;     I appreciate your time and effort, you read my mind.&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:56:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124943#M109997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T17:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124944#M109998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, why do you need to put all that code when you can just use T513S to get the Jobs?? I feel there is no need to build a F4 logic  in this case..&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;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:57:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124944#M109998</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2006-02-23T17:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124945#M109999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Suresh,&lt;/P&gt;&lt;P&gt;       You are right for this scenario there is no need to build the F4 logic for now, what Richie hs done is also right I can use this logic in future.Thanks for the input.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 18:06:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/1124945#M109999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T18:06:27Z</dc:date>
    </item>
  </channel>
</rss>

