cancel
Showing results for 
Search instead for 
Did you mean: 

script next page

Former Member
0 Kudos

i have developed a script....my requirement is i should get the same page in next page with small change in header text..

for example : if i have some data beside logo it is printed.

in next page the same form should be printed but beside logo i should get another sentence...like that i should get four pages in one execution....kindly help me

regards

deepika.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

U can use the IF Condition in which ever window u want.

Like

/: IF &PAGE& EQ 1

  • FIRST PAGE

/: ELSE

  • OTHER PAGE

/: ENDIF

Thanks,

Nithya

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

In the subsequent pages do you want to have same data as in the first page in MAIN or that will aslo change?

basically , what you need to do is that you have to create TWO windows,Header and main.

and in header window depending on the page no you have to vary the contents,like:

if &page& = 1.
   <logo> <text1>
elseif &page& = 2.
   <logo> <text2>
elseif &page& = 3.
   <logo> <text3>
elseif &page& = 4.
   <logo> <text4>
endif.

Regards,

neha

Former Member
0 Kudos

hi,

try this.

In the editor.

/: Include logo

/: If &page& ne 1.

  • text

/: endif.

Former Member
0 Kudos

Hi

You declare two pages.

First page is with your text beside the logo .

In second page you call the same windows as of first page except the window which you dont want to print the text. Define other window beside the logo.

Regards,

Rajani