<?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: hi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247592#M775232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;This may help ful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP POP-UP Window  &lt;/P&gt;&lt;P&gt;You had 1 button in the application toolbar of the selection screen, when you click that button, a pop-up window should be displayed containing 3 fields. the data to be displayed depends on the values entered by the user. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) How to get the pop-up window? Is there any func. module is there? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) and how to get the fields in the pop-up window? if any func. module is there , what are the parameters to be passed? &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USE THIS fm POPUP_TO_DECIDE_INFO . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters required for this FM is the Text you require to display on the popup window.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two buttons automatically comes on this window a Tick and a x sign if you click tick the output varaible ANSWER is J else it is A . &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;See the below Example:  &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.                               " NEW_VALUE_HELP_NBA &lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;Sowjanya.B.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Jan 2008 04:27:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-08T04:27:22Z</dc:date>
    <item>
      <title>hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247589#M775229</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;&lt;/P&gt;&lt;P&gt;to get a pop up asking for permision to delete or modify a record.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 04:12:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247589#M775229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T04:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247590#M775230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;titlebar = 'Warning'&lt;/P&gt;&lt;P&gt;text_question = 'Your Question here'&lt;/P&gt;&lt;P&gt;text_button_1 = 'Yes'&lt;/P&gt;&lt;P&gt;icon_button_1 = ' '&lt;/P&gt;&lt;P&gt;text_button_2 = 'No'&lt;/P&gt;&lt;P&gt;icon_button_2 = ' '&lt;/P&gt;&lt;P&gt;default_button = '1'&lt;/P&gt;&lt;P&gt;start_column = 25&lt;/P&gt;&lt;P&gt;start_row = 6&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;answer = lv_case&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;text_not_found = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 04:16:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247590#M775230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T04:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247591#M775231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Data: ch1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   TITLEBAR                    = 'Confirm of DB Action '&lt;/P&gt;&lt;P&gt;   TEXT_QUESTION               = 'Do you want to perform?'&lt;/P&gt;&lt;P&gt;   TEXT_BUTTON_1               = 'Ja'(001)&lt;/P&gt;&lt;P&gt;   TEXT_BUTTON_2               = 'Nein'(002)&lt;/P&gt;&lt;P&gt;   DEFAULT_BUTTON              = '1'&lt;/P&gt;&lt;P&gt;   DISPLAY_CANCEL_BUTTON       = 'X'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   ANSWER                      = ch1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Ch1 = 1 " means OK.&lt;/P&gt;&lt;P&gt;If ch1 = 2 " means No.&lt;/P&gt;&lt;P&gt;If ch1 = A "means cancel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 04:17:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247591#M775231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T04:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247592#M775232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;This may help ful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP POP-UP Window  &lt;/P&gt;&lt;P&gt;You had 1 button in the application toolbar of the selection screen, when you click that button, a pop-up window should be displayed containing 3 fields. the data to be displayed depends on the values entered by the user. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) How to get the pop-up window? Is there any func. module is there? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) and how to get the fields in the pop-up window? if any func. module is there , what are the parameters to be passed? &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USE THIS fm POPUP_TO_DECIDE_INFO . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters required for this FM is the Text you require to display on the popup window.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two buttons automatically comes on this window a Tick and a x sign if you click tick the output varaible ANSWER is J else it is A . &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;See the below Example:  &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.                               " NEW_VALUE_HELP_NBA &lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;Sowjanya.B.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 04:27:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247592#M775232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T04:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247593#M775233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt; in the pop up what ever row i selected for deletion or modify msut display in pop up too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 04:30:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247593#M775233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T04:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247594#M775234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            text_question  = text-008&lt;/P&gt;&lt;P&gt;            text_button_1  = 'YES'&lt;/P&gt;&lt;P&gt;            text_button_2  = 'NO'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            answer         = l_answer&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            text_not_found = 1&lt;/P&gt;&lt;P&gt;            OTHERS         = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF l_answer = '1'.  " when Yes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSE.                "  when No&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 04:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247594#M775234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T04:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247595#M775235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get a pop up use FM&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'POPUP_TO_CONFIRM'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          TITLEBAR             =     'Confirm Posting'&lt;/P&gt;&lt;P&gt;          TEXT_QUESTION  =     'Continue Posting?'&lt;/P&gt;&lt;P&gt;          TEXT_BUTTON_1  =    'Yes'   " continue&lt;/P&gt;&lt;P&gt;          TEXT_BUTTON_2  =    'No'     " dis continue&lt;/P&gt;&lt;P&gt;          DISPLAY_CANCEL_BUTTON = X  " for delete or cancel&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          ANSWER         = G_ANSWER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is helpfull pls do rewrd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srimanta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 04:33:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/3247595#M775235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T04:33:41Z</dc:date>
    </item>
  </channel>
</rss>

