<?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: Popup check box screen for fields selection using user structure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295735#M156716</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try FM REUSE_ALV_POPUP_TO_SELECT.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 May 2006 12:15:54 GMT</pubDate>
    <dc:creator>LucianoBentiveg</dc:creator>
    <dc:date>2006-05-08T12:15:54Z</dc:date>
    <item>
      <title>Popup check box screen for fields selection using user structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295734#M156715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;could you please help how can i get the popup screen in the program when the user wants to choose the wanted fields.&lt;/P&gt;&lt;P&gt;for ex: in the table after clicking the contents display the selection fields will be displayed. there in setting -&amp;gt; list format-&amp;gt;choose, we can check the fields wanted to be displayed. The same functionality i needed with my own structure. can any one help me in this, it is urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankyou.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 12:11:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295734#M156715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T12:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Popup check box screen for fields selection using user structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295735#M156716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try FM REUSE_ALV_POPUP_TO_SELECT.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 12:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295735#M156716</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-05-08T12:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Popup check box screen for fields selection using user structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295736#M156717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Ashok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_FIELDS-TABNAME = 'VBAP'.&lt;/P&gt;&lt;P&gt;S_FIELDS-FIELDNAME = 'ARKTX'.&lt;/P&gt;&lt;P&gt;S_FIELDS-VALUE = WC_VALUE.&lt;/P&gt;&lt;P&gt;APPEND S_FIELDS.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_GET_VALUES'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUE_CHECK        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    POPUP_TITLE           = 'Locate Material'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_COLUMN          = '5'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_ROW             = '5'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RETURNCODE            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    FIELDS                = S_FIELDS&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   ERROR_IN_FIELDS       = 1&lt;/P&gt;&lt;P&gt;   OTHERS                = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE S_FIELDS  INDEX 1.&lt;/P&gt;&lt;P&gt;WC_VALUE = S_FIELDS-VALUE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Srenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 12:20:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295736#M156717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T12:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Popup check box screen for fields selection using user structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295737#M156718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashok,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try with searching an FM having keywords "popup&lt;EM&gt;table&lt;/EM&gt;diaplay"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 12:22:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295737#M156718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T12:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Popup check box screen for fields selection using user structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295738#M156719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is this code useful for selecting ( checking) multiple fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 12:25:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295738#M156719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-08T12:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Popup check box screen for fields selection using user structure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295739#M156720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RS_DATABROWSE_FIELDSELECT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 May 2006 12:48:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/popup-check-box-screen-for-fields-selection-using-user-structure/m-p/1295739#M156720</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-05-08T12:48:04Z</dc:date>
    </item>
  </channel>
</rss>

