cancel
Showing results for 
Search instead for 
Did you mean: 

need to print in german language in output.

Former Member
0 Kudos

Hi,

I need to print my vendor address and delivery address in german language (fetching data from database table) in my form.

How I can achieve this.Please help,

Regards,

Himanshu

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

as far as i know the adress-statement of SAP-SCRIPT has a language parameter. should this suffice to reach your goal?

Or does it just format the adress in the format of the according language and leave the language itself like the whole form language?

Former Member
0 Kudos

Hi ,

Retrieve the data for vendor from table ADRP in print program where address was maintained in different language and pass those values to address and endaddress .

Regards,

Chandra Kavali

Former Member
0 Kudos

Hi..

Please check the following answered thread. It will help.

[;

Regards,

Karthik

Former Member
0 Kudos

Hi,

Is it a smartform or script?

You can write pogram lines in samrtforms in order to fetch data even fron data base tables..

Window -> Create -> Flow Logic -> Prgrm Lines

Former Member
0 Kudos

Hi lokesh,

I am using script .

Regards

Former Member
0 Kudos

Hi,

So i think you should to call fetch the data when your are about to print a form..

best way would be to call a subroutine in a script editor.. this routine will fetch all the data from database table ,, and it wud just like a ABAP form ..

Pls follow the steps,,

1. Create a Z program in SE38, declare all the structure related to data fetching in that,, perform all data selection,, fill these data structure..

2. You should to paste your code within the Form and endform .. Like below:

REPORT Zcall_in_script .

form data_fetch.

all the data retreval part .....

endform.

3. Now in your script ,, to call this form use below syntex,,

/:   PERFORM data_fetch  IN  PROGRAM Zcall_in_script 
/:   USING &w_value1& 
/:   USING &w_value2& 
/:    CHANGING &w_value3& 
/:   CHANGING &w_value4& 
/:   ENDPERFORM

4. here you can have the w_value3 & w_value4 as your fetch value .

Edited by: Lokesh Tarey on Jul 26, 2010 2:10 PM