<?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: static popup in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048655#M721720</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for nice code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Nov 2007 16:10:25 GMT</pubDate>
    <dc:creator>former_member194669</dc:creator>
    <dc:date>2007-11-08T16:10:25Z</dc:date>
    <item>
      <title>static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048646#M721711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create a static popup, meaning, a popup that can remain/be reduced, etc.. as we continue in the window from which it was started... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I accomplish this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 12:49:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048646#M721711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T12:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048647#M721712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what you want is a GUI control - the only way of popup that does not disable the rest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this form to display the contents of any (text) table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* ...
data:
  go_dialogbox                            type ref to cl_gui_dialogbox_container,
  go_editor                               type ref to cl_gui_textedit.

* ...

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  showcontent
*&amp;amp;---------------------------------------------------------------------*
*       Anzeige im Control
*----------------------------------------------------------------------*
form showcontent  using    pt_data        type table.
  if go_dialogbox is initial.
    create object go_dialogbox
       exporting
         width                            = 800
         height                           = 300
         top                              = 50
         left                             = 100
         caption
           = 'Close Window to end Display'.
    set handler lcl_event_receiver=&amp;gt;close for go_dialogbox.
  endif." go_dialogbox is initial.

  if go_editor is initial.
    create object go_editor
      exporting
        parent                            = go_dialogbox
        wordwrap_mode                     =
cl_gui_textedit=&amp;gt;wordwrap_off
        wordwrap_to_linebreak_mode        = cl_gui_textedit=&amp;gt;true.
  endif.
  call method go_editor-&amp;gt;set_toolbar_mode
    exporting
      toolbar_mode                        = go_editor-&amp;gt;true.

  call method go_editor-&amp;gt;set_statusbar_mode
    exporting
      statusbar_mode                      = go_editor-&amp;gt;true.
* Set edit mode
  call method go_editor-&amp;gt;set_readonly_mode.
*   send table to control
*  call method go_editor-&amp;gt;set_font_fixed
*    exporting
*      mode                                = cl_gui_textedit=&amp;gt;true.
  call method go_editor-&amp;gt;set_text_as_r3table
    exporting
      table                               = pt_data.
* set focus
  call method go_dialogbox-&amp;gt;set_focus
    exporting
      control                             = go_editor.
endform.                    " showcontent
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 13:25:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048647#M721712</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-11-08T13:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048648#M721713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your suggestion...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am in the midst of testing your code, and nothing appears... I did have one issue concerning the following line :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;set handler lcl_event_receiver=&amp;gt;close for go_dialogbox.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had to comment it out because of the following compilation error :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;The type "LCL_EVENT_RECEIVER=&amp;gt;CLOSE" is unknown.&amp;lt;/b&amp;gt;	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas as to why??	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 15:06:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048648#M721713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T15:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048649#M721714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry - I forgot to post something important - although it does not explain the behavior:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*---------------------------------------------------------------------*
*       CLASS lcl_event_receiver DEFINITION
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
class lcl_event_receiver definition.
  public section.
    class-methods:
      close
        for event close
        of cl_gui_dialogbox_container.
endclass.                    "lcl_event_receiver DEFINITION
*---------------------------------------------------------------------*
*       CLASS lcl_event_receiver IMPLEMENTATION
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
class lcl_event_receiver implementation.
  method close.
    call method go_editor-&amp;gt;free.
    free go_editor.
    call method go_dialogbox-&amp;gt;free.
    free go_dialogbox.
* finally flush
    call method cl_gui_cfw=&amp;gt;flush
      exceptions
        others                            = 1.
  endmethod." close
endclass.                    "lcl_event_receiver IMPLEMENTATION

Try this. If it doesn't help, we will tra again...


Regards,

Clemens
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 15:11:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048649#M721714</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-11-08T15:11:36Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048650#M721715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried on our system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The popup needs an active screen from where to start. May be that was missing in your try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this sample program which works fine:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZZZTEST                                                     *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;                                                                     *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*

REPORT  zzztest                       .

PARAMETERS:
  p_text80 TYPE text80 DEFAULT 'test the popup'.

DATA:
  go_dialogbox                            TYPE REF TO
cl_gui_dialogbox_container,
  go_editor                               TYPE REF TO cl_gui_textedit,
  gt_text80 TYPE TABLE OF text80.

APPEND p_text80 TO gt_text80.

AT SELECTION-SCREEN ON p_text80.
  IF NOT sy-datar IS INITIAL.
    append p_text80 to gt_text80.
    PERFORM showcontent USING gt_text80.
  ENDIF.
*---------------------------------------------------------------------*
*       CLASS lcl_event_receiver DEFINITION
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
CLASS lcl_event_receiver DEFINITION.
  PUBLIC SECTION.
    CLASS-METHODS:
      close
        FOR EVENT close
        OF cl_gui_dialogbox_container.
ENDCLASS.                    "lcl_event_receiver DEFINITION
*---------------------------------------------------------------------*
*       CLASS lcl_event_receiver IMPLEMENTATION
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
CLASS lcl_event_receiver IMPLEMENTATION.
  METHOD close.
    CALL METHOD go_editor-&amp;gt;free.
    FREE go_editor.
    CALL METHOD go_dialogbox-&amp;gt;free.
    FREE go_dialogbox.
* finally flush
    CALL METHOD cl_gui_cfw=&amp;gt;flush
      EXCEPTIONS
        OTHERS                            = 1.
  ENDMETHOD." close
ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION


* ...

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  showcontent
*&amp;amp;---------------------------------------------------------------------*
*       Anzeige im Control
*----------------------------------------------------------------------*
FORM showcontent  USING    pt_data        TYPE table.
  IF go_dialogbox IS INITIAL.
    CREATE OBJECT go_dialogbox
       EXPORTING
         width                            = 800
         height                           = 300
         top                              = 50
         left                             = 100
         caption
           = 'Close Window to end Display'.
    SET HANDLER lcl_event_receiver=&amp;gt;close FOR go_dialogbox.
  ENDIF." go_dialogbox is initial.

  IF go_editor IS INITIAL.
    CREATE OBJECT go_editor
      EXPORTING
        parent                            = go_dialogbox
        wordwrap_mode                     =
cl_gui_textedit=&amp;gt;wordwrap_off
        wordwrap_to_linebreak_mode        = cl_gui_textedit=&amp;gt;true.
  ENDIF.
  CALL METHOD go_editor-&amp;gt;set_toolbar_mode
    EXPORTING
      toolbar_mode                        = go_editor-&amp;gt;true.

  CALL METHOD go_editor-&amp;gt;set_statusbar_mode
    EXPORTING
      statusbar_mode                      = go_editor-&amp;gt;true.
* Set edit mode
  CALL METHOD go_editor-&amp;gt;set_readonly_mode.
*   send table to control
*  call method go_editor-&amp;gt;set_font_fixed
*    exporting
*      mode                                = cl_gui_textedit=&amp;gt;true.
  CALL METHOD go_editor-&amp;gt;set_text_as_r3table
    EXPORTING
      table                               = pt_data.
* set focus
  CALL METHOD go_dialogbox-&amp;gt;set_focus
    EXPORTING
      control                             = go_editor.
ENDFORM.                    " showcontent
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may modify to your needs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 15:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048650#M721715</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-11-08T15:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048651#M721716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello again &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added the two classes, but still nothing happens... I debugged and sure enough the code is executed, but with no result.... I supplied a table with data, so thats not the problem.  It seems maybe there is no 'display_data' call ... ??...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANy ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 15:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048651#M721716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T15:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048652#M721717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;... see above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the problem persists, post your complete code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 15:35:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048652#M721717</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-11-08T15:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048653#M721718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, still doesnt work... when I execute from the selection screen nothing happens.  &lt;/P&gt;&lt;P&gt;I see that &amp;lt;b&amp;gt;sy-datar&amp;lt;/b&amp;gt; is empty, so i tested without the &amp;lt;b&amp;gt;If/Endif&amp;lt;/b&amp;gt; and still nothing .... anyway, here's my code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ztest_tim2.                      .

PARAMETERS:
  p_text80 TYPE text80 DEFAULT 'test the popup'.

DATA:
  go_dialogbox                            TYPE REF TO
cl_gui_dialogbox_container,
  go_editor                               TYPE REF TO cl_gui_textedit,
  gt_text80 TYPE TABLE OF text80.

APPEND p_text80 TO gt_text80.

AT SELECTION-SCREEN ON p_text80.
  IF NOT sy-datar IS INITIAL.
    APPEND p_text80 TO gt_text80.
    PERFORM showcontent USING gt_text80.
  ENDIF.
*---------------------------------------------------------------------*
*       CLASS lcl_event_receiver DEFINITION
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
CLASS lcl_event_receiver DEFINITION.
  PUBLIC SECTION.
    CLASS-METHODS:
      close
        FOR EVENT close
        OF cl_gui_dialogbox_container.
ENDCLASS.                    "lcl_event_receiver DEFINITION
*---------------------------------------------------------------------*
*       CLASS lcl_event_receiver IMPLEMENTATION
*---------------------------------------------------------------------*
*
*---------------------------------------------------------------------*
CLASS lcl_event_receiver IMPLEMENTATION.
  METHOD close.
    CALL METHOD go_editor-&amp;gt;free.
    FREE go_editor.
    CALL METHOD go_dialogbox-&amp;gt;free.
    FREE go_dialogbox.
* finally flush
    CALL METHOD cl_gui_cfw=&amp;gt;flush
      EXCEPTIONS
        OTHERS = 1.
  ENDMETHOD." close
ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION


* ...

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  showcontent
*&amp;amp;---------------------------------------------------------------------*
*       Anzeige im Control
*----------------------------------------------------------------------*
FORM showcontent  USING    pt_data        TYPE table.
  IF go_dialogbox IS INITIAL.
    CREATE OBJECT go_dialogbox
      EXPORTING
        width   = 800
        height  = 300
        top     = 50
        left    = 100
        caption = 'Close Window to end Display'.
    SET HANDLER lcl_event_receiver=&amp;gt;close FOR go_dialogbox.
  ENDIF." go_dialogbox is initial.

  IF go_editor IS INITIAL.
    CREATE OBJECT go_editor
      EXPORTING
        parent                     = go_dialogbox
        wordwrap_mode              = cl_gui_textedit=&amp;gt;wordwrap_off
        wordwrap_to_linebreak_mode = cl_gui_textedit=&amp;gt;true.
  ENDIF.
  CALL METHOD go_editor-&amp;gt;set_toolbar_mode
    EXPORTING
      toolbar_mode = go_editor-&amp;gt;true.

  CALL METHOD go_editor-&amp;gt;set_statusbar_mode
    EXPORTING
      statusbar_mode = go_editor-&amp;gt;true.
* Set edit mode
  CALL METHOD go_editor-&amp;gt;set_readonly_mode.
*   send table to control
*  call method go_editor-&amp;gt;set_font_fixed
*    exporting
*      mode                                = cl_gui_textedit=&amp;gt;true.
  CALL METHOD go_editor-&amp;gt;set_text_as_r3table
    EXPORTING
      table = pt_data.
* set focus
  CALL METHOD go_dialogbox-&amp;gt;set_focus
    EXPORTING
      control = go_editor.
ENDFORM.                    " showcontent&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any insight...&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 15:47:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048653#M721718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T15:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048654#M721719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just trued your code: Whenever I hit Enter, the popup comes up. The SY-DATAR registers any changes in the input field. So the popup comes only after a change in the field has been done AND enter has been pressed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't try with F8 because this will leave the screen and the popup has no base where to start from (all GUI controls are placed in or started from an existing screen).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is your version? I tried on R/3 Release 4.6C, but it works in all later releases the same way. I know for sure because I use a test program unchanged since nearly 5 years using this technology.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 16:05:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048654#M721719</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-11-08T16:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048655#M721720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Clemens,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for nice code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 16:10:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048655#M721720</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-11-08T16:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048656#M721721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah yes... it works .... &lt;/P&gt;&lt;P&gt;Thanks for the solution.&lt;/P&gt;&lt;P&gt;One thought, I need to implement this from within a BADI (for an action button in CRM)... will this work?  Or does it only work with enter upon a select parameter??&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 16:15:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048656#M721721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-08T16:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048657#M721722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it works with any event which is triggered during screen processing. If your BADI is triggered during screen processing, it should work. Check your situation and try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I remember (not too clear) I played araound with the controls a while ago. Youn may call a static minimized screen and use it as popup base. Not nice but working. Honestly said: I don't know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Nov 2007 16:23:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048657#M721722</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-11-08T16:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048658#M721723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;I've implemented the popup with the code you supplied and it works nicely...thanks alot!&lt;/P&gt;&lt;P&gt;The last thing I want to do (and don't find exactly how to do) is to find the method in CL_GUI_CONTROL which allows me to re-expand (bring back up) the window if the user has minimized it... any idea?  (I tried SET_POSITION... and it brings the window back up, but in minimized size... no in the original.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2007 11:03:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048658#M721723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-12T11:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: static popup</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048659#M721724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry I don't know. Nothing is documented by SAP -:(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried SET_ALIGNMENT?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: Let me know if you find out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2007 11:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-popup/m-p/3048659#M721724</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-11-12T11:25:53Z</dc:date>
    </item>
  </channel>
</rss>

