Translation problem , While conversion from English to Poland

Hello Gurus
Pl suggest  Translation problem , While conversion from English to Poland  getting message
"Code page not found for Poland "
Code page 1401 exits in system
SAP version 4.6C
Best regards
Krish

Dear Vamsi,
Please check the below lonk may be it heps.
Translation to different languages. How??????
Regards
Pranay

Similar Messages

  • I want to translate output of JSP from English to HINDI and other language.

    hi frens !!
    i want to translate output of JSP from english to HIndi and other languages.I need the class which could traslate the Output in other languages.
    Thanks and Regards
    Allwyn

    hi frens !!
    i want to translate output of JSP from english to
    HIndi and other languages.I need the class which
    could traslate the Output in other languages.
    Thanks and Regards
    Allwynit looks like your translator is not working correctly. read up on internationalization.

  • 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

  • Translations of SAP Script from English to Spanish

    Hi All,
    I need to do translate one of the SAP script from English to Spanish. Could anyone please help me how to achieve this?
    Thank you in anticipation.

    Hi Nikhil,
    You can use transaction SE63 to do this: Translation->long Texts->SAPscript->Forms.
    Regards,
    John.

  • Problem while issueing from batch

    Dear Gurus
    Suppose I have got a finished product x for this I have maintained a bom of suppose a, b,c all three roh.Out of these 3 I have say c batch managed. Through mb1c suppose  I recieved roh c in different batches and kept them in the store.Now after creating production order in the order bom I am mentioning batch for the material c i.e I am telling from which batch it should issue.While issueing from mb1a to the order if I issue full quantity of c then the sytem is doing it without any problem from that batch that I mentioned in production order.If suppose I issue partial quantity of c then also it is taking but if I again try to issue the rest of the partial quantity the system is giving the error message 'issue quantity is greater than the reservation quantity'.For other roh which are not maintained in batch the system is allowing  to issue as many number of times as required up to the reservation quantity.
    Please tell me the reason why it is behaving like this
    Regards
    Sandip Sarkar

    Hi,
    As per the scenario given by you, you are not using the Automatic Batch determination Process for system to check the stock of BOM item material and assign the btach in Production order.
    You are assigning manually the btach number in the production order component overview against the component. As you are not issuing the material in a single storke system is giving this message.
    As suggested by Brahmankar you can either set the message as "Warning"  OR  "Balnk (No Information)"  in Tcode : OMCQ and then try issuing the material against the production order in partial qualtities.
    Hope this will help you.
    Regards
    Rdahka mk

  • Problems while retrieving from content repository

    Hi,
    I am facing problems while retrieving documents stored the content repository. I have some pdf files as well as text documents stored in the content repository. I need to get retrieve the contents of the text files. My problem lies with how to retrieve the data from the files.
    I have used SCMS_URL_GENERATE, followed by the FM ''HTTP_GET''.  Though I  do get the File id , my problem is how to proceed from this point. Should i wriite an RFC ?
    Thanks and Regards,
    Anie

    Hi,
    I checked the code one again - SCMS_URL_GENERATE is used to send url to the user (to open file in web browser).
    SCMS_HTTP_GET code looks like this:
    CONCATENATE <ls>-vbeln space <ls>-optarcnr
      INTO lv_vbeln_obj
      RESPECTING BLANKS.
    SELECT SINGLE *
      FROM toa01
      WHERE sap_object EQ 'VBRK'
        AND archiv_id EQ co_arch
        AND ar_object EQ 'SDOINVOICE'
        AND object_id EQ lv_vbeln_obj.
    CALL FUNCTION 'SCMS_HTTP_GET'
      EXPORTING
        crep_id   = co_arch
        doc_id    = toa01-arc_doc_id
        comp_id   = 'data'
        length    = 0
        no_cache  = no_cache
      IMPORTING
        length    = comp-size
        mimetype  = comp-type
      TABLES
        data      = comp-bin
      EXCEPTIONS
        not_found = 1
        OTHERS    = 2.
      IF sy-subrc IS NOT INITIAL.
        PERFORM log_create USING <ls>-vbeln.
      ENDIF.
    IF comp-bin IS NOT INITIAL.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          bin_filesize = comp-size
          filename     = dstpc
          filetype     = 'BIN'
        TABLES
          data_tab     = comp-bin
        EXCEPTIONS
          OTHERS       = 1.
      IF sy-subrc IS NOT INITIAL.
        PERFORM log_create USING <ls>-vbeln.
      ELSE.
        MESSAGE s000(38) WITH 'Success'.
      ENDIF.
    ENDIF.
    Regards,
    Przemysław

  • Problem while migrating from JSF1.1 to JSF1.2

    I'm facing the following issues while migrating from WAS 6.1 to WAS7.0
    For this I have upgraded Jsf 1.1 to 1.2 and webmodule to 2.5, and following errors I'm having...
    1. Description     The method getExceptionMessageString(String) is undefined for the type Util
    2. Description The method getMyForm(UIComponent) in the type CommandLinkRenderer is not applicable for the arguments (FacesContext, UICommand)     
    3. Description     The method getName() is undefined for the type HtmlBasicRenderer.Param     LinkRendererWithName.java
    4. Description     The method getParamList(UIComponent) in the type HtmlBasicRenderer is not applicable for the arguments (FacesContext, UICommand)
    5. Description     The method getValue() is undefined for the type HtmlBasicRenderer.Param     LinkRendererWithName.java
    Any alternative methods to those above methods in JSF1.2?
    or am I need to upgrade any of the jaf dependencies?
    Any suggestions are appreciated.
    Thanks

    i_oss wrote:
    But you should consider implementing your Renderers only using the API and not extending the com.sun.faces.* implementation classes, or you might end up changing your code again on your next jsf updates.Hm, good thinking. I didn't think about the split between the API and the implementation.
    OT question on that subject: is it really good design to have that split? JSF, JAXB, JAX-WS, even CDI has an API and an implementation part to it. But do we really need that? In the case of JSF, you have Mojarra and Myfaces (and some other obscure JSF implementation I believe). But why would you use Myfaces over Mojarra since they both solve the same problem and are both actively developed? Why do we have to deal with API/implementation conflict hell that you can often find when using JAXB, especially in a Mavenized environment? We have Weld as the implementation for CDI. What would move anyone to make a 'competing' implementation of it?
    For something like JPA I can at least understand it; the persistence providers were already there before JPA saw the light of day. There was no need for Sun to create a competing implementation, so they provided the API in stead. But in all other cases... I just don't get it.

  • Urgent : problem while migrating from forms 6i to 9i

    We are trying to upgrade forms 6i to forms 9i.
    One of our forms is using the host command to call a shell script . This command worked successfully in the form when it was
    in character mode in forms 6i. But we are facing problems while deploying it on web using forms9i.
    Would appreciate an early response.
    Regards ,
    Pooja

    Hi Pooja,
    1. Please check out the script by running it manually in the App Server Machine.
    2. If you are using any environment variables in the shell script, that are not defined in the shell script itself, then try defining in the shell script itself. Because, the environment variable that you are using might not be availble for the script while running using host.
    HTH,
    Regards,
    Arun

  • Language conversion from english - chinese

    Hi,
    I have a requirement that i need to take a report after converting the Employee name and address details from english to chinese.
    Plz let me know, if anyone have an idea on the same.
    Thanks & Regards,
    Raju
    Edited by: V R K Raju P on Feb 19, 2010 2:06 PM

    Raju,
    Elaborate your exact requirement. Do you want to pull a report with employee name and address in chinese? or do you want to know how to maintain a employee name and address in chinese?.
    For later question you may have to handle by enhancing your infotype 0001 and 0006 which should make the user to enter his
    details in china and th same will be stored in PA0001 and PA0006 table. Your custome report can later read these tables to display the chinese details of these fields.
    Regards
    Nanda

  • Problem while migrating from Sybase to Oracle using Quick Migrate

    Hi,
    For SQL Developer version 2.1, while migrating from sybase to oracle, Using Quick migrate, during data move step, for the rows having ''(Blank) values in TEXT data type in SYBASE, which is convertd to CLOB in Oracle, the migration for that table terminates at that row.
    However, NULL values in Sybase TEXT data type are successfully inserted in Oracle CLOB.
    How can we overcome this?

    reproduced and see exception in console, bug logged.
    Edited by: Jade Zhong on Feb 1, 2010 6:10 PM

  • How to resolve the encoding problem while migration from informix9.4

    When I migrate the informix9.4 database, there occur a error while migrate the data from informix to oracle.
    Because the source tables has a column which type is "vchar", the some row's data length more the 4000, so migration workbench convert this column type from "vchar" to "clob" automaticly. But when the worbench has created the oracle model, and then migrate the data, there occured this error:
    java.io.UnsupportedEncodingException: ISO2022CN_GB
    java.sql.SQLException: index miss IN or OUT param:: 9
    +     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)+
    +     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)+
    +     at oracle.jdbc.driver.OraclePreparedStatement.processCompletedBindRow(OraclePreparedStatement.java:1536)+
    +     at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2900)+
    +     at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:2996)+
    +     at oracle.mtg.migrationServer.LoadTableData._migrateTableData(LoadTableData.java:1473)+
    +     at oracle.mtg.migrationServer.LoadTableData.run(LoadTableData.java:326)+
    +     at oracle.mtg.migration.WorkerThread.run(Worker.java:268)+
    The encode in the source informix database is "zh_CN.gbk", and the encode in the destination database is "zh_CN.gbk", why this prompt the convert error?
    Another information is that excluding this table, other tables can migrated success.
    So, I guess this problem must has association with the type conversation which from "vchar" to "clob", can anyone help me with this, Thanks.

    Hello,
    well, the limit of 4000 is clear. From the Oracle® Migration Workbench Reference Guide for Informix Dynamic Server Migrations:
    VARCHAR(m,r)
    The Informix Dynamic Server VARCHAR data type stores varying length single-byte and multibyte character strings of letters, numbers. and symbols. The maximum size of this column is m, that can range from 1 to 255. The minimum reserved space is r. This is optional and defaults to 0 if not specified. The minimum reserved space can range from 0 to 255.
    The comparable Oracle data type is VARCHAR2(n) that also stores variable-length character strings. An Oracle VARCHAR2(n), however, can have a maximum string length of between 1 and 4000 specified for n.
    Specifying a minimum reserved space is useful if the data in a row is initially small but is expected to grow at a later date. If this is the case then, when migrating Informix Dynamic Server tables that contain VARCHAR columns consider increasing the PCTFREE value in the storage clause for these tables in the Oracle database. If this column is used in an index, then the PCTFREE values for the corresponding index storage should also be considered. For indexes based on VARCHAR columns, Informix Dynamic Server allocates the maximum storage.
    So it is not surprising that the workbench is converting a VARCHAR with a length of more than 4000 to a CLOB.
    But that does not explain the encoding exception. This might be a problem of the Informix JDBC driver.
    Is the Informix JDBC Driver Programmer's Guide helpful for you: http://publibfi.boulder.ibm.com/epubs/pdf/6435.pdf
    Can you reproduce the problem with a Java program against your Informix database using your Informix JDBC driver?
    Which version of Informix JDBC driver are you using?
    Best regards
    Wolfgang

  • Problem while cloning From RAC to Non RAC

    Hi
    Can any body help me to solve this problem occured while cloning my RAC database of EBS 12.06 to Non RAC
    APPS Password : Log file located at /dump/rmsbkp/db/tech_st/10.2.0/appsutil/log/RMS_devmdb1/ApplyDBTier_03240738.log
    - 50% completed Determining Source system database type ("single" or "rac").
    RC-50004: Fatal: Error occurred in ApplyDatabase:
    error in opening zip file
    ERROR while running Apply...
    Wed Mar 24 10:42:07 2010
    ERROR: Failed to execute /dump/rmsbkp/rac/oracle/product/10.2.0/rac/appsutil/clone/bin/adclone.pl
    Please check logfile.
    oradev@devmdb1/dump/rmsbkp/rac/oracle/product/10.2.0/rac/appsutil/clone/bin$>
    I Passed the following parameters :
    Provide the values required for creation of the new Database Context file.
    Target System Hostname (virtual or normal) [devmdb1] :
    Target Instance is RAC (y/n) [y] : n
    Target System Database SID : RMS
    Target System Base Directory : /dump/rmsbkp/rac/oracle/product/10.2.0/rac
    Target System utl_file_dir Directory List : /usr/tmp
    Number of DATA_TOP's on the Target System [2] : 1
    Target System DATA_TOP Directory 1 : /dump/rmsbkp/db/apps_st/data/RMS/datafile
    Target System RDBMS ORACLE_HOME Directory [dump/rmsbkp/rac/oracle/product/10.2.0/rac/db/tech_st/10.2.0] : /dump/rmsbkp/db/tech_st/10.2.0
    Do you want to preserve the Display [rmsmdb1:0.0] (y/n) ? : n
    Target System Display [devmdb1:0.0] :
    Do you want the the target system to have the same port values as the source system (y/n) [y] ? : y
    RC-50220: Warning: Database Port: 1525 is not free. Unable to preserve the port settings from source system.
    Target System Port Pool [0-99] : 7
    and here are the errors from logfile:
    /dump/rmsbkp/db/tech_st/10.2.0/appsutil/scripts/RMS_devmdb1/addlnctl.sh start RMS
    You are running addlnctl.sh version 120.1
    Logfile: /dump/rmsbkp/db/tech_st/10.2.0/appsutil/log/RMS_devmdb1/addlnctl.txt
    Starting listener process RMS ...
    Listener RMS has already been started.
    addlnctl.sh: exiting with status 0
    .end std out.
    .end err out.
    checking DB Connection...
    DEBUG: checkDBConnection in()
    ADX Database Utility
    getConnection() -->
    sDbHost : devmdb1
    sDbDomain : mof.gov.kw
    sDbPort : 1528
    sDbSid : RMS
    sDbUser : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@devmdb1.mof.gov.kw:1528:RMS
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1528))(CONNECT_DATA=(SERVICE_NAME=RMS)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1528))(CONNECT_DATA=(SERVICE_NAME=RMS.mof.gov.kw)))
    Exception occurred: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    DEBUG: checkDBConnection out()
    Thanks for your help
    Mohamed

    Hi I passed the correct parameters and i reached the following:
    / 50% completed Determining Source system database type ("single" or "rac").
    | 50% completed RC-50004: Fatal: Error occurred in ApplyDatabase:
    Control file creation failed
    ERROR while running Apply...
    Wed Mar 24 12:53:05 2010
    ERROR: Failed to execute /dump/rmsbkp/RMS/rac/oracle/product/10.2.0/rac/appsutil/clone/bin/adclone.pl
    Please check logfile.
    In the logfile:
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : devmdb1
    sDbDomain : mof.gov.kw
    sDbPort : 1525
    sDbSid : RMS
    sDbUser : apps
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@devmdb1.mof.gov.kw:1525:RMS
    Exception occurred: java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    HPUX-ia64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1525))(CONNECT_DATA=(SERVICE_NAME=RMS)))
    Exception occurred: java.sql.SQLException: ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    HPUX-ia64 Error: 2: No such file or directory
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1525))(CONNECT_DATA=(SERVICE_NAME=RMS.mof.gov.kw)))
    Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    The Connection descriptor used by the client was:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=devmdb1.mof.gov.kw)(PORT=1525))(CONNECT_DATA=(SERVICE_NAME=RMS.mof.gov.kw)))
    Connection could not be obtained; returning null
    -------------------ADX Database Utility Finished---------------
    RC-00118: Error occurred during creation of database
    Raised by oracle.apps.ad.clone.ApplyDatabase
    Thanks
    Mohamed

  • "Default " problem while migrating from mysql to oracle.

    I'm migrating from mysql3.23 to oracle9i via the OMWB tool.While migrating i'm getting an error message "Failed to create default for the table <table>:ora00907 missing right parenthesis".This error is due to the difference in the syntax used for the keyword "default" in mysql and oracle.In mysql we have to give after the Not Null option whereas in oracle we have to give before Not Null.
    The problem is i'm migrating via the OWMB tool.Is is possible to handle this error with the help of tool itself.
    Thanks
    Jai.M

    Jai, I'm having Frank have a look at this for you to see if we can replicate it ans help solve this issue for you. are there any issues logged on the mysql site regarding saving blobs as file?
    thanks
    Barry

  • CLIENT_OLE2 date formatting problem while reading from Excel

    I have installed webutil package and tested that everything works by running webutil_demo as well as WU_TEST_106 form. Then I had implemented reading from Excel sp. sheet using Oracle note 813535.1 (This note has OLE2 code sample on how to read an Excel file). Everything fine till now. The problem started when I have a date fiield to read from Excel. The field where the value is going to has format mask of 'DD-MM-RRRR'. When the date is displayed in the form, it shows '01-AUG-0009' instead of '01-AUG-2009'. I tried changing the date format to different formats in Excel but no go. I found one blog which stated that treat the date as number and use e.g. "cell_date_value:=to_date('01/01/1900','DD/MM/YYYY')+client_OLE2.get_num_property(cel,,'Value')+2" but it too did not change the display. Then I tried debugging and stepping through the code..the only thing I noticed that OLE2 function displayed the date with 2 digit year as 09 and when the code completed execution, the date went back to '01-AUG-0009'. Casting with 4 digit year at every step in the code is not helping to change final date display correctly. Any idea?!!!

    Hi,
    While reading the date column from excel, try using
         m_col_val := OLE2.get_char_property(Workcell,'Text');
    Instead of
         m_col_val := OLE2.get_char_property(Workcell,'Value');
    I think you problem will be solved...
    hello...i meant client_OLE2
    Regards
    Dora
    Edited by: Dora on Sep 16, 2009 11:05 AM

  • RAW Highlights Problem with conversion from Canon 5D

    Hello All,
    I recently upgraded my camera from a Canon 20D to a Canon 5D. I shoot only RAW and I recently shot a couple of images of a beautiful sunset out West. I was bracketing the exposures all over the place since the light-drk contrasts were really large and the light was changing so fast. The images looked great on the Camera's LCD but, when I ran them through Aperture I got some really nasty artifacts on the conversions around the highlights. Here are examples:
    Full scene
    http://www.flickr.com/photo_zoom.gne?id=307781903&size=l
    Full scene detail:
    http://www.flickr.com/photo_zoom.gne?id=307781906&size=o
    Another example:
    http://www.flickr.com/photo_zoom.gne?id=307781905&size=l
    the problem I see is with the nasty transition from yellow to white in the blown highlight. I also don't like the broad areas of flat yellow - the tonality is completely missing. These are the default RAW settings exported to JPGs and the poor image quality of the highlights looks identical on screen between the RAW images in Aperture and these JPGs, so it's not a JPG artifact.
    I don't recall having this problem with the 20D - is the 5D conversion more difficult for Aperture? Might I be doing something wrong? Is there a way to fix this? I ran the RAW file through lightroom and it didn't have the same problem. Please help!
    -Steve G

    I have the same problems when I shot the sun rise and sun set.. It is very nasty transition from yellow to white or white to yellow from the sun. I don't think Aperture can fix that. It was over the exposure with the sun. And yes, it looks great on 2 inches LCD. I think you need to use filter when you shoot the sunset or sunrise to get the perfect lighting. Let me know, if you know the tweak with Aperture.. I will check out lightroom... I have alot of sunet and sunrise photos to correct.. and i checked out this place http://www.all-creatures.org/pics/sunset.html they have the same problems with yellow to white...

Maybe you are looking for

  • Black inkchange unrecognized by printer

    On a four ink printer, I replaced all four inks but the black one isn't recognized by the printer. I repeated the installation but I got the same issue; My printer  model is HP Photosmart 5514

  • Where did autofill go in the new pages program?

    The old version of pages allowed me to input minimal info into a cell (account number in my case) and the program would automatically "auto fill" the remaining info for me saving countless hours of cut and pasting.  Has anyone seen it in the new vers

  • Safari 5.1 RSS crashes in Lion

    I've searched the discussions for my problem and haven't had any luck finding a solution. Here's what's happening: Since upgrading to Lion, Safari has been crashing almost every day but only when I check my RSS feeds. The spinning ball appears and th

  • Exporting Oracle 10g reports into Excel 2007

    Does anybody knows if there exits compatibility with the export function to Excel 2007? Some users will be installing this Excel version and i don't know if the formatting and displaying will be similar as using previous versions. They use the export

  • Oracle Services for MTS in multiple servers - does not work

    I am having problems with running transactional component (COM+) using Oracle Services for MTS. I've been through pretty much all the messages in this forum, and I believe that I have configured things correctly. Here are the details. Sorry for the l