Application Development 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: 

SAP SCRIPT

Former Member
0 Kudos

I need to insert some TERMS & CONDITION in last page sap script.

How I will do that.

I have that terms & condition written in notepad.

Could you all help me out.......

Thanks & regards....

1 ACCEPTED SOLUTION

p291102
Active Contributor
0 Kudos

Hi,

To create footer window after that

and go to change editor and write

  • TERMS&CONDITIONS

Thanks

shankar

5 REPLIES 5

p291102
Active Contributor
0 Kudos

Hi,

To create footer window after that

and go to change editor and write

  • TERMS&CONDITIONS

Thanks

shankar

Former Member
0 Kudos

Hi shankar,

I have one full page of terms & condition. How I will attach that page with the sap script.

Former Member
0 Kudos

Hi,

Hard code the text as I've done in the following code:

WA_TEXT1 = 'We request you to confirm the balance as stated by us-as

per the'.

WA_TEXT2 = 'attached annexure and return the 2nd copy of this letter

duly signed by you'.

WA_TEXT3 = 'within p_days days from the date of receipt of this letter

,in the absence '.

WA_TEXT4 = 'of which it will be assumed that you have confirmed the

balance stated by us.'.

CONCATENATE WA_TEXT1 WA_TEXT2 WA_TEXT3 WA_TEXT4 INTO WA_TEXT.

Hope this helps.

Reward if helpful.

Regards,

Sipra

Former Member
0 Kudos

Change make use of this condition to print the terms and conditions text in the last page .

/: IF &NEXTPAGE& EQ 0  
P  text  "whatever footer you want.  
/: ENDIF 

in the text portion just maintain all the detials of what u want to print in the last page.

Since this will be a standard text this gets displayed in the last page .

regards,

vijay.

Former Member
0 Kudos

Hi

Create a window and position it below the MAIN window.. Copy the TERMS AND CONDITIONS into this element..

So this window will be printed after the Main window in the last page...

Rajiv