cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with Sapscript

former_member212005
Active Contributor
0 Kudos

Hi All,

We have an issue with the sapscript......

The scenario is as follows:

There is FIRST page which calls NEXT page and the NEXT page calls NEXT page again. Using START_FORM we are calling the LAST page which contains the terms and conditions....(LAST page calls LAST page again)

The LAST page contains only one window called TERMS.

In the TERMS window we have included a standard text......Now the issue is that this standard text is 3 pages long.....

However...the LAST page is being printed only once. Two pages are missing....

Should we include a main window in LAST page? or how will we solve this?

Moved from ABAP, General. Always post your questions in the right forum.

Edited by: kishan P on Aug 25, 2010 4:24 PM

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Hi ,

As per your issue for Terms & conditions your are using the standard text , runtime you dont know what is the quantity of data for that .

No need to go for the fresh page

my suggestion is in the first page itself at the end of the main data create the one text element with include text and make the page protection option checked. If the data is large automatically it will trigger the new page

Let me know if any concerns....

Regards,

Lokesh...

Former Member
0 Kudos

Hi Vin,

Create a main window in the last page of your script and include your terms and condition text in the page window of main window...

then when ever main window does not have suffiecient space to print the terms and condition text it will expanded to further pages...so you will get 3 pages of text in your script..

hope this will help you..

Regards,

Kiran

Former Member
0 Kudos

Hi Vin,

Create a main window in the last page of your script and include your terms and comdition text in the page window of main window...

then when ever main window does not have suffiecient space to print the terms and condition text it will expanded to further pages...so you will get 3 pages of text in your script..

hope this will help you..

Regards,

Kiran

Former Member
0 Kudos

overflowing the main window triggeres a page break, overflowing OTHER windows not.

arul_murugan
Active Participant
0 Kudos

Hi,

only main window overflows will lead to another page but not for other windows

Thanks

Arul

former_member212005
Active Contributor
0 Kudos

The main window included in page NEXT is very small in height and cannot be increased.

If I include the main window in my LAST page....it will remain of the same height and this will create problems while displaying terms and conditions.

Is there no other option than this or should I introduce one more page with a new window?

Former Member
0 Kudos

there is no way around this. you may have to think over you main window concept for page one tho.

former_member212005
Active Contributor
0 Kudos

Florian....how about creating two new pages....and triggering them explicitly by START_FORM.....

We cannot increase the height of Main window..........in the NEXT page.....so option 1 cannot be used...

Former Member
0 Kudos

well there would be this kinda manual solution which is not really elegant, but well.

you could split the term&conditions text into three parts, make three new pages, e.G. NEXT, NEXT2 and NEXT3.

Have next2 as sucessor of next and next3 as sucessor of next2. And well then print a part of your term on every of the three pages.

Problems with that solution:

- high change workload when customer changes their terms text or terms concept.

arul_murugan
Active Participant
0 Kudos

Hi,

Call the standard text in the main window of the LAST page.

Thanks

Arul

former_member212005
Active Contributor
0 Kudos

Do you mean to add a main window in the LAST page and then create a text element which includes my standard text?

Is there no other option?