cancel
Showing results for 
Search instead for 
Did you mean: 

Languages to be loaded for printing forms

Former Member
0 Kudos

Hello all,

Does anyone know if a language needs to be installed to be able to use it in a form (sap script or smart form)?

We are going through a new implementation and are wondering whether we need to load all the languages for which we want to print forms.

We will only use the system in English but will have to print certain document in local languages, eg tax report in Italian.

Thanks in advance for your help.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Nadia, AMAAAII!

I found a nice link that states that you must install other languages in order to be able to use them.

-snippet-

The language environment that comes with the standard SAP installation includes German and English. To use SAP with other languages, you must perform a language import or supplement (use transaction SMLT). Changes in the language environment usually require changes in the codepage setup, which requires changes in some database tables and in the profile files.

Here's the whole article:

http://www.geocities.com/SiliconValley/Grid/4858/sap/Basis/language.htm

Alles goe verder? Salukes!

Ron.

Former Member
0 Kudos

Dag Ron,

Alles heel goed en met u? Long time no hear. Bij welke klant ben je op het ogenblik?

Hoe gaat het met vrouw en boy? Soms ga ik nog eens loeren naar je weblog, is al een groot baasje geworden hé.

Ik zit in Leuven bij Telindus, nadat ik Callebaut had verlaten was ik bij Agfa in Antwerpen beland. Ben nu hier bij Telindus sinds mid januari. We gaan een nieuwe SAP implementatie doen.

Tot laters hé, daaag, Nadia

Edited by: Nadia Decoster on Mar 27, 2008 1:37 PM

Answers (1)

Answers (1)

former_member210123
Active Participant
0 Kudos

DATA : l_formname TYPE tdsfname.

DATA : l_ssfcompop TYPE ssfcompop.

DATA : l_ssfctrlop TYPE ssfctrlop.

CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'

EXPORTING

formname = c_tabname

IMPORTING

fm_name = l_formname

EXCEPTIONS

no_form = 1

no_function_module = 2

OTHERS = 3.

IF sy-subrc <> 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

ENDIF.

l_ssfcompop-bcs_langu = kna1-spras.

l_ssfctrlop-langu = kna1-spras.

CALL FUNCTION l_formname

EXPORTING

control_parameters = l_ssfctrlop

output_options = l_ssfcompop

is_header = is_header_details

nacha = nast-nacha

land = kna1-land1

spras = kna1-spras

is_contacts = is_contacts

is_adrc = is_adrc

TABLES

i_item_details = i_item_details

i_form_text = i_form_text

EXCEPTIONS

formatting_error = 1

internal_error = 2

send_error = 3

user_canceled = 4

OTHERS = 5.

IF sy-subrc <> 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

ENDIF.

Former Member
0 Kudos

tnkx