‎2006 Jun 09 4:23 PM
Hi all,
I have designed main window as such it matches the statinary requirements. the mainwindow has BOX command so it is like table of 2 rows and 5 columns.
The database fields present in the script gets displayed on the mainwindow , only 7 rows gets displayed on the mainwindow , but still there is enough space as it can accomodate about 12 rows . But once the data reaches 7 rows it jumps of to the other page .
I tried checking all the things but iam not able to figure it out. If i try increasing the size of main window the BOX alignment gets ruptured and it overlaps with the other window below it. The problem is space inside the main window is empty
If any one has a slight knowledge about this please let me know
I will paste the code present in the text element for the line items.
==================================================
/ <b>THIS LINE IS BLANK</b>
/: SET DATE MASK = 'MM/DD/YYYY'.
/: PROTECT
T1 ®UP-BELNR(13)&,,®UP-BLDAT(6)&®UP-BLDAT&,,
= ®UD-DMBTR(13R)&,,®UD-SKNTO&,,®UD-NETTO&
/: ENDPROTECT
==================================================
Please do let me know about this .
Waiting for ur replies
Regards,
Shuja
‎2006 Jun 09 4:28 PM
Try to remove PROTECT AND ENDPROTECT from your script layout and check.
Regards
vijay
‎2006 Jun 09 4:26 PM
Hi Shuja,
<b> Remove PROTECT and ENDPROTECT statements in your code.</b>The PROTECT and ENDPROTECT will try to accomadate all results in one page.If it doesnt do this, then this will automatically triggers NEWPAGE.
Thanks,
Vinay
‎2006 Jun 09 4:27 PM
hi
try reducing the <b>font size</b>
also check the <b>line spacing</b>
‎2006 Jun 09 4:28 PM
Try to remove PROTECT AND ENDPROTECT from your script layout and check.
Regards
vijay
‎2006 Jun 09 5:15 PM
hii shuja ,
PROTECT
determine that a paragraph must not be separated by a page break. The lines in this command are printed together on one page. If the space is enough on current page, then all the lines are printed on current page. If, however the space is not sufficient the PROTECT command works as a NEW-PAGE.
SO remove PROTECT ENDPROTECT and try ..also check by increasing size of main window.