<?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: Multiple selection for Payment Methods. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791315#M340435</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys ,&lt;/P&gt;&lt;P&gt;But how can I make all the values selected in the ITAB into a variable For Example:&lt;/P&gt;&lt;P&gt;ITAB output =&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;I want it in a variable i.e.&lt;/P&gt;&lt;P&gt;payment methods:&amp;lt;u&amp;gt;abc&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Dec 2006 05:29:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-07T05:29:35Z</dc:date>
    <item>
      <title>Multiple selection for Payment Methods.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791311#M340431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: V_T042E.    
DATA: s_zwels_con(3).
SELECT-OPTIONS: s_zwels FOR V_T042E-ZLSCH NO INTERVALS,"payment methods

********************   I N I T I A L I Z A T I O N   *******************
INITIALIZATION.

***************   A T   S E L E C T I O N   S C R E E N   **************
AT SELECTION-SCREEN.
CONCATENATE s_zwels INTO s_zwels_con SEPARATED BY SPACE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code I tried for multiple selection of Payment Methods.This doesnot display the multiple values selected on selection screen.&lt;/P&gt;&lt;P&gt;Later in program these values will be reflected in Payment Methods in BDC recording using F110 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this code is giving an error :&lt;/P&gt;&lt;P&gt;Unable to interpret "S_ZWELS". Possible causes of error: Incorrect spelling or comma error.	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please can any help in rectifying the current method or any other method of mutliple selection for Payment methods on selection screen .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 04:25:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791311#M340431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T04:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection for Payment Methods.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791312#M340432</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;types : begin of ty,&lt;/P&gt;&lt;P&gt;           zwels_con type v_t042e-zlsch,&lt;/P&gt;&lt;P&gt;           end of ty.&lt;/P&gt;&lt;P&gt;data itab type standard table of ty.&lt;/P&gt;&lt;P&gt;data wa type ty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_zwels.&lt;/P&gt;&lt;P&gt;wa-zwels_con- = s_zwels-low.&lt;/P&gt;&lt;P&gt;append wa to itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now your itab contain the multiple values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 04:30:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791312#M340432</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-12-07T04:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection for Payment Methods.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791313#M340433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u have to put like this only&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SELECT-OPTIONS: s_zwels FOR V_T042E-ZLSCH NO INTERVALS &lt;/P&gt;&lt;P&gt;"payment methods&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here u have to loop then only u will get desired o/p&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_zwels.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but its not the complete solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 04:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791313#M340433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T04:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection for Payment Methods.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791314#M340434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try to use single field of s_zwels not the entire work area.&lt;/P&gt;&lt;P&gt;and loop into the s_zwels.&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 04:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791314#M340434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T04:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection for Payment Methods.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791315#M340435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys ,&lt;/P&gt;&lt;P&gt;But how can I make all the values selected in the ITAB into a variable For Example:&lt;/P&gt;&lt;P&gt;ITAB output =&lt;/P&gt;&lt;P&gt;a&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;I want it in a variable i.e.&lt;/P&gt;&lt;P&gt;payment methods:&amp;lt;u&amp;gt;abc&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 05:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791315#M340435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-07T05:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple selection for Payment Methods.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791316#M340436</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;data v1(200).&lt;/P&gt;&lt;P&gt;v1 =''.&lt;/P&gt;&lt;P&gt;Loop at itab into wa.&lt;/P&gt;&lt;P&gt;concatenate v1 wa-zwels_con into v1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;write v1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points by clicking the star on the left of reply,if it helps.If your problem is solved,kindly close the thread by clicking blue star button against the reply which helped you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Dec 2006 05:39:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-selection-for-payment-methods/m-p/1791316#M340436</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-12-07T05:39:46Z</dc:date>
    </item>
  </channel>
</rss>

