cancel
Showing results for 
Search instead for 
Did you mean: 

printing script in different languages at a time

Former Member
0 Kudos

Hello experts

could you please solve my problem, i modified a standard script of dunning letter, the poblem is when we give print it should be printed 3 copies, each in different language, that is one dunning letter in english, one in german, one in french.

is there any solution for my problem, if yes please respond as early as possible

thank u

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

THANKS A LOT EXPERTS......

Former Member
0 Kudos

You will need to change your print program to call the form three times, each time changing the parameter LANGUAGE on the function module OPEN_FORM to the different language.

Regards,

Nick

former_member196280
Active Contributor
0 Kudos

I guess it can be done by modifying the driver program and changing language inside the DO loop as shown in the below example.

Ex: Do 3 times

**First time ENGLISH

**Pass your open_form , write_form , Close_Form , don't forget to change the language variable.

***IF Language = ENGLISH

***Change LANGUAGE TO GERMAN.

***ENDIF.

***IF Language = GERMAN

***Change LANGUAGE TO FRENCH.

***ENDIF.

ENDDO.

Regards,

SaiRam