Problem in converting english into spanish

In one of our POC i need to create a custom workflow and calling it from HTML page.
I did that by making a self registration workflow and put it under "..user/anonlogin.jsp"
and then by some minimal customization i called it using link referrence "http://localhost:8080/idm/user/anonProcessLaunch.jsp?id=Self+Registration"
it is working fine
Now my problem is that i need to show the form according to the language store in the user session from HTML page.
Now when i first go to "http://localhost:8080/idm/user/login.jsp" and then go to self registration page it converts the whole page into desired language preferrence but when i directly hit the url "http://localhost:8080/idm/user/anonProcessLaunch.jsp?id=Self+Registration" it doesn't convert my English language into spanish language which i hardcoded into process launch.jsp using
form.setPostURL(response.encodeURL("user/anonProcessLaunch.jsp?lang=es " + "&cntry=US"));
Please suggest the alternate way or where me miss in my way .
Thanks a lot

Ok , that is clear the customer has another query. He is trying to convert a pdf Arabic file into word formate but it is showing arabic font which is not in a proper form.i am attaching the print screen .

Similar Messages

  • How do I translate a dynamic form from english into spanish?

    With your assistance, I was able to create a dynamic form with expandable text fields. Now I am being tasked with translating this form from English into Spanish.  I do not know how to edit the words in the text box captions so that the appropriate accents are added.  Currently, the text font is Myriad Pro.

    Hi,
    check my example.
    It explains how to design multiligual forms.
    http://thelivecycle.blogspot.com/2010/01/multiligual-forms.html

  • Problem in converting english text to arabic text in Acrobat XI professional

    Hi,
    One of our client is facing issue while converting english text to arabic text in Acrobat XI professional. Can somebody help me to find a solution for this.

    Ok , that is clear the customer has another query. He is trying to convert a pdf Arabic file into word formate but it is showing arabic font which is not in a proper form.i am attaching the print screen .

  • Problem in converting AppleWorks into RTF

    Hi!
    I have a bunch of .cwk files (AppleWorks) that I need to convert into RTF format.
    In the script I use I have a proble with the following code:
    tell application "AppleWorks"
    activate
    open MonFichier
    save MonFichier in file (dossier & name_Fich & ".rtf") as file type "RTF" using translator "RTF"
    close MonFichier saving no
    end tell
    After execution I end up with a brand new file with .rtf extension but that is not a RTF file. If I try to open it with Textedit it does not open. Strangely enough, if I open the cwk file manually and save it as RTF manually, everything is fine....
    Can someone help me on this?
    Pascal

    Hello Pascal,
    I think you're seeing the known problem of AppleScript 2.0 used with some old program such as AppleWorks 6.
    Briefly, AW6's translator name parameter must be in plain string not Unicode text while all text literal is Unicode text in AppleScript 2.0.
    A workaround is to use data literal of class TEXT. Something like the following code.
    --CODE
    tell application "AppleWorks 6"
    open MonFichier
    tell document 1
    save in file (dossier & name_Fich & ".rtf") using translator «data TEXT525446» -- "RTF"
    close saving no
    end tell
    end tell
    --END OF CODE
    cf.
    A relevant topic:
    Script failing to translate AW to DOC
    http://discussions.apple.com/thread.jspa?threadID=1650891&tstart=0
    Hope this may help,
    Hiroto

  • Audio problem when converting iMovie09 into FCE

    I originally converted analog tapes to digital and captured video/audio into iMovie 09. This worked well
    When then exporting via .xml and importing into FCE, the video portion worked well, but the audio portion is barely audible. Even when I turn the volume all the way up and use the decibel adjustments, the audio is hard to hear
    What should I do?
    Thanks for any help on this question
    Ron

    Tom -- the original analog tape was 8mm, recorded on a Sony Camcorder. In iMovie-09, I don't have any problem after having converted the analog tape to DV. It's becomes a problem (buzzing sound) when it export via XML into FCE4.0.1

  • Problem in Converting Database into Archivelog mode (Oracle 10G)

    Hi Team,
    I come across a strange problem in the ORACLE 10G Server.
    I am converting database mode from NoArchivelog to Archivelog mode through RMAN in 10G.
    Now When I execute these following commands through RMAN prompt it works properly as shown below?
    C:\>rman
    Recovery Manager: Release 10.2.0.1.0 - Production on Thu Nov 30 18:01:08 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN> connect target /
    connected to target database: RAVI (DBID=4025722893, not open)
    RMAN> shutdown immediate;
    using target database control file instead of recovery catalog
    database dismounted
    Oracle instance shut down
    RMAN> STARTUP MOUNT;
    connected to target database (not started)
    Oracle instance started
    database mounted
    Total System Global Area 167772160 bytes
    Fixed Size 1247876 bytes
    Variable Size 79693180 bytes
    Database Buffers 79691776 bytes
    Redo Buffers 7139328 bytes
    RMAN> SQL 'ALTER DATABASE ARCHIVELOG';
    sql statement: ALTER DATABASE ARCHIVELOG
    RMAN> ALTER DATABASE OPEN;
    database opened
    RMAN>
    But this same script when i writes in the backup.ora file & pass to Rman prompt it fails,
    File backup.ora contains...
    run
    SHUTDOWN IMMEDIATE;
    STARTUP MOUNT;
    SQL 'ALTER DATABASE ARCHIVELOG';
    ALTER DATABASE OPEN;
    passed to RMAN as follows...
    C:\OracleCode\BACKUP>"C:\oracle\product\10.2.0\db_1\bin\RMAN.EXE" target /"connect target SYSTEM/sreedhar@RAVI" log="C:\ORACLE~2\LOGS\backup_log.log" append cmdfile="C:\ORACLE~2\BACKUP\backup.ora"
    RMAN> 2> 3> 4> 5> 6> 7> 8>
    then it fails giving the following errors...
    using target database control file instead of recovery catalog
    database closed
    database dismounted
    Oracle instance shut down
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of startup command at 11/30/2006 18:05:59
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
    Recovery Manager complete.
    The same thing is working in the Oracle 9i but not in the Oracle 10G.
    Can Anybody plz help me in this?
    Regards,
    S.Tiwari
    .

    export ORACLE_SID=<SID>
    rman target /cmdfile="C:\ORACLE~2\BACKUP\backup.ora"
    it will connect to the default SID, there's no such thing as a default SID, what do you mean?
    But what if there are more that one SID available & I
    want to connect to SID other than the default SID.just specify the desired SID prior starting rman.
    more over the same string is working with 9i but not
    with 10G.maybe due to a bug?
    to summarize, you have two options it you would like to start up the instance:
    either you specify the SID prior starting rman and use os authentication
    or
    you register the instance statically and use oracle authentication.
    regards,
    -ap

  • Garageband volume problem after converting project into mp3 formats

    Every time after I convert my music project into MP3 by clicking "send song to i-tune" in GarageBand, the volume of the music always come out to be softer than the original project before its been converted. Is there something I could do to fix that or to boost up the volume after I convert it?

    Boattt wrote:
    Is there something I could do to fix that or to boost up the volume after I convert it?
    http://www.bulletsandbones.com/GB/GBFAQ.html#exportvolumetoolow
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Problems when converting square into button symbol

    Hey, I got a question about converting square that has linear gradient no border and hard edge into a button symbol each time I do this the size of the symbol is always about 1px wider or taller or both, this doesnt happen when i try to do the same with square bitmap with filled color. (FW CS4)
    Please explain if anyone got any clue whats going on with it.

    Fireworks CS4, WinXP Pro:
    I create a rectangle 100 x 100, linear fill, hard edge. Select > F8 > Convert to Symbol - button. Symbol is exactly 100 x 100 px after conversion to a symbol (button type) -- I cannot reproduce what you see...
    Maybe someone else can help you better...

  • Problem in converting character into date datatype

    Hi Experts,
    I am developing an oracle function in which I am passing an input in varchar2 and I want the return that varchar value in date datatype.
    We are using to_date(to_char(:input,'YYYY-MON-DD')) but this is giving the output in simple format which is defined by the oracle i.e. 'MM-DD-YYYY'.
    We need the output in 'YYYY-MON-DD' and that too in date datatype.
    I guess you understand my question.
    Waiting for your response.
    Thanks

    i think you understand this :
    SQL>  select to_date('2013-06-13','yyyy-mm-dd') from dual;
    TO_DATE('
    13-JUN-13
    SQL> alter session set nls_date_format = 'yyyy-mm-dd';
    Session altered.
    SQL> select to_date('2013-06-13','yyyy-mm-dd') d  from dual;
    D
    2013-06-13
    SQL> alter session set nls_date_format = 'dd.mm.yyyy';
    Session altered.
    SQL> select to_date('2013-06-13','yyyy-mm-dd') d  from dual;
    D
    13.06.2013
    SQL> exit
    but if you have windows except alter session set you will need to see REGEDIT and Regional parameters.

  • Problem in converting Spool Request into PDF format

    Hi,
      I am facing problem to convert spool request (which store output of sap script) in to PDF format. Actually I have converted it with function module 'CONVERT_OTFSPOOLJOB_2_PDF' and it is working properly but the problem occurs where the BOLD fonts are used. I am unable to see the Text/Address where i have used Bold Font in script (PDF FORMAT). Even though in (SPO1) spool request shows every thing perfectly (along with Bold Font). It will great if you could suggest me something.
    Thanks,
    Pradeep

    Hi Pradeep,
    Use ,
    Closing the Sapscript, we save data (OTF) in a table
    CALL FUNCTION 'CLOSE_FORM'
    TABLES
    otfdata = t_otfdata
    EXCEPTIONS
    unopened = 1
    bad_pageformat_for_print = 2
    send_error = 3
    spool_error = 4
    OTHERS = 5.
    DATA: BEGIN OF t_otfdata2 OCCURS 0.
    INCLUDE STRUCTURE solisti1.
    DATA: END OF t_otfdata2.
    Move OTF data to another table with lenght 255
    LOOP AT t_otfdata.
    CONCATENATE t_otfdata-tdprintcom t_otfdata-tdprintpar INTO t_otfdata2.
    APPEND t_otfdata2.
    ENDLOOP.
    Convert OTF format to PDF
    CALL FUNCTION 'SX_OBJECT_CONVERT_OTF_PDF'
    EXPORTING
    format_src = 'OTF'
    format_dst = 'PDF'
    devtype = 'PRINTER'
    FUNCPARA =
    len_in = len_in
    IMPORTING
    len_out = len_out
    TABLES
    content_in = t_otfdata2
    content_out = t_pdfdata
    EXCEPTIONS
    err_conv_failed = 1
    OTHERS = 2.
    Have a look at Progs. RSTXPDF4 and RSTXPDFT2 for converting the Spool to PDF.
    Regards,
    Raj
    Message was edited by: Rajasekhar Dinavahi
    Message was edited by: Rajasekhar Dinavahi

  • Problem in converting Spool to PDF file, having non-English characters

    Hi All,
            I have problem in converting Spool to PDF format.
    Scenario : I have a spool which has non-English characters. I am using CONVERT_ABAPSPOOLJOB_2_PDF  FM to perform conversion. But my output is having junk values( ie # ) for non-English characters. Any pointers to solve this issue will be appreciated.
    I even tried with report RSTXPDFT4 , it also gives me the same junk characters.
    Regards,
    Navin.

    Hi All,
            I have problem in converting Spool to PDF format.
    Scenario : I have a spool which has non-English characters. I am using CONVERT_ABAPSPOOLJOB_2_PDF  FM to perform conversion. But my output is having junk values( ie # ) for non-English characters. Any pointers to solve this issue will be appreciated.
    I even tried with report RSTXPDFT4 , it also gives me the same junk characters.
    Regards,
    Navin.

  • Alignment problem in converting smartform printpreview into PDF

    Hi all,
    I am getting some alignment problem in converting smartform printpreview into PDF format, i.e the format of PDF is different from printpreviw of smartform.
    kindly suggest something so that alignment is not changed while converting to PDF.
    Regards,
    Sumalatha

    use below f.m to convert it into 255 characters....
         CALL FUNCTION 'QCE1_CONVERT'
            TABLES
              t_source_tab         = i_tline
              t_target_tab         = so_ali[]
            EXCEPTIONS
              convert_not_possible = 1
              OTHERS               = 2.

  • TS1424 My iTunes and App store are opening in chinese language but I want to convert it into English... How to do that???

    My iTunes and App store are opening in chinese language but I want to convert it into English... How to do that???

    As far as I know the language of the two stores on the iPad (iTunes and the App Store) can't be changed - they should be in the language of the country where your account is based (if they aren't correct then try logging out of your account by tapping on your id in Settings > Store and then log back in).

  • Is there a software for InDesign that will translate my english text into spanish text

    I have InDesign files in English text. Is there a software that will translate text into Spanish?
    Thanks,
    Sharon

    It's well worth paying someone who knows both languages well to do the translating.
    With software translation, at best, you get a rough translation. At worst, (especially when you can't read the language you are translating to), you could get something like this:

  • Any problem free English to Spanish Apps?

    I'm looking to find an App that'll help me learn Spanish. Will be installing it on my iPhone 3G. My concern is one that won't cause me any headaches with lockups and the like. Maybe someone out there that has an English to Spanish App can make a recommendation.

    its not an app but i bought the Michel Thomas guide to learning french from itunes - he is the king of learning new languages. His courses are expensive but in my mind well worth the money. I learnt enough french to get me around france and made the journey much more enjoyable - my boyfriend was really impressed when a waitress gave me the french menu but the people on the next table (who were speaking English) were given the english menu - she must have thought my accent was fab
    Good free app is talking spanish phrase book - is not learn spanish guide = is more for when you are in country to translate but may be good starting point

Maybe you are looking for

  • Iphoto-iphone sync weirdness after upgrading to Mavericks

    I didn't receive any replies on the Mavericks board, so I'll repost this here.  Really puzzled and annoyed. recently upgraded my iMac to Mavericks from Snow Leopard (early adopter that I am).  Much has gone more smoothly than I expected. However, one

  • My iPod first gen is not charging or turning on! What's wrong with it?

    Help

  • SELECT-OPTIONS in Screen

    Hi, I am trying to create select - options in Screen , i.e. not the selection screen but a custom screen, say 9000. I can make the text boxes etc for having the select options. But How do I simulate the button wchich comes after select options. It wo

  • Site too small on New Palm Pre and Blackberry Pearl

    I have a site that is pretty simple. It contains no tables accept for forms and input buttons. And isn't overloaded with CSS. It was orginally designed for keypad devices and has a width of 176px. Everything is spaced by either <p> or <br> tags with

  • Ethernet speeds from modem to Airport

    Hey guys, My current modem/router is a Belkin with 10/100 Ethernet. But I am considering an Airport extreme/Time Capsule for it's GigE ports, Easy Hard Drive Sharing, and Setup, plus all the other selling points. But I will need a new modem to go wit