Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Window custom size

Former Member
0 Kudos

Hello all,

I need to display in a popup window a text file. Now I'm using FM 'LAW_SHOW_POPUP_WITH_TEXT', the problem is that with this function the window dimension are limited.

Do you know a function which display a window with text and can have custom dimension??

Thank you!

Bogdan

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Use POPUP_TO_DISPLAY_TEXT which has row/col parameters

4 REPLIES 4

Former Member
0 Kudos

Use POPUP_TO_DISPLAY_TEXT which has row/col parameters

0 Kudos

Function POPUP_TO_DISPLAY_TEXT can have only two lines, and I need a text file to be displayed.

Thank you!

0 Kudos

There is one more FM CCMS_POPUP_INFOTEXT. But, here it uses Table parameter in which you will have to upload text file.

Former Member
0 Kudos

Kindly have a look at the following code in order to have a customised pop up window. Hope it will resolve your issue.

&----


*& popup

&----


REPORT popup.

  • work area

TABLES CUSTOMERS.

  • Processing data

START-OF-SELECTION.

SELECT * FROM CUSTOMERS.

WRITE / CUSTOMERS-NAME HOTSPOT ON.

ENDSELECT.

  • Single click

AT LINE-SELECTION.

WINDOW STARTING AT 10 10

ENDING AT 40 20.

WRITE 'This is my first window'.

***************************************************

If your issue is resolved, then kindly close the thread and reward the points.

Regards.

Naveen