Application Development and Automation 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: 
Read only

Window custom size

Former Member
0 Likes
879

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
Read only

Former Member
0 Likes
812

Use POPUP_TO_DISPLAY_TEXT which has row/col parameters

4 REPLIES 4
Read only

Former Member
0 Likes
813

Use POPUP_TO_DISPLAY_TEXT which has row/col parameters

Read only

0 Likes
810

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

Thank you!

Read only

0 Likes
810

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

Read only

Former Member
0 Likes
810

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