<?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: selection table multiple entries in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616561#M276124</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyanka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There can be multiple intervals for the select option s_vbeln. So you will have to put the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seltab-selname = 'rg_vbeln'.&lt;/P&gt;&lt;P&gt;seltab-kind = 'S'.&lt;/P&gt;&lt;P&gt;seltab-sign = 'I'.&lt;/P&gt;&lt;P&gt;seltab-option = 'BT'.&lt;/P&gt;&lt;P&gt;loop at s_vbeln.&lt;/P&gt;&lt;P&gt;seltab-low = s_vbeln-low.&lt;/P&gt;&lt;P&gt;seltab-high = s_vbeln-high.&lt;/P&gt;&lt;P&gt;append seltab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Soorya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if helpul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Soorya Pillai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Sep 2006 20:43:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-19T20:43:19Z</dc:date>
    <item>
      <title>selection table multiple entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616559#M276122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to submit SD70AV3A to print billing document.&lt;/P&gt;&lt;P&gt;I am taking Doc no as select-options. Program should take in doc no, get all output type &amp;amp; transmission med for the doc no. Submitting works well if doc no is a parameter, if it is a range, it is only doig it for th elow field. I have a seltab like rsparams. &lt;/P&gt;&lt;P&gt;data: begin of seltab occurs 0.&lt;/P&gt;&lt;P&gt;include structure rsparams.&lt;/P&gt;&lt;P&gt;data: end of seltab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;select kschl nacha anzal dimme delet from nast into corresponding&lt;/P&gt;&lt;P&gt;fields&lt;/P&gt;&lt;P&gt;of itab where&lt;/P&gt;&lt;P&gt;objky in s_vbeln and KAPPL = 'V3'.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;sort itab by kschl.&lt;/P&gt;&lt;P&gt;read table itab index 1.&lt;/P&gt;&lt;P&gt;i_kschl = itab-kschl.&lt;/P&gt;&lt;P&gt;describe table itab lines n.&lt;/P&gt;&lt;P&gt;read table itab index n.&lt;/P&gt;&lt;P&gt;l_kschl = itab-kschl.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;seltab-selname = 'rg_vbeln'.&lt;/P&gt;&lt;P&gt;seltab-kind = 'S'.&lt;/P&gt;&lt;P&gt;seltab-sign = 'I'.&lt;/P&gt;&lt;P&gt;seltab-option = 'BT'.&lt;/P&gt;&lt;P&gt;seltab-low = s_vbeln-low.&lt;/P&gt;&lt;P&gt;seltab-high = s_vbeln-high.&lt;/P&gt;&lt;P&gt;append seltab.&lt;/P&gt;&lt;P&gt;seltab-selname = 'rg_kschl'.&lt;/P&gt;&lt;P&gt;seltab-kind = 'S'.&lt;/P&gt;&lt;P&gt;seltab-sign = 'I'.&lt;/P&gt;&lt;P&gt;seltab-option = 'BT'.&lt;/P&gt;&lt;P&gt;seltab-low = i_kschl.&lt;/P&gt;&lt;P&gt;seltab-high = l_kschl.&lt;/P&gt;&lt;P&gt;append seltab.&lt;/P&gt;&lt;P&gt;seltab-selname = 'rg_nacha'.&lt;/P&gt;&lt;P&gt;seltab-kind = 'S'.&lt;/P&gt;&lt;P&gt;seltab-sign = 'I'.&lt;/P&gt;&lt;P&gt;seltab-option = 'BT'.&lt;/P&gt;&lt;P&gt;seltab-low = '1'.&lt;/P&gt;&lt;P&gt;seltab-high = '8'.&lt;/P&gt;&lt;P&gt;append seltab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF reissue = 'X'.&lt;/P&gt;&lt;P&gt;SUBMIT SD70AV3A via selection-screen&lt;/P&gt;&lt;P&gt;with selection-table seltab.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;Any suggestion is appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 20:32:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616559#M276122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T20:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: selection table multiple entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616560#M276123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
seltab-low = s_vbeln-low.
seltab-high = s_vbeln-high.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
seltab-low = s_vbeln[1]-low.
seltab-high = s_vbeln[1]-high.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should probably put this inside a loop to ensure you get all values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 20:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616560#M276123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T20:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: selection table multiple entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616561#M276124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priyanka,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There can be multiple intervals for the select option s_vbeln. So you will have to put the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seltab-selname = 'rg_vbeln'.&lt;/P&gt;&lt;P&gt;seltab-kind = 'S'.&lt;/P&gt;&lt;P&gt;seltab-sign = 'I'.&lt;/P&gt;&lt;P&gt;seltab-option = 'BT'.&lt;/P&gt;&lt;P&gt;loop at s_vbeln.&lt;/P&gt;&lt;P&gt;seltab-low = s_vbeln-low.&lt;/P&gt;&lt;P&gt;seltab-high = s_vbeln-high.&lt;/P&gt;&lt;P&gt;append seltab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Soorya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if helpul&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Soorya Pillai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 20:43:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616561#M276124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T20:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: selection table multiple entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616562#M276125</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;When I've submitted another programs and passed a select-option i've done it like this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF reissue = 'X'.&lt;/P&gt;&lt;P&gt;SUBMIT SD70AV3A via selection-screen&lt;/P&gt;&lt;P&gt;with selection-table &amp;lt;b&amp;gt;IN&amp;lt;/b&amp;gt; seltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 20:44:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616562#M276125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T20:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: selection table multiple entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616563#M276126</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;  Just want to suggest that you might find inconsistency&lt;/P&gt;&lt;P&gt;if user selects multiple single billing documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Try if the below code works for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select-options: s_vbeln for vbrk-vbeln.
data: l_kschl1 like nast-kschl,
      l_kschl2 like nast-kschl,
      l_vbeln1 like nast-objky,
      l_vbeln2 like nast-objky.

select min( objky ) max( objky ) 
       min( kschl ) max( kschl )
  into (l_vbeln1, l_vbeln2, l_kschl1, l_kschl2)
  from nast  
  where objky in s_vbeln 
   and  KAPPL = 'V3'.

write:/ l_vbeln1, l_vbeln2.
write:/ l_kschl1, l_kschl2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Sep 2006 03:41:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616563#M276126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-20T03:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: selection table multiple entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616564#M276127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After creating the PO with BAPI_PO_CREATE1 the order has to be automatically confirmed by updating the PO with confirmation line 'AB'.For this i have to call the FM ME_CONFIRMATION_UPDATE_AVIS.I donno what values i have to pass for this FM.The input for this is the table with structure same as UEKES. There are two fields in that quantity as per vendor confirmation and quantity reduced ,i dont understand from where to take these values. Are there any fields in the BAPI output tables which gives these values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Oct 2006 17:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-table-multiple-entries/m-p/1616564#M276127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-13T17:26:20Z</dc:date>
    </item>
  </channel>
</rss>

