2011 Jan 24 4:28 PM
Hallo.
I need to do a BAPI ZTEST with a CALL TRANSACTION on IE01
The external user that uses the BAPI logon in EN (English)
But I need to execute the CAL Transcation in IE01 with Italian language.
How could I overwrite SY-LANGU ?
Thanks for your help.
Mario
2011 Jan 24 4:43 PM
The external user that uses the BAPI logon in EN (English)
What about changing it to Italian?
Hallo.
I need to do a BAPI ZTEST with a CALL TRANSACTION on IE01
The external user that uses the BAPI logon in EN (English)
But I need to execute the CAL Transcation in IE01 with Italian language.
How could I overwrite SY-LANGU ?
Thanks for your help.
Mario
2011 Jan 24 4:43 PM
The external user that uses the BAPI logon in EN (English)
What about changing it to Italian?
2011 Jan 25 7:22 AM
No, the external application (TIBCO) can't change it to Italian, beacause the Tibco team said that there could be any problem about the date format.
Edited by: Ferruccio Galli on Jan 25, 2011 9:53 AM
2011 Jan 25 9:10 AM
2011 Jan 25 10:01 AM
Hallo.
Yes I tried.
This is the code:
.
.
----
FORM bdc_transaction USING tcode.
DATA xlangu TYPE sy-langu.
xlangu = sy-langu.
IF sy-langu NE 'I'.
SET LOCALE LANGUAGE 'I'.
ENDIF.
CALL TRANSACTION tcode USING bdcdata
MODE 'A' "CTUMODE "per visualizzare passi della registrazione
MODE 'N' "CTUMODE
UPDATE 'S'. "CUPDATE
MESSAGES INTO itab.
SET LOCALE LANGUAGE xlangu.
ENDFORM. "BDC_TRANSACTION
.
.
but it doesn't work.
It uses always the logon language (EN) instead of the italian.
Why this?
Thanks.
Mario
Edited by: Ferruccio Galli on Jan 25, 2011 11:06 AM
Edited by: Ferruccio Galli on Jan 25, 2011 2:27 PM
2011 Jan 25 10:27 AM
Hi,
Set locale language will not work since your using BDC. Isn't there any way to transfer the language into your BDC data table?
Else you can only change the language by setting the sy-langu field to Italian (which was already suggested previously).
Best regards,
Guus
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |