Road map when migrating uccx 7.0.1 SR5 towards 8.0.2

Folks,
    I'm here pretty much to give you a heads up on my road towards migrating uccx 7.0.1 SR5 to 8.0.2:
1) First, I took the backup from my uccx 7.0.1SR5 using the PUT tool (pre-upgrade tool). It is straight forward, no big deal on it. Backup saved on sftp server.
2) Once I did a fresh install on our spare server with 8.0.2, I loaded my PUT backup from sftp...again..no big deal on it. It seemed that everything went fine...
3) When I was doing the tests with the new uccx, 8.0.2, checking scripts...queues...I realized that the calls were not being queued at all..and I was getting an scriptNotFound error.
4) After frustration because I spoke with couple TAC engineers...I had to fix this issue by my own. After research I figured that to fix "scriptNotFound..." there is a trick in which is not documented clearly. When uccx 7 calls a subflow it DOES NOT ADD THE WORD "SCRIPT" in front of it..and on UCCX 8 YOU HAVE TO add the "script' in front of your subflows. After that..no more "scriptNotFound..."error and our application subsystem was no longer in partial service. afff
5) Now, I was told by the people who wrote the cisco upgrade doc that SU2 update for uccx 8 fixes most of the path related issues...again..I did install the patch yesterday..and..everything seemed to be fine..no errors...now im just waiting friday to test it out, and hopefully will be a happy end!
If I miss something here let me know...even if I can help someone..please let me know.
Regards,
Thiago henriques

Folks,
     After quite sometime working towards our migration from uccx 7 SR5 to uccx 8.0.2 I finally got it working!!!!wohoooooooooooooooooooooo
Another change was necessary on create file document steo...which is not needed on uccx 8. Me and one TAC engineer (very good one) we removed the "Create File Document". Here it is what the TAC told me:
While accessing an xml document that is uploaded into the document repository, the Create File Document is not needed.
Simply use the Create XML Document (DOC[test.xml]) step to reference the XML document to be read.
If I can help anyone with this, please let me know.
Regards,
Thiago Henriques

Similar Messages

  • What does it mean in maps when road markers flash

    What does it mean in maps when the road markers (red lines) flash

    What does it mean in maps when the road markers (red lines) flash

  • Database road map to DB upgrade and Migrate.

    Hi,
    I am working on database upgrade/migrate technology on 1 paper solution.Could anyone send me the key business drivers ,various road maps to build this strategy.
    I will segregate all the inputs from you and prepare a consolidated doc to brief about database upgrade/migrate. Please tell me in a Very broad level approach.
    Thanks
    Surendra

    Information on the database upgrade portal will be helpful - Oracle Database Upgrade - Learn More
    Oracle Database Upgrade

  • UI elements: Road map & bread crumbs - what is the dif?

    Hi,
    What is the difference between Road map & bread crumbs and when to use what?
    Thanks,
    Itay

    Hi Italy,
    Go through the follwing links:
    [RoadMap|http://help.sap.com/saphelp_nw04s/helpdata/en/03/ac884118aa1709e10000000a155106/content.htm]
    [BreadCrumb|http://help.sap.com/saphelp_nw70/helpdata/en/0e/ab884118aa1709e10000000a155106/content.htm]
    Hope this helps.
    Regards,
    Abhinav

  • ESS FPM: To achieve a particular Road Map Pattern

    Hi,
    We require to achieve below mentioned functionality for one of the Custom Developed Web Dynpro objects.
    Functionality to be achieved
    Using EP 7.00 feature; wherein Roadmap is designed on EP side using FPM Application and FPM Views and Web Dynpro DC contains only Fc and Vc components (there is no Cc component on WD side); we need to get below road map behavior for the custom developed application u2013
    Custom developed Application has:
    (1) 4 steps - OVERVIEW, EDIT, REVIEW and SAVE, CONFIRMATION.
    (2) Overview screen has got 3 buttons u2013 BTN1, BTN2 and BTN3
    (3) Navigation requirement is u2013 when BTN1 is clicked, control should go to REVIEW and SAVE screen from OVERVIEW screen and then is BACK button is clicked (on Review and Save screen) control should come back to OVERVIEW screen from REVIEW and SAVE screen if BTN1 is clicked.
    If BTN2 or BTN3 is clicked, control should go to EDIT screen from OVERVIEW screen and follow normal path as EDIT à REVIEW and SAVE à CONFIRMATION and the same way if BACK button is clicked on REVIEW and SAVE control should come back to EDIT screen, here again if BACK button is clicked control should go back to OVERVIEW screen.
    So in short it should be u2013
    BTN1 clicked
    OVERVIEW ---> REVIEW and SAVE ---> CONFIRMATION
    OVERVIEW <--(BACK button)--REVIEW and SAVE
    BTN2 or BTN3 clicked
    OVERVIEW ---> EDIT ---> REVIEW and SAVE ---> CONFIRMATION
    OVERVIEW <--(BACK button)EDIT <(BACK button)--REVIEW and SAVE
    All the above behavior should be satisfied using FPM road map.
    Thanks,
    Mahesh.

    I had a similar issue where my authentication was happening in 'login.do'. To solve this issue, In my filter, I checked if the request uri was 'login.do'. I tested it and it works. Hope this helps!
    public class AuthorizationFilter implements Filter {
      private FilterConfig config = null;
      public void init(FilterConfig config) throws ServletException {}
      public void doFilter(ServletRequest servReq, ServletResponse servRes,
              FilterChain chain) throws IOException, ServletException {
          HttpServletRequest httpReq = (HttpServletRequest) servReq;
          if (httpReq.getSession().getAttribute("userinfo") == null) {
               if (httpReq.getRequestURI().endsWith("login.do")) {
                    chain.doFilter(servReq, servRes); 
               } else {
                    config.getServletContext().getRequestDispatcher("/login.jsp").forward(servReq, servRes);
          } else {
               chain.doFilter(servReq, servRes);
      public void destroy() {}
    }

  • Road Map Step Label Changes Issue

    Hi Gurus,
    I am working for ESS business package. I have changes FPM application to read Edit as "Display" for Road map step. I have tested it and transported it to test system.
    The changes were working fine till yesterday; today when i tries to test the application the road map step is reverted back to read as Edit not Display. I do not find any one changed the FPM application.
    what would be the reason.
    my observations are like; I had some changes in some component and deployed it and have transported NWDI transports to Test system. i suspect this transports have changed the FPM application.
    Please suggest me on this issue,.
    Points will be awarded..
    Thanks
    Srikanth

    Hi Srikanth,
    the short answer
    You modified the FPM application from within the portal, using the Self-Service Administrator portal role, right? The point is that this content is also contained in the SAP_ESS SC in NWDI. It's contained in all those cfg DCs you see. They basically contain a (zip)archive that contains other (zip)archives that contain different XML files that eventually describe the FPM application. So what happened is that you modified the FPM application at runtime, but your changes were overwritten when the cfg DC was deployed afterwards.
    the details... and the questions...
    Concerning those cfg DCs. They're a very specific type of DC. The type is "Enterprise Portal" and the subtype is "Portal Content". In NWDS, this is described in the following XML file: C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.ide.eclipse.component.provider_2.0.0\componentTypes.xml When I was using NWDS 7.0 SP12, this particular type of DC was not visible (if I remember it correctly), i.e. I could not create a new DC of this type. NWDS SP12 also didn't contain the necessary plugin, com.sap.portal.pcd.ide.eclipse.nwdi.ui.NewPortalContentWizard, as described in the same XML file (or at least I couldn't find it). Since I installed NWDS SP14, the plugin is present and I can create this type of DC myself. But that doesn't help me that much, since the wizard just creates some empty DC and I don't have a clue how to populate it with the content of the FPM application. Unfortunately I also don't have a clue about how to modify the existing cfg DCs in SAP_ESS.
    BTW, the change you made, a small textual change, is relatively easy to do: unzip the archive(s) in the cfg DC, modify the text in one of the XML files (for some reason the translation of the roadmap steps are present 4 times, if my memory doesn't fail on me) and zip everything again. This works fine for me.
    the $1 million question...
    Obviously, what I really like to know: how to modify the FPM applications on the portal using the Self-Service Administrator role (that's easy) and export it to a suitable archive that can be imported in the (SAP_ESS) cfg DCs? As long as this is not possible, meaning I don't have a clue how to do it, I'm forced to deploy the modified FPM applications, which I exported as an epa file, after each NWDI transport. And this is not very practical...
    I hope my (probably a bit too complex) explanation makes any sense.
    If someone else knows more about this subject or how to deal with it, please let us know. tnx!
    Kind regards,
    /Sigiswald
    Edited by: Sigiswald MADOU on May 23, 2008 2:30 AM
    I posted the same question in the NWDI forum: (ESS) FPM applications, cfg DCs & Enterprise Portal / Portal Content DC

  • Dialog boxes: Road Map navigation buttons into the standard button area

    Hi All,
    I have a Road Map form which is opened in a dialog box being displayed in a portal.  Is there a way to get the "next/previous" buttons to display in the wave line area of the dialog box? 
    I know that i can put standard Yes, No and Cancel buttons in there, but how about custom user defined buttons?
    Cheers,
    Vic

    Hi,
    When you use these popups you can have only the standard buttons not the custom ones.
    To have the custom ones, then you need to create a view and have the layout with your own buttons then
    embed this view in other window inaddition to the existing window.
    I mean have to views one in each window.
    Call the 2nd window in 1st window as a popup. So that you can have you own buttons in that view that is embeded in 2nd window.
    This way you can do.
    Regards,
    Lekha.

  • Discoverer Road Map

    I am currently evaluating oracle BI products for my company.
    Having looked at BI Beans and Discoverer it seems that they use different metadata definitions (MDD). BIB use Oracle OLAP who's MDD is defined using OEM (v1) or the CWM2_ packages (v2) whereas Discoverer uses its Administrator client tool to define its MDD the End User Layer.
    So, as things stand, it looks as though two MDDs are required. Is this correct? If so, what is the road map going forward? In particular, will the technologies converge? at least as far as MDDs are concerned.
    Thanks in advance for your intput.

    The upcoming release of Discoverer, which will be available with Oracle Application Server 10.1.2 will support query and analysis on relational data and OLAP data.
    When you create the multidimensional structures in Oracle OLAP, you use the OLAP Catalog. All tools and applications use this, including Discoverer. Discoverer does not require any extra work to utilize the Oracle OLAP option.
    As always, Discoverer allows you to create a business meta-layer to protect end users from the complexity of the database. This is the End User Layer, and is used for Relational data.
    Discoverer Plus (to create queries, analyze, drill down, format, etc) and Discoverer Viewer (analyze, drill down, format) can both drill down, and will support drill to detail, including drill from OLAP to Relational.
    The 10.1.2 version will also have powerful customization functionality through Portal, which means one worksheet can satisfy many many users. For example... three people authenticate to Portal and all see the same Discoverer portlet. One of them changes the graph to a pie, the second drills on something to another level and the third person changes the layout and add some conditional formating. Each saves their changes back to the Portal. The next time each logs in, they see their own changed version of the portlet, not the original.

  • Road MAp element customization

    I have 8 steps in my application.
    All 8 are shown on the screen as road map.
    I want to customize it as a way that only 4 are shown first and when I complete 4rth step I want the other 4 steps to be shown. Is there any way to do it?
    experts your help is highly appreciated.
    Message was edited by:
            James B
    James

    Yes It is possible.
    What you need to do is to maintain the context structure so that all the properties in your roadmap steps are bound to the context attributes. Make sure you have an attribute in your context node for 'visible' property.
    Now, initially, build your roadmap such that the steps 1-2-3-4 are visible and rest are invisible. (This can be done by means of a supply function or wherever you are creating the roadmap steps).
    Next, once you reach the 4th step, in the event handler, set the attribute bound to visibility of the 4 elements corresponding to steps 5-6-7-8 to 'X'.
    Hope this helps.
    Regards,
    Neha

  • WebLogic Server 11gR2 etc. road map?

    Hi all,
    I've been searching oracle.com looking for a document that might lay out a road map for new major releases of WebLogic Server (11gR2 etc.), and not finding anything helpful. Mainly I'm interested in when Oracle might release a version that is certified on RHEL 6, though it would also be nice to know when they might release a version that fully supports Java EE 6 (there is another older thread about that also). My impression is that changes like this would probably be a new major version (11gR2 a.k.a 10.4?) vs. a new patchset version (11gR1 10.3.5).
    Does anybody know whether this info is publicly available? I can also try our company's paid support, but first wanted to see if there is something public.
    Thanks,
    Jim

    Oracle after a whole bunch of acquisitions and more recently after the BEA acquisition, is now on somewhat synthesis mode for the range of products they now have. Generally they call for three tracks for products;
    - strategic products:
    the ones that Oracle envisions to keep and promote for long-term future needs; this period is greater than 9 years;
    - continue and converge track products:
    which includes those which will be continued for next 9 years (from this past summer) or so. newer versions of these products will be released and new features will be enhanced, products will be supported for next 9 yrs; but beyond 9years, the products will effectively be merged into one strategic offering.
    - those which are to be discontinued/replaced by some other products;
    so for example, for web 2.0 or enterprise suites/user interaction, Oracle defines WebCenter as its strategic product, instead of Oracle Portal which is on a continue and converge track now. or for application server, WebLogic Server is the strategic product. etc. whereas OAS is on continue and converge track.
    about each product type/technology, Oracle has new SODs (statement of direction) which defines the products and expected support offerings. please see this link.
    [Oracle Middleware Strategy|http://www.oracle.com/products/middleware/bea.html]
    hope that helps!

  • Doubt in Road Map

    Hi all
    I have one initial screen i.e (Login Screen).  In that screen I have two dropdowns (Employee No., Type) and Two Buttons (Create, Edit)
    When user select Type1,emp.no. and press create button,  screen1 will be opening ,
    When user select Type2,emp.no. and press create button, one screen2 will be opening.
    like that edit also.
    So i need to create 4 screens. Anyone tell how can we do in Roadmap (MultipleRoadMapstep).

    Hi,
    since you are using WD and you have roadmaps, you have to use FPM framework and implement GAF.
    in GAF you will have mainstep. this is your road map.
    since you have three screens. you will have three UIBB's.
    put your interface views in the UIBB's and it will work.
    Regards,
    Ritwik.

  • MDG Road Map for future release

    Can any one share the link for MDG Road map for future release. I am looking specifically at the enhancements for data domains.

    thank you for the answer!
    next year we plan to migrate our databases from 10g to 11g R2.
    the reason for R2 is that the second realease is a more stable version.
    best wishes,
    georg promok

  • Attaching a PLL automatically when migrating from 6i to 9i

    Hi,
    is it possible to attach a self-written pll-library automatically during the process of migration (6i->9i) when using the migration assistant ?
    How can I achieve this ?
    Where do I have to put entries in the migration assistant, converter.properties, search_replace.properties ?
    (I have in mind the example of the attachment of the reports-pll rp2rro.pll containing the workarounds of run_report.)
    Especially when migrating a great number of Forms to 9i it could be useful to execute an automatic attachment of self-written PLLs instead of attaching it manually.
    Has anybody an idea ?
    Best Regards,
    Michael Wolters

    Hi,
    actually you would upgrade the application sources from Forms 6i to Forms9i and then run teh Forms Migration Assistant for the clean up /this at least is my understanding after asking one of our Designer Product Managers).
    Frank

  • Using time warner road runner. when I try to open up safari to home page I get error message that this version does not support the "community toolbar" can't proceed until closing the error message. sick of seeing it

    using time warner road runner. when I try to open up safari to home page I get error message that this version does not support the "community toolbar" can't proceed until closing the error message. sick of seeing it

    That toolbar/ct plugin seems to cause problems for all who install it!
    Close Safari, then locate and delete the following files and it should be gone:
    /Library/Application Support/Conduit
    /Library/InputManagers/CTLoader
    /Library/Receipts/ctloader.pkg
    /Library/Receipts/<Toolbar name>.pkg
    /Library/Application Support/SIMBL/Plugins/CT2285220.bundle
    /Users/<User name>/Library/Application Support/Conduit
    where / is the root library on your Hard Disk.
    If you are running Snow Leopard you should also look here:
    Library/launchAgents/com.conduit.loader.agent.plist
    Library/Application support/conduit plugins
    Also, as mentioned by Gilli2000:
    Library/Receipts - If you read it, it has information in it at the bottom referring extensively to "CT" and "community toolbar".
    Maybe it is harmless, but trash those items anyway!
    Note: Safari does not support any third-party toolbars except those supplied as an extension to Safari via the Extension Gallery.

  • HT4796 When migrating from a PC to my Mac user on the Mac.

    When migrating from a PC to my Mac, the files get created under a new user on the Mac. How do I move the files to my user log on?

    Check out the following KB Articles: 
    http://support.apple.com/kb/PH11393
    OS X Mountain Lion: Transfer your information from a PC
    http://support.apple.com/kb/HT1408
    How to transfer data from a PC to a Mac

Maybe you are looking for

  • Cannot Create a New Group

    All of a sudden, I cannot create any new groups within Address Book! Will not work either from the plus sign at the bottom of the group list or the main menu! Any advice on how to resolve?

  • In I Tunes can´t change my song´s ratings

    I recently changed Mac Books and with my new one can´t change my song´s ratings, please let me know what to do.

  • Adobe reader installer freeze with out downloading Adobe Reader when opened?

    I can not download Adobe Reader on my Mac: I can do it on my iMac, and have done it fore 10 years now, but Adobe reader download freeze before downloading the file

  • Couldn't start Hyperion EPM Architect - Process Manager

    Hi, I Couldn't start EPM Architect - Process Manager because of which unable to launch Dimension Library, Application Library and Calc Manager from Workspace. This services starts rest dependent services but it stops in one or two minutes states stat

  • To time machine or not to time machine

    Hi folks, I have a 2011 iMac (21.5" /  2.8Ghz i7 / 8GB Ram / 1TB 7200 RPM HDD). I have never done a clean instal of the OS. I am now running Yosemite and she's a bit clunky. Logging in takes about 5 minutes. apps are crashing, sometimes they wont eve