Urgent: want function module to translate text into russian language

Hello All,
My requirement is that, field is fetched from std. table. This fiels of data type string, i.e., it contains text. I want to translate this text into russian language before displaying this in output. For otr text, i used se63 to translate. But, this text is not otr, it is dynamically fetched from diff. std. tables. So, se63 is not working here.
Please help me as its very urgent.
Useful answers will be rewarded.
Thanks and regards,
Ashlesha Desai

Hi
I don't know if there's an unique solution, you should try to open an OSS message
All tables with description should have the language (usually field SPRAS) as key fields
so u can try to read a record and create a new one but with the new language:
select * from makt where spras = 'ZH'.
   makt-spras = 'E'.
   makt-maktx = ......
   insert makt.
endselect.
But it's better to analize the risk
Max

Similar Messages

  • Any function module to translate the text

    Hi all,
    I have a requirement like, in the report i have to display the headings according to languages chosen
    dynamically.
    let me know is there is any process or Function module to translate the texts.
    Regards,
    Madhavi

    Hi,
    you can use SE63 for translating
    or use
    FM 'TRANSLATE_TEXT_TEXTLOG'.
    And also 'SKTZ_TRANSLATE_TEXT_TEXTLOG'
    Regards,
    Flavya

  • Function Module for Translation of text from Lower to Upper Case

    Hi All,
    Can any one give me function module for translation of text from lower to upper case.
    If we use Translate statement for the program in the Extended Syntax check it is giving error.
    Thanks in advance.
    Regards,
    srinivas

    Hi Srinivas,
    You can use any of the Function Modules below.
    AIPC_CONVERT_TO_UPPERCASE
    2054_TRANSLATE_2_UPPERCASE
    HR_99S_CONV_UPPER_CASE
    Please reward if useful.
    regards,
    Raj

  • Function Module to translate the language

    Hi
    Can I get a Function Module to translate the language,
    Suppose if I enter  EMployee Name  in English I should be getting in German or Taiwan or Japaneses langu.
    Any inputs
    Regards
    Rohini.

    Hi,
    There is no such BAPI which could translate the input. Instead check the standard BAPI for your scenario , if it accepts language as input means then pass relevant language code and get the output.
    This is possible only if the table contains data in different languages
    More clearly you need to access the text table using standard BAPI.
    Because text tabls contains both language key and datas in corresponding languages.
    Thanks,
    Ramanan.P

  • Which function module i translate russian language pdf to english

    which function module i translate russian language pdf to english

    Hi,
    The based PDF you can translate it in SE63, and if your PDF using some standard texts, you should translate it in SO10.
    SE63 refer this, http://scn.sap.com/thread/330568
    Regards,
    Archer

  • Function module for translation

    Hi friends,
               Is there any Function module for translating the unit of currency (WAERS) to other languages. I've a requirement where I need the value EUR or USD to be printed in russian.
    Thanks,
    Sharmila

    Hi
    Please check the FM
    <b>CURRENCY_GETLIST</b>
    It basically takes the values from the table TCURT
    Hope this helps..

  • Which are function modules used to convert into XML format in SAP 4.6c Ver

    which are function modules used to convert into XML format in SAP 4.6c Ver

    Hi,
    check this program , I think this will help you
    TYPE-POOLS: ixml.
    TYPES: BEGIN OF xml_line,
    data(256) TYPE x,
    END OF xml_line.
    data : itab like catsdb occurs 100 with header line.
    data : file_location type STRING.
    data : file_name like sy-datum.
    data : file_create type STRING.
    file_name = sy-datum .
    file_location = 'C:\xml\'.
    concatenate file_location file_name into file_create.
    concatenate file_create '.XML' into file_create.
    DATA: l_xml_table TYPE TABLE OF xml_line,
    l_xml_size TYPE i,
    l_rc TYPE i.
    select * from catsdb into table itab.
    append itab .
    CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'
    EXPORTING
    I_FIELD_SEPERATOR =
    I_LINE_HEADER =
    I_FILENAME =
    I_APPL_KEEP = ' '
    I_XML_DOC_NAME =
    IMPORTING
    PE_BIN_FILESIZE = l_xml_size
    TABLES
    i_tab_sap_data = itab
    CHANGING
    I_TAB_CONVERTED_DATA = l_xml_table
    EXCEPTIONS
    CONVERSION_FAILED = 1
    OTHERS = 24
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD cl_gui_frontend_services=>gui_download
    EXPORTING
    bin_filesize = l_xml_size
    filename = file_create
    filetype = 'BIN'
    CHANGING
    data_tab = l_xml_table
    EXCEPTIONS
    OTHERS = 24.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    write : 'INTERNAL TABLE DATA IS SUCCESSFULLY DOWNLOADED TO LOCATION', file_create .
    Thanks.

  • Could smd translate this into JS-language

    I'd like to compare speed of two languages - vbs/js.
    So, if smbd have spare time, translate this, pls into JS:
    b Set MyInd = CreateObject("InDesign.Application.CS3")
    b Set myDoc = MyInd.ActiveDocument
    b Set myTable = MyInd.Selection.Item(1).Parent.Parent 'get the table into object
    b CC = myTable.Cells.Count
    b Tt = 100 / CC 'step of tinting
    b For i = 1 To CC
    b myTable.Cells.Item(i).FillColor = "Red"
    b myTable.Cells.Item(i).FillTint = 100 - Tt * i
    b Next
    I'd like to test it on table 20x20. Cause in VBS it works extremely slow. Wonder, what about JS speed?

    OK, thanks!
    -----Original Message-----
    From: Robert_Tkaczyk [mailto:[email protected]]
    Sent: Friday, April 18, 2008 9:51 PM
    To: [email protected]
    Subject: Re: Could smd translate this into JS-language
    A new message was posted by Robert_Tkaczyk in
    InDesign Scripting --
    Could smd translate this into JS-language
    for VB:
    Property EnableRedraw As Boolean
    Member of InDesign.ScriptPreference
    If true, enables redraw during script execution.
    in JS redrawing is turn off by default - you need to call Recompose or
    something like that to redraw/refresh - needed when working with Text
    robin
    www.adobescripts.com
    View/reply at
    Replies by email are OK.
    Use the unsubscribe form at
    to cancel
    your email subscription.
    __________ NOD32 3038 (20080418) Information __________
    This message was checked by NOD32 antivirus system.
    http://www.eset.com

  • Very Urgent Please function module FAGL_GET_TT_DATA_LEAD  Enhancement

    Hi Guys,
    I want to enhance the function module FAGL_GET_TT_DATA_LEAD (that gets the data from FAGLFLEXT) to read the FAGLFLEXA table.Can any one get me an idea on how to enhance it ....
    If possible please send me brief code steps aswell ...
    Thanks in adnvace

    hi Harish,
      One thing you can do is copy the function module into Z-function module and try to incorporate the custom code and replace the standard function module with custom function module in your program.
    Hope it helps...

  • Wanted functional module

    respected sdn's,
    i had requirement of functional module for conversion of created date of vbrk-fkdat into format of 28th november 2006 and country to full name for example in to india like that .
    with regards,
    vikramreddy t.

    For ur case i dont suppose there is a single Fm to get the job but u can create a logic as suggested .
    you want this literal after date also .
    28<b>th</b>
    22<b>nd</b>
    1<b>st</b>
    3<b>rd</b>
    how are u going about this ?
    As suggested the logic from table T247 will work for u .
    write a case logic as to supplement the literal for the same
    case date.
    when 1 -- as 'st'
    when 2 - as 'nd'
    when 3 - as 'rd'
    when 4 or 5 or 6 ... as 'th'.
    like that .
    how are u fetching the country name ? what is your input or avaliable parameters ?
    regards,
    vijay

  • Is there any function module for converting text to hyperlink?

    Hello all,
              I am designing an application in BSP wherein the user can enter hypertext values for some
              of the data enteries in the database table. Is there any function module available for converting
              text into hypertext. Eg. if the user enters 'www.mypersonalwp.com' then it should convert this
              text value into a hyperlink.
    Thanks in advance.
    Gurmahima.

    Hi,
    Refer the given below link
    http://help.sap.com/saphelp_erp2004/helpdata/EN/85/ce25c2d7ae11d3b56d006094192fe3/content.htm
    Hope it helps you
    Thanks
    Arun Kayal

  • Function Module which translates to cyrillic

    Hi again,
    does somebody know if there is a Function Module or class where i can translate/convert a string from Latin-2 to cyrillic?
    Thanks for your help
    Thorsten

    Hi,
    You will not get any FM for translation.
    1. For SAP statndard business terms ( say company code , plant, ) you can have the Texts in table DD04T.
    2. You can refer to table T100 also - it stores message texts.
    3. if you dont find them there - then the last option is to trust Google !!

  • Function module to add record into incompletion log of creating sale order

    Hi SD Experts,
    Do you know any function module / class  to add record a into incompletion log procedure of creating / changing sale order process? We can do it through configuration OVA2 but I need to add more condition before adding to this table.
    Thanks,
    Duy

    Hi,
    Refer to The SDN Post : [user exit to update the incompletion log in sales order for pricing error |Re: user exit to update the incompletion log in sales order for pricing error]. 
    Limitation : While creating Sales order, this works only for document type with external number range as the code required for updating XVBUV require Sales Order Number.
    Regards
    Vinod

  • Function module to get data into internal table from Excel file sheets

    Hi,
    I have to upload customers from excel file.
    we are donloading customer data excel file sheets.
    Customer data in 1 sheet, tax data the other sheet of same excel file, Customer master-Credit data in other sheet of same excel file.
    so i have 3-4 sheet in one excel file.
    now my requirement is to get the data from excel file into internal table.
    is there any function module.
    Thanks & Regards

    I am sending you the idea with an example how you can upload data from an EXCEL file into an internal table. I am not sure if you can take data from different sheet in the same EXCEL file. I think that this is not possible (try it )
    Upload the data into an internal table, like the way that I am describing in the above:
      DATA: L_MAX_COL_NB TYPE I.
      DATA: l_file_name LIKE RLGRAP-FILENAME.
    Just to be sure that is the correct type for the FM.
      l_file_name = P_FILE_NAME.
      L_MAX_COL_NB = 58.  "Maximum nb of colums that the FM can read.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
           EXPORTING
                FILENAME                = l_file_name
                I_BEGIN_COL             = 1
                I_BEGIN_ROW             = 2
                I_END_COL               = L_MAX_COL_NB
                I_END_ROW               = 9999
           TABLES
                INTERN                  = PT_EXCEL
           EXCEPTIONS
                INCONSISTENT_PARAMETERS = 1
                UPLOAD_OLE              = 2
                OTHERS                  = 3.
      IF SY-SUBRC <> 0.
      ENDIF.
    Now you should upload the data into your own itab. The Function Module will return to you all the an itab
    from all fields and columns. Define the structure of the uploading file into SE11 - Data Dictionary. Then read the fieldcatalog of this structure. In the code that I am sending to you, I am insearting an empty line into the internal table and then I am assigning this line into a corresponding field-symbol. Then I am able to change the working area - so and the line of the itab. Propably you could you the statement APPEND INITIAL LINE TO (your_table_name) ASSIGNING <your_field_symbol>, but the example was written in an old SAP version.
      FIELD-SYMBOLS:
                     <F_REC> LIKE WA_UPLOAD_FILE,      "working are of the uploading file
                     <F_FIELD> TYPE ANY.
      DATA: COLUMN_INT TYPE I,
            C_FIELDNAME(30) TYPE C.
      PERFORM GET_FIELDCATOLG TABLES FIELDCAT
                               USING 'ZECO_CHARALAMBOUS_FILE'.
      LOOP AT PT_EXCEL.
        AT NEW ROW.
          ASSIGN WA_UPLOAD_FILE TO <F_REC>.
        ENDAT.
        COLUMN_INT = PT_EXCEL-COL.
        READ TABLE FIELDCAT INTO WA_FIELDCAT INDEX COLUMN_INT.
        CONCATENATE '<F_REC>-' WA_FIELDCAT-FIELDNAME INTO C_FIELDNAME.
        ASSIGN (C_FIELDNAME) TO <F_FIELD>.
        <F_FIELD> = PT_EXCEL-VALUE.
        AT END OF ROW.
          APPEND WA_UPLOAD_FILE TO GT_UPLOAD_FILE.
          CLEAR WA_UPLOAD_FILE.
        ENDAT.
      ENDLOOP.
    With Regards
    George
    Edited by: giorgos michaelaris on Mar 4, 2010 3:44 PM

  • Urgent: creation function module for chvw table

    hi,
    I want to make Function Module for the fields in which i have to display the production order and batch numbers.plzz tell me how to create for it.

    Hi Everybody,
    About how to use this function Does anyone have an idea?
    I've found it.
    call function 'FI_DOCUMENT_READ'
    exporting
       i_awtyp = 'VBRK'
       i_awref = vbfa_tab-vbeln
       i_awsys = vbrk-logsys
       i_bukrs = vbrk-bukrs
       i_gjahr = vbrk-gjahr
    tables
       t_bkpf = xbkpf
       t_bseg = xbseg
    exceptions
    wrong_input = 1
    not_found = 2.
    But this is not enough.
    Best Regards Rasim.

Maybe you are looking for

  • Approval links not appearing in approver's outlook mail box

    Friends, I am facing a problem with the approval mails of shopping carts to approvers. The approval links in the outlook mails are not appearing - Error is : Document contains errors. Log on to the system to process the document     - Approval or rej

  • Photoshop CC 2014 crashing when I try to open or save

    I am experiencing a crash in Windows 8.1 using the cc2014 Photoshop Update too. The crash occurs whenever I try to open or save. I have tried the solutions that worked for some with previous versions including: removing the preference files uninstall

  • My iphoto is missing - Help!

    Up until a few days ago, I used iphoto with no problems. When I tried to open iphoto tonight, it would not open. I noticed that a question mark (?) appeared on top of the icon. I also noticed a new icon on the desktop call "Preview". I have never see

  • Still Frame Settings

    Trying to turn a Still Frame from Timeline into JPEG keeping the aspect ration of movie 16x9. The QT conversion option doesn't give me the setting I need. or I'm not sure which one of the bunch to select. The film is shot at 30 Frames. It's shot in H

  • Satellite 5200 - Need master/slave patch for new DVD drive

    I need a patch for DVD to use in a Satellite 5200. My original DVD is broken, so i bought a Toshiba SD-C2512 DVD but it is not working inside the Satellite, but with adaptor at my Desktop PC. I have to patch the DVD to Master. Where can I get the fil