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.

Similar Messages

  • 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

  • "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

  • 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

  • Problems while migrating from mySql DB to oracle DB

    Hi All,
    I'm using sql developer tool to migrate from MySql DB to oracle DB. I followed the below steps.
    1) I've created oracle and mysql connections successfully.
    2) I've captured Mysql data and I'm able to see the captured model in ' Captured Models ' window. After that right clicked on the captured model and selected ' Set Data Mapping'. Selected ' apply ' button without changing anything. After that I've right clicked on the captured model and selected ' Convert to Oracle Model ' . It has shown the converting process. After some time it has shown conversion completed successfully.
    But converted model is not visible in ' Converted Models ' window.
    Can anyone kindly assist on how to migrate from MySql Db to Oracle DB?
    Thanks,
    Saty.

    Hi,
    We did mysql to oracle migration some time back and played with workbench tool and many other softwares available.
    However our experience was not so good with these tools, each tool had its own limitation and was not able to migrate 100% data. Even the speed of migration was too slow which would have violated our production SLAs.
    So after spending a month with these tools we finally decided to create our own scripts for data migration. We used tools like TOAD and SQL Yok to create the DDL for the tables and other DB objects.
    For the data migration we downloaded the mysql data in flat files and used sql loader to upload the same data in oracle. Even if this was a time consuming activity but this resulted in 100% data migration with no record getting failed and the time taken for this activity was around 6 Hrs in comparison to time of 24-28 Hrs that the workbench tool took.
    Amar

  • 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

  • Problem while migrating from Was6.1 to WAS7.1

    I'm in the process of upgrading WAS v6 to WAS V7, so for that first i'm upgrading JSF 1.1 to 1.2.
    I just changed faces-config.xml and org.eclipse.wst.common.project.facet.core.xml version 1.1 to 1.2.
    I thought these 2 changes are good to upgrade JSF.
    but I'm seeing the following error.
    Error creating component com.ibm.ws.runtime.component.CompositionUnitMgrImpl@20f620f6
    com.ibm.ws.exception.RuntimeWarning: com.ibm.ws.webcontainer.exception.WebAppNotLoadedException: Failed to load webapp: Failed to load webapp: Failed to process bindings for metadata
         at com.ibm.ws.webcontainer.component.WebContainerImpl.install(WebContainerImpl.java:382)
    Any ideas around this problem would be appreciated.
    Thanks
    Edited by: user5447944 on Jun 6, 2011 7:30 AM

    Hi,
    We are migrating WAS6.0 to WAS 7.0 - JSF1.1 to JSF1.2
    We have modified faces-config file as per your suggestion. But while trying to access the application we are getting the below error,
    [6/7/11 22:40:36:520 EDT] 00000037 SystemOut O 2011-06-07 22:40:36,519 [WebContainer : 0 - ClientControllerServlet - ] DEBUG - action=locales
    [6/7/11 22:40:36:537 EDT] 00000037 AdfFacesFilte W oracle.adf.view.faces.webapp.AdfFacesFilterHelper verifyFilterIsInstalled The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    [6/7/11 22:40:36:579 EDT] 00000037 lifecycle E JSF1054: (Phase ID: RESTORE_VIEW 1, View ID: "") Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@403b403b]
    [6/7/11 22:40:36:590 EDT] 00000037 SystemOut O 2011-06-07 22:40:36,590 [WebContainer : 0 - SessionCheckPhaseListener - ] DEBUG - page will be shown as user[null]
    [6/7/11 22:40:36:590 EDT] 00000037 SystemOut O 2011-06-07 22:40:36,590 [WebContainer : 0 - SessionCheckPhaseListener - ] DEBUG - show page[true]
    [6/7/11 22:40:36:591 EDT] 00000037 SystemOut O 2011-06-07 22:40:36,591 [WebContainer : 0 - CustomFacesServlet - ] ERROR - javax.servlet.ServletException: viewId:/brazil/web/brazil/client/languages.jsp - View /brazil/web/brazil/client/languages.jsp could not be restored.
    [6/7/11 22:40:36:869 EDT] 00000037 AdfFacesFilte E oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl _setupJboDomainStuff
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
    at java.lang.reflect.Method.invoke(Method.java:611)
    at oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl._setupJboDomainStuff(AdfFacesFilterHelperImpl.java:192)
    at oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl.init(AdfFacesFilterHelperImpl.java:64)
    at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.init(AdfFacesFilterImpl.java:96)
    at oracle.adf.view.faces.webapp.AdfFacesFilter.init(AdfFacesFilter.java:58)
    at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.init(FilterInstanceWrapper.java:140)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager._loadFilter(WebAppFilterManager.java:548)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.loadFilter(WebAppFilterManager.java:462)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.getFilterInstanceWrapper(WebAppFilterManager.java:319)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.getFilterChain(WebAppFilterManager.java:379)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:860)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:934)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:502)
    at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:179)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3933)
    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:276)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:931)
    at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1583)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:186)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:445)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:504)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:301)
    at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:83)
    at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
    at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
    at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
    at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
    at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1604)
    Caused by: java.lang.IllegalStateException: ELResolvers cannot be added after the application initialization is complete.
    at com.sun.faces.application.ApplicationImpl.setPropertyResolver(ApplicationImpl.java:424)
    at oracle.adfinternal.view.faces.webapp.AdfModelHelper.init(AdfModelHelper.java:37)
    ... 34 more
    Could you please help us to resolve this issue?
    Regards,
    Mohanraj M

  • Tabular from problems while migrated from APEX 3.0 to 4.0.2

    We are planning to upgrade our existing applications from 3.0 to 4.0, but I have noticed a few things about the tabular forms.
    1. The wizard generated tabular form with checkboxes (and "select all" checkbox in the heading) functionality stopped working. The form has a link to the details page as a first column, and updateable column and checkboxes as the last two columns of the form. After the upgrade to 4.0 the "select all" checkbox is moved as a first heading while the checkboxes are still being the last column of the form and the form stopped working... unless you move the checkboxes as the first column in the form. It makes the form looking a little bit awkward (checkboxes, then the image link to the details page, then other columns and the updateable column at the end) and also inconvenient to jump from the left to the right for each record...
    2. The tabular for still displays the headings and the export to csv link even when no data found... in 3.0 none of these happens.
    Does anyone have any solution/work around for these?
    Thank you.
    Zhanna.

    Finally finally found the problem.
    The login page 101 was using a page template called "login". This template's Footer had a #FORM_CLOSE# text substitution tag that was commented out. As soon as I uncommented the tag out it worked.
    Obviously this tag wasn't so critical in pre 4.1 and 4.2 hence why the problem wasn't previously exposed.
    This is what the #FORM_CLOSE# tag causes to be generated within the HTML. I'm guessing that the page submit handler is looking for the hidden MD5 checksum item in order to prevent page manipulation of sorts. Because it can't find the tag it's throwing the error message.
    <input type="hidden"
           name="p_md5_checksum"
           value=""  />
    <input type="hidden"
           name="p_page_checksum"
           value="B1CDAA06FE82920960DC892FC092C827"
           id="pPageChecksum" />
    </form>
    NOTE: The original template did not have a closing </form> html tag, so not sure how it ever worked in apex 4.0 or prior. It's certainly not visible looking at the HTML. Perhaps Apex 4.0 is less sensitive about that.

  • Problem while "migrating" from Windows to Mac OS X

    Over the last few months my Macbook was damaged and in repair. At that time I used a Windows PC instead and it was no problem to keep on using my old iTunes library file after I added the file extension ".itl".
    Now my Macbook is back and I wanted to open my iTunes library using Mac OS X, not expecting any bigger problem.
    To my astonishment iTunes keeps on crashing, showing the following error message: "The program iTunes could not be opened. An unknown error occured (13001)" (translated liberately, as my system is set to German).
    On both operating systems iTunes is running in the newest version. What could help solving my problem is the information that my iTunes Media folder including my iTunes library files are stored on an external harddrive formatted in HFS+.
    Windows had writing access on this file system using the software "Macdrive" in version 9.
    I already tried moving the library files to my desktop and opening them from there, also I tried to create a new library just for testing purposes on the same harddrive. Both tests failed with the same error message.
    Windows is still able to open the library as it was before.
    I searched for similar problems on the internet but couldn't find any help, so I hope that someone on here has any helping tips!

    Finally figured out the problem on my own. My external hard drive was named <Mobile 2.5">. In this thread I read about others having a problem when their hdd was named in a comparable way (e.g. <storage for 21" iMac>).
    I renamed my drive to <Mobile 2.5> and the problems are gone!

  • Problems while migrating PDK applications from Portal 7.1 to Portal 7.3

    Hi All,
    I am facing a problem while migrating a PDK application from Portal 7.1 to Portal 7.3.
    Since Portal 7.3 doesnt support PAR files any more it provided with a tool to convert the PAR to an EAR file and deploy the resultant EAR to the new portal.
    I converted the PAR into EAR and deployed the file but the application is not executing. When I looked into the log files i found the following exception. The application is not able to identify the tag "documentBody". I checked the protalapp.xml and the "SharingReference" is properly maintained in the file but the error message suggests that its not able to fine the reference to the tagLib uri maintained in the portalapp.xml
    Now my question is why is it not able to obtain a reference to the taglib? Did any one face similar problem previously. Can you please provide me with any document for migrating / developing PDK application for Portal 7.3
    Parser [PRT] - JspParseException is thrown while parsing JSP file </SAP/sap/POD/J00/j2ee/cluster/apps/TestOrg.co.uk/TestOrg~cas~ptlsvc/servlet_jsp/CASPortalService/root/WEB-INF/pagelet/CASFramework.jsp> :
    com.sap.engine.services.servlets_jsp.jspparser_api.exception.JspParseException: Cannot parse custom tag with short name [documentBody].
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.customTagAction(JspElement.java:969)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.action(JspElement.java:228)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.customTagAction(JspElement.java:994)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.action(JspElement.java:228)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.customTagAction(JspElement.java:994)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.JspElement.action(JspElement.java:228)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:59)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.syntax.ElementCollection.action(ElementCollection.java:69)
    at com.sap.engine.services.servlets_jsp.jspparser_api.jspparser.GenerateJavaFile.generateJavaFile(GenerateJavaFile.java:72)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.parse(JSPProcessor.java:272)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.generateJavaFile(JSPProcessor.java:196)
    at com.sap.engine.services.servlets_jsp.server.jsp.JSPProcessor.parse(JSPProcessor.java:128)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.getClassName(JSPChecker.java:377)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.compileAndGetClassName(JSPChecker.java:306)
    at com.sap.engine.services.servlets_jsp.jspparser_api.JSPChecker.getClassNameForProduction(JSPChecker.java:236)
    Thanks in advance
    PK

    Hi Amit,
    Thanks for your reply. I could see some progress after "thoroughly" going through those links. Thanks a lot (gave points too )
    Now I am facing another problem. The application did deploy successfully but with a warning. When i checked the warning it says that the deployment was successful but can not be started.
    The log file has the following error message.
    Global [startApp] operation of application [newsint.co.uk/newsint~cas~ptlsvc] finished with errors for [5] ms on server process [2721950] [
    >>> Errors <<<
    1). com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Application newsint.co.uk/newsint~cas~ptlsvc cannot be started. Reason: it has hard reference to the following resources, which are currently not available on the system: hard to SAPPORTAL/com.sapportals.htmlb (public) (f=true, cl=false); .
    In order to start the application, components that provide the missing resources should be successfully deployed.
    at com.sap.engine.services.deploy.server.ReferenceResolver.isResolved(ReferenceResolver.java:137)
    at com.sap.engine.services.deploy.server.LifecycleController.startReferencedComponents(LifecycleController.java:173)
    at com.sap.engine.services.deploy.server.application.StartTransaction.beginCommon(StartTransaction.java:200)
    at com.sap.engine.services.deploy.server.application.StartTransaction.begin(StartTransaction.java:166)
    at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:421)
    at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhases(ParallelAdapter.java:465)
    at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhases(StartTransaction.java:605)
    at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:1828)
    I dont understand why is SAPPORTAL/com.sapportals.htmlb is not available. As per my understanding it is some thing that should be available with the portal server by default.
    Any hints from any one?
    thanks in advance
    PK

  • Syntax errors while migrating from non- unicode to Uni code

    What are the syntax errors while migrating from non unicode to Uni code

    Hi Sudheer,
    u can get the information related to errors while migrating from non- unicode to Uni code from the below...pls go through...
    Note 765475 - Unicode Conversion: Troubleshooting
    these are the notes related to the issues of migration form non unicode to ounicode.
    Related Notes
    986907 - SQL Server settings for R3load based system copy
    954001 - Error fix: ILLEGAL_SUBSTRING_MODIFICATION in SUMG
    936441 - Oracle settings for R3load based system copy
    928909 - Repair table data in SUMG in Unicode systems
    895804 - Problematic rows in table DMEE_TREE_NODE
    895560 - Support for languages only available in Unicode system
    885441 - Common Migration Errors
    842788 - DB Multiconnect: Unicode Migration
    837173 - RADCUCNT in Unicode Conversion: Collective Note
    756534 - Automatic Assignment of Languages with Character Statistics
    753334 - Unicode Conversion: Problem in Japanese device types
    726954 - Private Use Areas in Unicode Systems
    722193 - RFC legacy non-Unicode clients and Unicode servers
    718329 - R3load terminates the export during a Unicode conversion
    695196 - Error in the export for Unicode migration
    672835 - Textflags could cause problems during Unicode conversion
    627764 - Unicode migration: table pools inconsistent after conversion
    614550 - Troubleshooting BC-I18
    587896 - Add. info on upgrade to SAP R/3 Enterprise Core 4.70 SR1
    573044 - Unicode conversion for HR application
    480671 - The Text Language Flag of LANG Fields
    379940 - Unicode based mySAP availability
    79991 - Multi-Language and Unicode support of SAP applications
    73606 - Supported Languages and Code Pages
    42305 - RSCPINST (I18N configuration tool)
    regards,
    rudra..
    Assign points if helpful

  • "App_DispatcherUnhandledException" cannot work while migrating from VSTS2010 to VSTS2013

    In the past, our project was developed in VSTS2010 and .NET 4.0, everything works well.
    Right now, while migrating from VSTS2010 to VSTS2013 and from .NET 4.0 to .NET 4.5.1, we found that the exceptions thrown from one UI thread cannot be caught and handled in main thread.
    I mean, once the exception is thrown,  the "App_DispatcherUnhandledException" cannot catch and handle it in Debug.
    During the migration, we don't change any codes and just update the project configuration file.
    Is anyone know how to solve this problem?
    Thanks so much!!

    Hello Zeng Wei,
    It seems we do not have an edition called VSTS2013, it is old version when in
    2005. Can I just understand you are upgrade your project from Visual Studio 2010 to Visual Studio 2013?
    Anyway, for App_DispatcherUnhandledException that cannot be raised, we can check the MSDN article:
    https://msdn.microsoft.com/en-us/library/system.windows.application.dispatcherunhandledexception.aspx?f=255&MSPPError=-2147217396
    If an exception is not handled on either a background user interface (UI) thread (a thread with its own
    Dispatcher) or a background worker thread (a thread without a
    Dispatcher), the exception is not forwarded to the main UI thread. Consequently,
    DispatcherUnhandledException is not raised. In these circumstances, you will need to write code to do the following:
    Handle exceptions on the background thread.
    Dispatch those exceptions to the main UI thread.
    Rethrow them on the main UI thread without handling them to allow DispatcherUnhandledException to be raised.
    Another thing is that please make sure you have this code:e.Handled =
    true
    best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • 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

  • Multiple contacts created while migrating from blackberry to i phone 6

    while migrating from blackberry to i phone 6, i have inherited multiple contact lists. each is different in some way or the other. also, the one on my new phone is different. i need to merge all into one. how do it do it?

    Your question doesn't seem to be related to Microsoft Word at all. I suggest that you try a forum that deals with IPhone.
    Stefan Blom, Microsoft Word MVP

  • Fatal Error: Could not find Feature AnalyticsLinks in sharepoint 2010 while migration from 2007 site using stsadm command

    Fatal Error: Could not find Feature AnalyticsLinks in sharepoint 2010 while migration from 2007 site using stsadm command

    Hi ,
    Firstly, I need to verify the followings:
    Whether you created a feature called AnalyticsLinks and activatated it at SharePoint 2007 site.
    Whether you installed the feature at SharePoint 2010 site.
    Please deactivate the feature AnalyticsLinks, then migrate SharePoint 2007 site to SharePoint 2010, compare the result.
    Also , please check whether you have installed the feature AnalyticsLinks at your SharePoint 2010 site. If not, please install and activate it, compare the result.
    Here are some similar posts for you to take a look at:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/17b17bd3-126c-44d4-bd58-38dd613017a0/fatal-error-could-not-find-feature-reviewpublishingspd1055?forum=sharepointadminprevious
    http://mrin17.wordpress.com/2009/09/15/fatalerror-could-not-find-feature-s2siteadmin-while-importing-sites-from-different-server-at-sharepoint/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for