Register Login

how to create pop-up window ?...

Updated May 18, 2018

Hi everybody,

 

please any give the details of creating pop-up window ?... and i m getting a problem with the window toolbar  

it's not working every time i run the program to cancel i need to go window task manager .please any one help.

 

 

 

 

 

 


Comments

  • 18 Jun 2010 8:06 am Sidd
    HI,

    PLEASE ANY ONE HELP WITH THIS PROBLEM . PLEASE
  • 25 Jun 2010 4:45 am Shalesh Singh Visen
    SAP ABAP program for POPUP screen

    If you wish to POPUP a screen in SAP ABAP then it can be done as shown below. Do experiment with the X,Y co-ordinates for the POP-UP Screen. The following program pulls out sales orders from the sap database and displays them on the screen. When the user clicks on a particular sales order, it displays the Sales order number and the Customer number in the POP-UP Screen




    REPORT ZEX_POPUPSCREEN .

    *&---------------------------------------------------------------------*
    *& ABAP POPUP SCREEN
    *&---------------------------------------------------------------------*

    * Table Declaration
    TABLES VBAK.
    * Start of Selection
    START-OF-SELECTION.
    SELECT * FROM VBAK.
    WRITE / VBAK-VBELN HOTSPOT ON.
    ENDSELECT.
    * Display the screen
    AT LINE-SELECTION.
    WINDOW STARTING AT 10 10
    ENDING AT 40 25.
    WRITE:/ 'VBAK-VBELN, VBAK-KUNNR'.


  • 25 Jun 2010 5:26 am Guest
    Hi,
    thank you for your support sir, but i tried with the method but the window is created,their it's not displaying the tools and also it's not displaying the items.and i tried with popup_table_display also. please with this problem


    Sidd
  • 26 Sep 2013 8:55 am Guest
    i want to know how we can go to transaction ME23n through a popup window.please anyone let me know ...
  • 26 Sep 2013 8:59 am yatisha varshney
    how can i open a transaction through a popup window ?
    please tell me ..

×