‎2010 Apr 15 4:54 PM
Hi All,
We have web application (internet explorer) which is calling SAP bapis. The web applicaton enters text in different languages (spanish, danish etc). The SAP bapi is using f/m - READ_TEXT as follows.
Data: wm_language LIKE T002-SPRAS.
CALL FUNCTION 'READ_TEXT'
EXPORTING
language = wm_language
object = 'QMEL'
id = 'LTQM'
name = wa_qmel_qmnum
TABLES
lines = wt_display_qmel_text
If i run SAP bapi manually and pass wm_language = ES (for spanish it is converted to S), then I am getting text (in wt_display_qmel_text) in spanish language in SAP. But if same parameter is passed via web application, then not getting text there, What could be the reason? please help.
‎2010 Apr 15 6:51 PM
Hi,
You are not getting text or you are not getting text in Spanish language.I think you might not be getting any result.
As far as I know Read_text is not RFC enabled FM, so might not be called from We application, if this is true then make a new RFC enabled wrapper FM for READ_TEXT
‎2010 Apr 15 6:51 PM
Hi,
You are not getting text or you are not getting text in Spanish language.I think you might not be getting any result.
As far as I know Read_text is not RFC enabled FM, so might not be called from We application, if this is true then make a new RFC enabled wrapper FM for READ_TEXT