cancel
Showing results for 
Search instead for 
Did you mean: 

Print Box only at the end of main window data

Former Member
0 Kudos

Hi,

I need to display a Box at the end of main window data. If I write BOX command it needs fix values for X and Y coordinate. How can I dynamically display this box after displaying data in main window?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Satish,

Bottom..Endbottom. control command displays the text after the end of main window.

Regards,

Sravanthi

Former Member
0 Kudos

If I use BOTTOM-ENDBOTTOM then, it will print at bottom of last page. Now, If main data ends at the middle or very start of main window in last page then again it will waste that much space. I hope you can understand my problem.

Former Member
0 Kudos

try with below logic..

loop at itab.

at end of field ---> any mandatry field

here call the WRITE_FORM

with text element...

endat.

endloop.

in MAIN window of SCRIPT.

end of the main winodw

call this text element.

E/ TEXT ---> text element

this will trigger at end of the your internal table records but you miss the line after the text....

Answers (2)

Answers (2)

Former Member
0 Kudos

Issue resolved

Former Member
0 Kudos

create one window end of main window call the text element from print program at end of the internal table records.

loop at itab.

at end of field

here call the WRITE_FORM

with text element...

endat.

not possible to change the X and Y positions dynamically..

Former Member
0 Kudos

Thanks for you reply. But If I create a WINDOW below main window, then that window will be physically

present below main window and occupy that much space on every page. I dont want to waste that much space on every page.