<?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 Question reg. selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676576#M298367</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am writing a report. On selection screen, I have a field for Sales order (vbeln) from a custom table zsales.  Now when the user selects this field on selection screen and press F4, he/she should be able to select the salesorders from the table zsales.&lt;/P&gt;&lt;P&gt;I wrote:&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_vbeln FOR zsales-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But on the output, when I press F4, I am still not getting any input help. What change can you suggest?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your input.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Nov 2006 16:05:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-16T16:05:17Z</dc:date>
    <item>
      <title>Question reg. selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676576#M298367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am writing a report. On selection screen, I have a field for Sales order (vbeln) from a custom table zsales.  Now when the user selects this field on selection screen and press F4, he/she should be able to select the salesorders from the table zsales.&lt;/P&gt;&lt;P&gt;I wrote:&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_vbeln FOR zsales-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But on the output, when I press F4, I am still not getting any input help. What change can you suggest?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your input.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Krishen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676576#M298367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T16:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Question reg. selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676577#M298368</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;  In your Z-table probably u did'nt give any value table ...&lt;/P&gt;&lt;P&gt; check for this in your table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:09:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676577#M298368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T16:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: Question reg. selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676578#M298369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001 .

tables: zsales

data: begin of izsales occurs 0,
       vbeln type vbak-vbeln,
      end of izsales.

select-options s_vbeln for zsales-vbeln.

initialization.

  select vbeln into table izsales from zsales.

  sort izsales ascending by vbeln.
  delete adjacent duplicates from izsales comparing vbeln.

at selection-screen on value-request for s_vbeln-low.

  call function 'F4IF_INT_TABLE_VALUE_REQUEST'
       exporting
            retfield    = 'VBELN'
            dynprofield = 'S_VBELN'
            dynpprog    = sy-cprog
            dynpnr      = sy-dynnr
            value_org   = 'S'
       tables
            value_tab   = izsales.

start-of-selection.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&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, 16 Nov 2006 16:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676578#M298369</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-11-16T16:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Question reg. selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676579#M298370</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;In the table use the check table VBAK for the field vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a select-options for the field VBAK-VBELN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: VBAK.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_vbeln FOR &amp;lt;b&amp;gt;VBAK-VBELN&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:14:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676579#M298370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T16:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Question reg. selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676580#M298371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out if you specified the Check table (i.e., VBUK for vbeln) in the Table's(ZSALES) Entry Help/Check  tab  through se11. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:18:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676580#M298371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T16:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Question reg. selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676581#M298372</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;Have you assign the foreign keys for field VBELN in ZSALES table? &lt;/P&gt;&lt;P&gt;If you have not you can select the proposed system one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:23:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676581#M298372</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2006-11-16T16:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Question reg. selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676582#M298373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krish ,&lt;/P&gt;&lt;P&gt;May be you haven't declared vheln as a key field in the Custom table . if you declare it as a key field search help will come automatically . other wise create a search help in SE11 and assign this search help to the parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax : select-option : s_vbeln for zsales-vbeln MATCHCODE OBJECT search_help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Prithvi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 16:26:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676582#M298373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T16:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Question reg. selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676583#M298374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Krishen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether you have given check table for ur vbeln in zsales table.&lt;/P&gt;&lt;P&gt;it check table is there, then only you get the f4 help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 17:09:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-reg-selection-screen/m-p/1676583#M298374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T17:09:05Z</dc:date>
    </item>
  </channel>
</rss>

