<?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 ISSUE REGARDING FUNCTION MODULE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128408#M447121</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;&lt;/P&gt;&lt;P&gt;is there any Function module which displays a pop up screen with internal table data along with confirmation buttons ( Yes, NO and Cancel).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is no such Function Module please provide me the steps to create a function module for the above scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I need to call this pop up window in a BADI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;urgent ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanking you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2007 18:16:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-16T18:16:59Z</dc:date>
    <item>
      <title>ISSUE REGARDING FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128408#M447121</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;&lt;/P&gt;&lt;P&gt;is there any Function module which displays a pop up screen with internal table data along with confirmation buttons ( Yes, NO and Cancel).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is no such Function Module please provide me the steps to create a function module for the above scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I need to call this pop up window in a BADI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;urgent ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanking you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 18:16:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128408#M447121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T18:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: ISSUE REGARDING FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128409#M447122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not very sure about whether any function module for this requirement.&lt;/P&gt;&lt;P&gt;But you can create your own screen with table as internal table and call this in yoru BADI, after passing the data to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 18:30:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128409#M447122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T18:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: ISSUE REGARDING FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128410#M447123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at POPUP_WITH_TABLE_DISPLAY &amp;amp; create a custom function along the same lines if it isn't suitable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 18:32:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128410#M447123</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-04-16T18:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: ISSUE REGARDING FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128411#M447124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use the Function module POPUP_WITH_TABLE_DISPLAY to display a table contents in a Popup&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR SEL_NBA-LOW. &lt;/P&gt;&lt;P&gt;  PERFORM ZNEW_VALUE_HELP_NBA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM ZNEW_VALUE_HELP_NBA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT DISTINCT ZBAREA FROM ZDIVNBABU INTO TABLE ITAB_NBA. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY' &lt;/P&gt;&lt;P&gt;       EXPORTING &lt;/P&gt;&lt;P&gt;            ENDPOS_COL   = 30 &lt;/P&gt;&lt;P&gt;            ENDPOS_ROW   = 40 &lt;/P&gt;&lt;P&gt;            STARTPOS_COL = 20 &lt;/P&gt;&lt;P&gt;            STARTPOS_ROW = 30 &lt;/P&gt;&lt;P&gt;            TITLETEXT    = 'Please Choose Your Entry' &lt;/P&gt;&lt;P&gt;       IMPORTING &lt;/P&gt;&lt;P&gt;            CHOISE       = COUNTS &lt;/P&gt;&lt;P&gt;       TABLES &lt;/P&gt;&lt;P&gt;            VALUETAB     = ITAB_NBA &lt;/P&gt;&lt;P&gt;       EXCEPTIONS &lt;/P&gt;&lt;P&gt;            BREAK_OFF    = 1 &lt;/P&gt;&lt;P&gt;            OTHERS       = 2. &lt;/P&gt;&lt;P&gt;  IF COUNTS NE 0. &lt;/P&gt;&lt;P&gt;    READ TABLE ITAB_NBA INDEX COUNTS. &lt;/P&gt;&lt;P&gt;    SEL_NBA-LOW = ITAB_NBA-ZBAREA. &lt;/P&gt;&lt;P&gt;  ENDIF. &lt;/P&gt;&lt;P&gt;  CLEAR :ITAB_NBA,COUNTS.REFRESH:ITAB_NBA. &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                               " ZNEW_VALUE_HELP_NBA &lt;/P&gt;&lt;P&gt;&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 18:40:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128411#M447124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T18:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: ISSUE REGARDING FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128412#M447125</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 can use FMs: POPUP_WITH_TABLE_DISPLAY or F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 19:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128412#M447125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T19:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: ISSUE REGARDING FUNCTION MODULE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128413#M447126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please see if this will work for you: POPUP_WITH_TABLE_DISPLAY_OK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt; - April King&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 19:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-regarding-function-module/m-p/2128413#M447126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T19:48:20Z</dc:date>
    </item>
  </channel>
</rss>

