Unable to migrate portal content :-(

I want to move 2 iViews and a Authorization role from ABC System to XYZ System.
I found out that there seem to be 2 basic ways, I do not know enough about.
I went to the NetWeaver Enterprise Portal of the source System ABC -> System administration -> Transport packages -> Export. I do a right-click on the Folder "etcppp" create a new package, save it and download it to my personal computer.
In the second step I go to the NetWeaver Enterprise Portal of the target system ABC -> System administration -> Transport packages -> Import. I import it and find the package in the content-tree, but it does not unpack Where is my mistake ?
So I startet my second try:
I went to the NetWeaver Enterprise Portal of the source System ABC -> System administration -> content & actions -> Export and created a nice XML File. Up to now I do not understand why there seem to be 2 ways and 2 different file formats but I thought to give it a try. I downloaded the XML without any errors.
In the second step I go to the NetWeaver Enterprise Portal of the target system ABC -> System administration -> content & actions BUT it simply does not open! I startet the engine and the system new, but the branch stays hidden. What can I do ?
Please let me also know if there are any other possibilities to transport Portal Content.
Thanks in advance and Best Regards

Hi Paul,
      U need to add the 2 Views and Roles to the transport package.GoTo source System ABC -> System administration -> Transport packages -> Export--> Create new transport package > Click ur iview and from the context menu add the iview/role to the transport package> click on export.Download the same to ur local machine.
GoTo system ABC -> System administration -> Transport packages -> Import --> select the transport package from ur client and import.Make sure importis succesful.
Hope it Helps.
Regards,
Vinoth.M

Similar Messages

  • Migrating Portal Content from a previous release

    I am stuck up with a challenging task. I am new to Portals and will really appreciate your help.
    I have installed the new OAS 10.1.2 version and upgraded it to the Portal 10.1.4 version. There is a some Portal Content present on different OAS installations which are earlier versions of the server (9i and 10.0.3)
    Can i migrate this Portal Content to the new Portal Server (10.1.4)? Please provide me with the appropriate information.
    Thanks

    Hi,
    It is not possible to migrate portal contents to the different version of Portal. In order to export the portal contents both the source and destination machine should have same Portal version.
    As a work around you need to upgrade the Portal instance in other OAS to the highest Portal version(10.1.4).
    You can refer to the Note 263995.1 for portal export and import, and you can also find the portal export and import document in the below link:
    http://download.oracle.com/docs/cd/B14099_19/portal.1014/b19305/cg_imex.htm#i1030999
    Regards,
    Rajeshwari.

  • Migrate portal content from ep 7.0 to 7.3

    Hi,
    We have to migrate following content from EP 7.0 server to EP 7.3.
    - URL iViews with language translation
    - Application Integrator iViews
    - WPC content
    Please suggest what should be the approach ?
    Will all these portal content from 7.0 be compatible to 7.3 ?
    Regards,
    Anubha

    Hi,
    Check this below link
    SAP NetWeaver 7.3 How to Guides
    Regards,
    Nivas209

  • Unable to displat portal Content

    I am having issue in the portal 6.0 SP2 looks like the desktop innerpage link is missing from  default framework page , when I log on to the portal as Administrtaor I go to any table Content Administration, System Administrtation or user administration I do not see anything its giving the balnk page. Any help is appreciated.

    Hi Ajay,
    you could access directly the PCD page "Portal Content Studio" by using this URL:
    http://<YOUR_PORTAL_SERVER>:<PORT>/irj/servlet/prt/portal/prtroot/com.sap.portal.pagebuilder.IviewModeProxy?iview_id=pcd%3Aportal_content/administrator/super_admin/super_admin_role/com.sap.portal.content_administration/com.sap.portal.content_admin_ws/com.sap.portal.portal_content&iview_mode=default
    Login with a user that has the super_admin_role, navigate to Portal Content -> Portal Users -> Standard Portal Users -> Default Framework Page and check it there is a problem with the Destkop Innerpage (set to invisible like Ganesh mentioned).
    If you used the above link and you still get an empty page, check for error logs in the default.trc.
    Hope this helps,
    Robert

  • Unable to fetch Portal Content From PCD

    Hi Experts,
    I want to fetch all the contents of PCD folder.
    For this I wrote
    Hashtable env = new Hashtable();
        env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sapportals.portal.pcd.gl.PcdInitialContextFactory");
        env.put("com.sap.portal.jndi.requested_aspect","com.sap.portal.pcd.gl.PersistencyAspect");
        env.put("java.naming.factory.object", "__IPcdContext__");
         InitialContext ctx = null;
         DirContext dirCtx;
         try {   
              ctx = new InitialContext(env);   
              dirCtx = (DirContext)ctx.lookup("pcd:portal_content/Madhav");   
              PcdSearchControls cons = new PcdSearchControls();   
              cons.setReturningObjFlag(false);           cons.setSearchScope(PcdSearchControls.UNIT_ROOTS_ONLY_SCOPE);   
    //          dirCtx.addToEnvironment("",Constants.APPLY_ASPECT_TO_CONTEXTS);   
              NamingEnumeration ne = dirCtx.search("", "", cons);    
              wdComponentAPI.getMessageManager().reportSuccess((ne==null)+"SAN");   
              int i=0;   
              while (ne.hasMoreElements()) {
                          i++;                          
                   IPcdSearchResult sr = (IPcdSearchResult) ne.nextElement();      
                   wdComponentAPI.getMessageManager().reportSuccess(sr.getName()");     
                   wdComponentAPI.getMessageManager().reportSuccess(sr.getAttributes().get("com.sap.portal.pcm.Title").get()");     
                   wdComponentAPI.getMessageManager().reportSuccess(sr.getAttributes().get("com.sap.portal.pcd.gl.ObjectClass").get()");     
                   String location = "pcd:portal_content/Madhav"+sr.getName();     
    wdComponentAPI.getMessageManager().reportSuccess(location);    }}
        catch (NamingException e) {   
                     e.printStackTrace();
    But its not displaying any thing ,
    Folder id is (pcd:portal_content/Madhav)
    Can any expert help me.
    Regards Sanjay
    Message was edited by: sanjay chatterjee

    Hi Sanjay,
    Use this code..you will get all the roles from pcd.
    Hashtable env = new Hashtable();
              env.put(IPcdContext.SECURITY_PRINCIPAL, request.getUser());
              env.put(
                   Context.INITIAL_CONTEXT_FACTORY,
                   IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
              env.put(com.sap.portal.directory.Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_SEMANTICS);
              InitialContext ctx = null;
              DirContext dirCtx;
              List roleList = null;
              PEILookupVO lookupVO = null;
              try {
                   ctx = new InitialContext(env);
                   dirCtx = (DirContext) ctx.lookup("pcd:portal_content/");
                   PcdSearchControls pcdSearchControls = new PcdSearchControls();
                   pcdSearchControls.setReturningObjFlag(false);
                   pcdSearchControls.setSearchScope(
                        PcdSearchControls.SUBTREE_WITH_UNIT_ROOTS_SCOPE);
                   dirCtx.addToEnvironment(
                        Constants.APPLY_ASPECT_TO_CONTEXTS,
                        Constants.APPLY_ASPECT_TO_CONTEXTS);
                   NamingEnumeration ne =
                        dirCtx.search(
                             "(com.sap.portal.pcd.gl.ObjectClass=com.sapportals.portal.role)",
                             pcdSearchControls);
                   roleList = new ArrayList();
                   int i = 0;
                   while (ne.hasMoreElements()) {
                        i++;
                        IPcdSearchResult searchResult =
                             (IPcdSearchResult) ne.nextElement();
                        String location =
                             "pcd:portal_content/" + searchResult.getName();
    location  string should contain all the roles under "pcd:portal_content/"
    your code is correct except you are giving the wrong pcd folder address.
    If you want to get pages/iviews/worksets..change accordingly instead of
    com.sapportals.portal.page
    com.sapportals.portal.workset
    com.sapportals.portal.iview
    in the above code.
    Let me know if you need more help on this.
    Regards,
    Karthick

  • Migration of portal content from EP 6.0 SP 15 to NW 2004s Portal

    Hi,
    Our requirement here is to migrate Portal content from EP version 6.0 SP15 to the latest Netweaver portla (NW2004s). Expecting helpful suggestions from SAP EP gurus!!!
    All helpful answers will be rewarded. Gurus, please help!!!
    Cheers,
    L Buegg.

    Leena,
        These are the steps in migrating the portal content from the EP 6 SP15 to the Netweaver Portal (EP 7.0 or the NW 2004s Portal) in simple:
    1. Go to <b>System Administration -> Transport -> Portal Content</b>. Right click on the folder, you wish to transport. Select <b>New -> Transport Package</b> .
    2. Fill all the details (like name of the transport package, id etc) and then add the objects(iViews, Pages etc) you wish to transport to the newly created transport package by right clicking on the objects.
    3. Once the objects are all added, click on Export in the object editor of the Transport package and the export happens immediately.
    4. Navigate to Drive\usr\SAP\SID_Instance\Sys\global\pcd\Export of the EP 6 SP 15 Portal Server. You will see the epa file created during this export process.
    5. Copy this epa file and place it in Drive\usr\SAP\SID_Instance\Sys\global\pcd\Import folder structure of the NW 2004s Portal Server. Go to <b>System Administration -> Transport -> Import</b> and do the import as you would import any business package.
    This are the steps to export and import the portal content from one portal server to another portal server.
    Hope this helps!!!
    Sunitha.

  • Unable to expand Tree in EP   (e.g. Portal Content)

    Dear Portal Gurus,
    We are on EP 6.0,SP12.
    We are unable to expand any tree structure (including stanadard Tree Structure) inside EP.
    I get the following message :
    Could not load or refresh node Tree creation failed on node: pcd:portal_content .
    Pls let me know what needs to be done.
    Thx.

    when I exported a transport package I saved it on Portal conect and after doing all the transporting, when I opened the content administration and try to expand the portal content, I get the following error:
    Could not load or refresh node Tree creation failed on node: pcdportal_content
    <a href="http://ing.perez.googlepages.com/portal.jpg" target="_blank"><img src="http://ing.perez.googlepages.com/portal.jpg" border="0" /></a>
    I get this error from the log
    1.5#0011856BDDE1006D00000086000011B000042238FAC1E7DA#1163528027322#com.sap.portal.pcd.Gl.Notification.Engine#sap.com/irj#com.sap.portal.pcd.Gl.Notification.Engine#IENAFS02#197##091402wb79_EPD_2059550#IENAFS02#0a01e440740b11dba4e00011856bdde1#Thread[T-IMPORT-1114_121327_931_71801fdd2c1d2d9b,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error#1#/System/Server#Java###[XfsNotificationEngine.register] Exception occured: 
    [EXCEPTION]
    {0}#1#PcdRuntimeException: SQLException is not transient, error code = 0, sql state = HY000
    [SAP_NWMss][SQLServer JDBC Driver]IO Error creating temp file: null
    com.sapportals.portal.pcd.pl.PlRuntimeException: SQLException is not transient, error code = 0, sql state = HY000
    [SAP_NWMss][SQLServer JDBC Driver]IO Error creating temp file: null
         at com.sapportals.portal.pcd.pl.PlFactory.handleUnexpectedSQLError(PlFactory.java:2428)
         at com.sapportals.portal.pcd.pl.PlFactory.checkDeadlockResolution(PlFactory.java:2436)
         at com.sapportals.portal.pcd.pl.PlContext.lookupSubtree(PlContext.java:280)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.<init>(XfsContext.java:128)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.<init>(XfsContext.java:85)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.getXfsChildFromPlChild(XfsContext.java:590)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.readXfsObjectFromPersistence(XfsContext.java:535)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.getChildAtomicName(XfsContext.java:433)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.getChild(XfsContext.java:277)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.getChild(XfsContext.java:280)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.getChild(XfsContext.java:280)
         at com.sapportals.portal.pcd.gl.xfs.XfsContext.lookup(XfsContext.java:228)
         at com.sapportals.portal.pcd.gl.xfs.notif.XfsNotificationEngine.triggerInformDanglingDeltalinks(XfsNotificationEngine.java:463)
         at com.sapportals.portal.pcd.gl.xfs.notif.XfsNotificationEngine.register(XfsNotificationEngine.java:302)
         at com.sapportals.portal.pcd.gl.transport.PcdGlTransportAdapter.endElement(PcdGlTransportAdapter.java:346)
         at com.sapportals.portal.pcd.gl.xml.ContentHandlerManager.endElement(ContentHandlerManager.java:204)
         at com.sapportals.portal.pcd.gl.xml.PcdXMLContentHandler.endElement(PcdXMLContentHandler.java:107)
         at com.sap.engine.lib.xml.parser.handlers.SAXDocHandler.endElement(SAXDocHandler.java:154)
         at com.sap.engine.lib.xml.parser.XMLParser.scanEndTag(XMLParser.java:1913)
         at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1809)
         at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2792)
         at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:227)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:141)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:156)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:259)
         at com.sap.engine.lib.xml.parser.Parser.parseWithoutSchemaValidationProcessing(Parser.java:278)
         at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:340)
         at com.sap.engine.lib.xml.parser.SAXParser.parse(SAXParser.java:125)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
         at com.sapportals.portal.pcd.gl.xml.PcdXMLParser.parse(PcdXMLParser.java:85)
         at com.sapportals.portal.pcd.gl.xml.PcdXMLParser.parse(PcdXMLParser.java:54)
         at com.sapportals.portal.pcd.gl.transport.PcdGlTransportManager.importObject(PcdGlTransportManager.java:612)
         at com.sapportals.portal.transport.Transport.importObject(Transport.java:110)
         at com.sapportals.portal.transport.app.ImportRunner.importObject(ImportRunner.java:322)
         at com.sapportals.portal.transport.app.ImportRunner.run(ImportRunner.java:164)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: java.sql.SQLException: [SAP_NWMss][SQLServer JDBC Driver]IO Error creating temp file: null
         at com.sap.nwmss.jdbc.base.BaseExceptions.createException(Unknown Source)
         at com.sap.nwmss.jdbc.base.BaseExceptions.getException(Unknown Source)
         at com.sap.nwmss.jdbc.base.BaseImplClobEmulated.<init>(Unknown Source)
         at com.sap.nwmss.jdbc.sqlserver.SQLServerImplResultSet.getData(Unknown Source)
         at com.sap.nwmss.jdbc.base.BaseResultSet.getClob(Unknown Source)
         at com.sap.sql.jdbc.basic.BasicResultSet.getClob(BasicResultSet.java:432)
         at com.sap.sql.jdbc.direct.DirectResultSet.getClob(DirectResultSet.java:1060)
         at com.sap.sql.jdbc.common.dispatch.ClobResultColumn.getClob(ClobResultColumn.java:138)
         at com.sap.sql.jdbc.common.CommonResultSet.createClob(CommonResultSet.java:1035)
         at com.sap.sql.jdbc.common.CommonResultSet.getClob(CommonResultSet.java:302)
         at com.sap.sql.jdbc.common.dispatch.ClobResultColumn.dispatchGetString(ClobResultColumn.java:114)
         at com.sap.sql.jdbc.common.CommonResultSet.getString(CommonResultSet.java:448)
         at com.sapportals.portal.pcd.pl.AttributeHeadersTable.readStringValue(AttributeHeadersTable.java:934)
         at com.sapportals.portal.pcd.pl.AttributeHeadersTable.readFirstValue(AttributeHeadersTable.java:657)
         at com.sapportals.portal.pcd.pl.AttributeHeadersTable.readAttributeHeader(AttributeHeadersTable.java:639)
         at com.sapportals.portal.pcd.pl.AttributeHeadersTable.selectSubtreeObjectsAttributeHeaders(AttributeHeadersTable.java:762)
         at com.sapportals.portal.pcd.pl.PlFactory.getSubtreeSegment(PlFactory.java:878)
         at com.sapportals.portal.pcd.pl.PlFactory.getSubtree(PlFactory.java:804)
         at com.sapportals.portal.pcd.pl.PlContext.lookupSubtree(PlContext.java:253)
         at com.sapportals.portal.pcd.pl.PlContext.lookupSubtree(PlContext.java:274)
         ... 33 more

  • Unable to see the portal content directory in content adminstration

    Hi,
    I am unable to see the portal content directory in the content administration. I am not the super administrator.I have been assigned content admin role. But, I am unable to see the PCD.I see from previous blogs that permission has to be set for my role.
    Can any one help me in telling the procedure to set the permission.If permission is not the issue then do tell me the solution for it.
    Suganya

    Hi Suganya,
    The content admin role normally is sufficient to see / read the portal content catalogue (as far as the standard settings are concerned). But maybe they have been restricted on your implementation by some administrator.
    Some with sufficient permissions on the portal content catalogue has to right-click on the root (portal_content) object, "open", "permissions", and has to provide at least administrative "read" permission to you, some role (content admin for example) which is assigned to you or some group you belong to.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

  • Unable to see the portal content directory in content administration role

    Hi,
      I am unable to see the portal content directory in the content administration. I am not the super administrator, i have been assigned other roles. But, I am unable to see the PCD. Please help me how this can be sorted out.
    Thanks much in advance,
    Sunitha.S

    Hi Sunita,
    Contact your systen admin people , he/she will assign the Read/Write or Full controls to content_admin_role in the system administration -> Permissions -> select portal content folder and right click the select open Permissions , There he/she has to add content_admin_role in Assigned Permissions category and under Administrator category select Full Control and select End user check box and save the changes.
    Then you can see the Portal Content and you can create /change the portal contents.
    Thanks and Regards,
    Hari

  • Portal Content Translation - Unable to see the changed iView name, desc etc

    Hi Experts,
    I am using Portal Content Translation to translate the name of iViews, roles, iview description etc from English to Spanish. I have followed the method mentioned in the below mentioned link:
    http://help.sap.com/saphelp_nw04/helpdata/en/74/641640b7b6dd5fe10000000a155106/frameset.htm
    I have successfully executed all the processes mentioned in the document. It includes:
    Creating Worklists and add content
    Generate translation data
    Release for translation
    Search worklist and define source and target language
    Load worklist for translation
    Translate worklist
    Make worklist as translated
    Publish translation
    I am able to publish the publish translation.
    The above document says that "Publishing a translation means that the translated text strings are written back to the objects to which they belong (for example, the translated title of a role to the role object stored in the Portal Content Directory). "
    In my case I have translated the name, description of an iView. After publishing am I supposed to see the name & description of iView in Spanish in the same iView (source iView).
    I have not created any target iView. Am I supposed to create any target iView?
    I am unable to see iView name, description in Spanish.
    Can you please let me know what is going wrong?
    Thanks
    Stuart

    Hi Stuart,
    please set the user's language in UME. You can do this in the personalization dialog (see SAP Library section <a href="http://help.sap.com/saphelp_nw70/helpdata/en/f8/64e93b3a612d52e10000000a11402f/frameset.htm">Setting Portal Preferences</a>. Assign the portal role "eu_core_role" to your user if you do not see the "personalize" link in the portal masthead.
    In what language does the iview name appear if you do not select Spanish language?
    Please check if the name of the iView appears in Spanish language in PCD after you switched portal language to Spanish.
    Best regards,
    Martin

  • Portal content migration from 7.0 to 7.3

    Greetings,
    We have installed a clean version of 7.3 portal environment (vanilla).
    I have transferred all 7.0 portal content (most of it - WAD reports & ECC transaction iViews) to 7.3 environment by using standard transport mechanism.
    After I execute any of those transferred reports iViews, I receive a portal exception, which doesn't appear in the default trace log file, or any other log file whatsoever.
    My question is - is there a special procedure to move standard portal content (like WAD reports) to 7.3 environment, or a regular transport would work as well?
    Thanks in advance!

    Hi Ivan,
    There is no special procedure to be followed for transport mechanism. But make sure that the installations are made correctly and the system for communication has been created and tested the connection successfully in Sys admin -> Sys landscape
    Paste the exception which you are getting. Also where did you look the logs?
    Thanks,
    Mahendran B

  • Portal Runtime Error --- Portal content is not opening

    Hello Experts,
    While logging to the system we are getting this message
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/every_user/general/defaultDesktop/frameworkPages/frameworkpage/com.sap.portal.toolAreaiView
    Component Name : com.sap.portal.navigation.toolarea.default
    The exception was logged. Inform your system administrator..
    Exception id: 10:13_02/04/09_0039_12182150
    See the details for the exception ID in the log file
    How to resolve the issue ??
    Moreover we are unable to drill down the portal content in portal content page. It is in "loading " status for long time. Is there any problem.
    Regards,
    Partha

    Hi Sandeep
    " You have to log in as an Administrator when using the NOTE referred in the previous post "
    --> Yes, I am logged as Administrator user
    "I hope you are using your FQDN instead of IP address"
    --> Yes i am using FQDN
    1. When was the last time you portal was working fine?
    --> Till yesterday , today morning while checking the day to day activity I found the issue
    2. What changes have you done?
    --> We didn't change anything in production portal, it is a satnd alone JAVA stack but we have made some some changes in backend R3 system which is a diffrent system on different server
    FYI ---> We are facing the problem with portal content not expanding for quite a long time.
    3. Which portal version and which sp level are you on?
    --> EP 7.0 and SP11
    4. Which browser are you using for your portal?
    --> IE 6.X
    Thanks for your help.
    Thanks and regards,
    Partha

  • Javascript error in Content Admin- Portal Content- iview Navigation window

    Hi friends,
    We are in the process of portal migration and as a part of this, we installed NW04 SPS 14 using Rapid Installer and then upgraded it to SPS 18. The components we upgraded are:
    Java component
    Portal Platform
    Knowledge Management and Collaboration
    Adobe Document Services
    BI UDI
    BI MMR
    After upgradation, when we logged in to portal, we were not able to see/browse Portal pages/Roles/Iviews/Worksets (PCD Contents) under Content Administration->Portal Content.
    Again, whichever window is there for navigation of PCD, we are not able to see the contents of PCD.For e.g. System Administration -> System Configuration.
    Does anyone know how to solve this issue?
    Regards,
    Nilz

    Hi nilz,
       See this thread:
    Getting javascript error while logging in EP
    Javascript error when loading Portal Content
    Regards, Suresh KB

  • Can't delete from portal content areas

    Sun Solaris o/s version 2.7
    Oracle Portal version 3.0.9.8.0
    9iAS version 1.0.2.2
    Oracle Database version 8.1.7.1.0b
    Some users are suddenly unable to delete from content areas. The
    following error occurs:
    An unexpected error has occurred (WWS-32100)
    An unexpected error has occurred (WWS-32100)
    ORA-1;User-defined exception (WWC-36000)
    normal, successful completion (WWS-00000)
    This has worked fine in the past. One user is also complaining
    that she is intermittently getting a 'The page you requested was
    not found' error when trying to add files.
    Does anyone have any idea what could be the problem?
    Thanks.

    "Recent" (at least on Windows) is not an actual folder; it's just a list of recently used files/documents.  I clean such things using CCleaner.

  • URL iView content translation not working using Portal Content Traslation

    Hi All,
    I am using Portal Content Translation to translate text of URL iView from English to Spanish. I am unable to do so. I have followed the below mentioned link:
    http://help.sap.com/saphelp_nw04/helpdata/en/74/641640b7b6dd5fe10000000a155106/frameset.htm
    I have used Content Admin -> Portal Content Translation -> Translation Worlist Coordination to:
    1) Generate worklist and add content
    2) Generte translation data
    3) Release for translation
    After this, I am using Content Admin -> Portal Content Translation -> Worklist Translation for following:
    1) Load worklist for translation
    2) Translate worklist
    I am facing difficulty in Translate Worklist. The step by step method followed by me are as below:
    I am clicking on Content Admin -> Portal Content Translation -> Worklist Translation.
    I am searching Translation Worklist and selecting my Worklist
    After this I am selecting following
    Source Language - English
    Target Language - Spanish
    Then I am clicking on 'Load for Translation' button. New screen appears. In this screen, Translatable Text table is shown:
    It shows following
    Number
    Source Text <EN>
    Target Text <ES>
    Status
    Object ID
    In Status I can see 'Not Translated'. I click on Next for three times as there are three line Number (0, 1 & 2)
    The Status does not change. It remains 'Not Translated'.
    When I am using following combination
    Source Language - Raw Texts
    Target Language - Raw Texts.
    I click on Next for three times as there are three line Number (0, 1 & 2). The status changes to Translated.
    I do not know what is going wrong with my process while selecting Source Language - English & Target Language - Spanish .
    I have another question. I have to translate content of entire URL iView. How I can change the whole content of URL iView.
    In the source text I can NOT see the contents of URL iView.
    Thanks
    Stuart

    Hi Prakash,
    Did you check whether the translation has been done completely in PCD inspector? Some times you would have translated using Portal translation but it will not be written in the locale of the iView property.  Then we have to set it manually in the PCD inspector.
    Follow the procedure.
    1. navigate to System Administration -> Support -> Portal Content Directory -> PCD Inspector
    This will open the PCD inspector.
    2. "Browse Into" the iview where you have developed it.
    3. Click on the "All Props" for the iView which you need to translate.
    This will open the Properties in new window
    4. Check the property "com.sap.portal.pcm.title" what is maintained in Chinese? if it still displaying in English text against Chinese, Then you need to  Edit the property for chinese and have to give the actual chinese word.
    Note  : I hope you would have selected "Raw Text"  for Source language and "Chinese" as Target language. Pls confirm on this.
    Thanks,
    Mahendran B.

Maybe you are looking for

  • Adobe Reader 11.0.2 signing with OCSP embedding?

    These days, I've been testing Adobe Reader 11.0.2 signing with OCSP embedding, and the following was unclear: 1. If there is CRL file in Adobe  Reader 11 CRL Cache (C:\Documents and Settings\<user>\Application Data\Adobe\Acrobat\11.0\Security\CRLCach

  • Can Macbook Air 11" (1.4 Ghz 2 GB Ram 128 GB HD) run xCode as well ?

    I've planed to buy a new portable laptop which lighter and smaller than other. I doubt,Can Macbook Air 11" (1.4 Ghz 2 GB Ram 128 GB HD) run xCode as well ? I love its design.

  • Exporting image sequence in ProRes 4444 gives black movie

    In QT Pro, I'm exporting a movie made from an image sequence.  If I export using ProRes 4444, all I get is a black movie file.  If I export using other codecs, it works fine.  Any ideas what might be wrong and how to fix this? Thanks! G

  • TNS: No Listener on Oracle 10g Express Edition

    I have installed oracle database 10g Express Edition but get a ORA-12541:TNS:no listener exception when I try to connect to the database. I can connect using SQL plus. My listener.ora file looks like this: SID_LIST_LISTENER = (SID_LIST = (SID_DESC =

  • BROKEN MACBOOK SCREEN

    Hi guys, i was just wondering if anyone could help me, today i made the mistake of leaving my macbook half on my desk and half off, i went downstairs as someone was at my door, i got off my bed i knocked my macbook off the desk and I go to pick it up