How to compare between two versions of template project???

Dear All,
We are doing some cleanup activity in our solution manager system. For this actually we have created the replica of this project from production system to a sandbox system. We can do the cleanup of this project and can transport this new project to our production system and can move on.
But the pbm we are facing now is, how do we bring in the data captured or added to the production system after we have copied it to the sandbox system?
Can anybody throw in some light into this issue?
We tried the option of creating different version for the template and using the sa_project_upgrade transaction to compare between two versions of the template using "Current Version in Project" option. Not sure whether this will work out.
{{We thought that if we try in this way, we can find the difference between the two versions of the template project, and from there, might be we can bring in the new changes into our new project manually. We do agree that this is not the right approach.}}
But the end result we got was like we got the information regarding where all there is the difference between the current version in the template project to that of the original(in our case it checked against BPR as we selected the scenarios from BPR for this template). But what we expected was a difference between two versions of the template.
Pls help. Pls make a try to help. Any thoughts in this direction will help us to move forward.
Any info will be suitably rewarded.
best regards,
Krishna.

Hi Andreas,
Thanks a lot for your immediate reply.
I too had that doubt that my appraoch will not work. But wanted to get confirmation that it will not work. Also wanted to know about any other approach. Thank you for providing me with some alternative approach.
I tried the option suggested by you. But while running the comparison report for the newly copied project with the option "New Version of Original", I am getting the below error. I do agree that this approach should work. But for some reason I am getting the below error. Can you pls look into the same and help me out.
Internal error
Message no. AI_COMPARE006
Diagnosis
An unexpected error has occurred in:
           program CL_SA_PROJECT_UPGRADE_ONLINE==CP
           include CL_SA_PROJECT_UPGRADE_ONLINE==CM002
           line                                                  102
Procedure
Restart the transaction. If the problem persists, check if a SAP note is existing for this problem. If not please send a message to the SAP hotline.
Thanks a lot in advance.
best regards,
Krishna.

Similar Messages

  • How can I retain two versions of my iPad backup in iTunes?

    HI,
    When I backup my iPad on iTunes, the previous backup is automatically deleted and a new back is created.
    How can I retain two versions of my iPad bacup in iTunes?
    Thanks, Ramani

    Backup the device. Immediately restore the backup. The restored backup is now archived and a new rolling backup set is created. You can repeat as needed and clear older backups from Edit > Preferences > Devices.
    tt2

  • BW performance comparation between BI versions

    Dear all,
    I have found very good high level documentaion regarding performance comparation between BI versions on SAP ServiceMarketPlace. However, I only got 2.1c vs 3.1 and NTW2004 (3.5)vs NTW2004s (7.0).
    https://websmp205.sap-ag.de/~sapidb/011000358700005998022005
    https://websmp205.sap-ag.de/~sapidb/011000358700003065492003
    I am interested in similar documentation3.1 vs NTW2004 (3.5). Can anyome indicate me where can I find it?
    Tx in advance
    Regards

    Few more insights if they can buy it.
    Sell the concept.
    Globalization
    Increase speed to enter new markets
    Integration and collaboration of suppliers in B2B
    Localization of businesses
    Outsourcing of processes and products
    Virtual teamingIndustry
    Industry Consolidation
    Execution of Mergers,
    Acquisitions andspin-offs
    Ensuring legal compliance
    Implementation of industry and process standards
    Merging of portfolios, systems and processes
    New Business Models
    Flexibility to imple-ment new processes and scenarios
    Collaboration along the entire value chain
    Automated, stream-lined processes
    Synchronizing demand and supply
    Shorter lead times
    Shared-services
    360°customer view
    Business Intelligence Focus for 2008 -2010
    Simplicity
    Web 2.0 user experience to broaden business intelligence adoption
    Easy self-service access to corporate information for end users
    Embedded intelligence within the business process context
    Agility
    Enabling business driven innovation
    Analyzing information at the speed of thought
    Closed-loop Business planning based on live dataIntegration
    BI and DWH in Enterprise Information Management
    Creating trust in corporate Information
    Enabling Enterprise-SOA
    SAP NetWeaver BI Accelerator
    Exceeds expectation in query performance
    Exceeds expectation in TCO reduction
    Hope it Helps
    Chetan
    @CP..

  • Can any one tell me how to talk between two controller.....

    Hi,
    Can any one tell me how to talk between two controller.....
    Help will be awarded.
    Regards,
    Gurprit Bhatia

    Hi Gurpit,
    If you want to share data between 2 controllers then you can simply do that by providing a data link between the controllers in your data modeler.
    If you want to use some methods of one controller in another then you can do it using
    wdThis.wdget<controller name>().<method name>();
    If your question is something different than this then please elaborate your requirement.
    Regards,
    Murtuza

  • How to calculate number of days between two date in Template design?

    Hello guys
    I have a situation where I have to create a template that returns data, and one of the thing of the existing report is that there is a column that is actually the number of days between start date and end date columns..
    So in template, how would I be able to do the same? I have start date and end date columns on the template, now when I created another column using expression like end date - start date and preview the template, I am getting errors saying :
    Caused by: oracle.xdo.parser.v2.XPathException: Cannot convert 03/31/2009 to number.
         at oracle.xdo.parser.v2.XSLStylesheet.flushErrors(XSLStylesheet.java:1534)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:521)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:489)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:271)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:155)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:192)
    Please advice
    Thanks

    Hi
    There is an extension function you can use, from the javadoc:
    date_diff
    public static long date_diff(java.lang.String format,
    java.lang.String fromDate,
    java.lang.String toDate,
    java.lang.String locStr,
    java.lang.String tzID)
    Method to get the difference between two dates in the given locale. The dates need to be in "yyyy-MM-dd" format. This function supports only Gregorian calendar.
    Parameters:
    format - the format to which the difference is required; allowed formats are y (for Year), m(for month), w(for week), d(for day), h(for hour), mi(for minute), s(for seconds) and ms(for milliseconds)
    fromDate - the first date
    toDate - the second date
    locStr - locale string -> lang-Territory
    tzID - timezone ID ->http://java.sun.com/j2se/1.4.2/docs/api/java/util/TimeZone.html
    Returns:
    the difference in dates in the desired format
    For example
    <?xdoxslt:date_diff(‘d’,’2009-09-14’, ‘2009-09-20’,’en-US’,1)?>
    give a result of 6
    You can substitute in columns for the dates, just remember the date format required.
    Regards
    Tim

  • How to update a package between two versions

    I have a package that has two versions, for example: app_1.0 and app_2.0. How can I update the app_2.0 to a system that already installed the app_1.0. I want to overwrite the app_2.0 to the app_1.0 instead of installing another instance of app_2.0.
    Any reply is appreciated. Thanks.

    CityCat wrote:
    Hi - i bought my MAC in Australia…
    There's your problem, try turning it upside down.
    May I suggest a work around.
    I don't know why you want to put a space between the numbers and the percentage sign as that is not standard practice, but:
    +Select last number and % > Inspector > Text > Text > Spacing > Character > drag to the right+
    Peter

  • How do I Place Two Or More Template Regions Side by Side?

    How do I change the page size of a template or a template region so that I can place two templates side by side with the content in between?
    Maybe I need to know how to place two or more template regions side by side?
    Can you insert a template into a table?
    How do you insert a template within the main template along side a region within the main template?
    Sorry to ask so many questions but each approach would sole the sampe problem.  (Putting two or more regions, side by side.)
    Thank you in advance for any help that you can offer me.

    How do I change the page size of a template or a template region so that I can place two templates side by side with the content in between?
    Template regions are not layout regions.  They do not add any structure to your page, and only provide a way to add content to whatever HTML structure contains the template region.  So - you need to make your Template's HTML provide the space.
    For example, you could have a three column, one row table with an editable region in the left/right cell.  The exact answer, though, will depend on your page's layout and where you want the editable regions to be placed within that layout.
    In addition, you say "place two templates side by side" as if the regions were the templates.  That's not correct.  There is a template file, which contains editable regions.  Thus, you could not place two templates side by side.
    Can you insert a template into a table? 
    See the answer above.  You can place an editable region inside a table.
    Sorry to ask so many questions but each approach would sole the sampe problem.  (Putting two or more regions, side by side.)
    I bellieve you are very confused about what templates are and how to use them, and so I strongly suggest you read DW's F1 Help about templates before going further with this project.

  • How to switch between two query in Web templete.

    Hi all,
      Here i am facing problem to switch between two query in web template by using one 'table' web item. is there any way to use hyperlink 'SAP_BW_URL' and we can switch to query. here i am using these HTML code..
    <table><tr><td class="SAPBEXBtnStdBorder" cellspacing="0" cellpadding="0" border="0"><tr><td>
    <table><tr><td class="sapbexbtnstd" ><A href="<SAP_BW_URL cmd='reset_item' item='table_data' query_ID='ZSD_ZSD_M01_Q20' apply_cmd_on_target= "X">" >Switch to other query</A></td></tr></table>
    but i am not getting correct functionality.
    please help me to solve this problem.
    I know the best way to say thanks in SDN.
    thanks
    Kiran Patel

    Kiran,
      Use the web api reset_data_provider as links or in select option in HTML.
       Onchange event of this select option should call JAVASCRIPT method and
       this in turn resets the current dataprovider to your concerned one.
       How to change graphs:
       The graph item has the default data provider:
       <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="GET_ITEM"/>
             <param name="NAME" value="CHART_1"/>
             <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_CHART"/>
             <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
             <param name="TMP_CHART_DATA_HANDLE" value="IIP_49MOXB0UVNOMM6JOZMZU7QO21"/>
             ITEM:            CHART_1
       </object>
      So if you change the DATAPROVIDER_1 using RESET_DATA_PROVIDER to your concerned DP, this changes chart as well !!
       Please use this method and refer to sample code for Onchange Event on SELECT OPTION:
      <HTML>
    <HEAD>
    <script>
    function callDP() {
         if(document.forms[0].dp.value == "1") {
            //form your URL here..
           url = SAP_BW_URL_Get() + "&CMD=RESET_DATA_PROVIDER&DATA_PROVIDER_1=..&...";
            SAPBWOpenURL(url);
            //or docuemtn.location.href = url..
            //etc..
    </script>
    </HEAD>
    <BODY>
    <form>
    <select name="dp" onChange="javascript:callDP();">
    <option value="1">1</option>
    <option value="2">2</option>
    </select>
    </form>
    </BODY>
    </HTML>
    HOPE THIS HELPS !!!

  • How to compare 2 different versions of a document in Lion?

    Supported applications in Lion reduntantly autosave several versions of a document, even if the user does not want to.
    Does anybody know how to compare two arbitrary versions and see in what they differ (kind of the old good diff command in Unix)?
    Thank you

    If yo will click on the name/title of the document (there'll be a small arrow on the right of it), you will get this menu:
    You can choose to browse all versions....

  • How to switch between JRE version dynamically

    hi,
    I have got both jre1.4.1 and jre1.5.0_07 installed on y machine. But i need different version of jre to access two different applications.
    How can i switch between jdk versions.

    Are the JREs being invoked by a browser, if so you can define the preferred version.
    In IE
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
        width="100" height="100" name="anApplet">
        <PARAM NAME="code" VALUE="yourClass.class">
        <PARAM NAME="type" VALUE="application/x-java-applet;version=1.4.1">
        <PARAM NAME="scriptable" VALUE="true">
            No JDK 1.2 support for APPLET!!
    </OBJECT>Substitute type paramter for
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.5.0">When running a Java 5 applet
    In Firefox
    <object classid="java:yourClass.class"
                  type="application/x-java-applet;version=1.5.0"
                  height="100" width="100" >
    </object>Bamkin

  • Function chat between two versions of Portal

    Hi experts,
    i would like to know if it´s possible to create a chat between two different versions of EP. (example: EP 6 and EP 7). I´m looking for the information but i cann´t find anything about it.
    Thanks a lot!!!
    L

    Hi
    Go through these links
    https://www.sdn.sap.com/irj/sdn/thread?threadID=456691&tstart=30
    http://www.collaborate.com/publication/newsletter/nl0502.html
    Reward me..

  • How change information between two Web Applications?

    Hi,
    Has anyone any code sample or article how to build
    a "bridge" that would change data stored into session and servletcontext
    between two separete web application in same servlet engine?
    What I have understood is that they can not normally share same
    session or servletcontext data...
    Thanks,

    Hmm...
    Text in this Sun's tutorial says:
    "This lesson, however, shows you what to do if your servlet requires a resource available from its own server"
    The actual problem is following:
    - In Web Application 1 servlets/jsps stores data into session object and servletcontext
    - then user can request a page in Web Application 1 which should "activate/launch" Web Appilication 2 and
    pass some session objects or objects stored into servletcontext from Web Application 1 to Web Application 2.
    How to do this, it's the problem.

  • How exchange messages between two user-bean instances?

    Hi,
    I would like to let several user to log-in my web site (I'm using tomcat) and then let them exchange some messages until they are logged-in. Is there a way using JSF?
    I was thinking about implementing a list of messages inside each user-bean. The user should know that other users are logged-in, that could be listed in a table, and click on its name. I would like that the click action create an item in the list valiable of the selected user. Is that possible using JSF? I didn't find any of such kind of communication between two user-bean instances.
    Do you have any hints? Is that the right way or is there other possibilities?
    Thanks

    You could get hold of a map of sessions in the application scope. Make use of HttpSessionListener to add/remove sessions to/from the map.
    JSF is just another component based MVC framework on top of JSP/Servlet. Everything which you can do in JSP/Servlet is just still possible. You only need to understand how JSF works under the hood.

  • HT1766 How can I keep two versions of backup of the same IOS device in iTunes?

    HI,
    I wish to keep two versions of the same iPad backup in iTunes.
    Is it possible? Pl. advice. Thanks. K.V.Ramani 

    Hi Diavonex,
    Pl. see screen shot of iTunes backup.
    I have one iPhone and  one iPad back up only. Pl. advice. Rgds, Ramani

  • How to compare the simulation version

    Dear Experts,
    For Operative Projects we can create Simulation Versions (CJV1 / CJV4) & Project Version (CN72).
    We can compare different Project Versions with Operative Project (S_ALR_87013539 / 38).
    Similarly can we compare Simulation version with Operative Project?
    OR can we see plan cost report for simulation version?
    Please guide.
    Rajesh

    Hi,
    Simulation versions are not meant for comparison purpose. You can use Project versions for that, which are snapshots of project at that point of time.
    Simulation versions can be used to analyse 'what-if' conditions and for quotation ie pre-order analysis. Before receipt of sales order, you can create simulation project and do cost planning for quotation purpose. After receipt of sales order, this project can be made operative. In case of loss of project, you can delete simulation.
    Another case can be during execution you want to check "what happens if" kind of conditions. you can transfer operative project to simulation version, simulate reqd condition. If results are desirable, you can copy the simulation version onto current project or alternatively delete simulation.
    Regards

Maybe you are looking for

  • Oci8 and $Oracle_Home

    Hey all, I've been trying to get Oracle-XE 10G working with PHP on Ubuntu 10.04 (Not server) which is prooving to be quite an experience; I'll try to summerise everything I've done and what I'm having problems with below. Any pointers at all would be

  • Forms 10g not supporting Analytical functions

    Hi all i try to use analytic funtion like      row_number() over (partition by uuid order by timesheet_acct) rn but form did not compile this while when i run the same analytic function in SQL prompt it runs fine. is forms support Analytical function

  • Why ScheduledThreadPoolExecutor is not respecting the delay?

    I have a Customized implementation for ScheduledThreadPoolExecutor using which I am trying to execute a task for continuous execution. The problem I have faced here with the implementation is, some tasks executed continuously where as two of them are

  • You are not authorized to page for Create button only

    Background fact: we just updated to APEX 3.2. I have an existing page that works fine with a report region that you can edit or click on a button to add a new record on a new page. I attempted to add a region with a tabular form region. When I attemp

  • SAP note for Manager's Desktop ECC 6.0

    Hi, Are there any changes in Manager's Desktop in ECC 6.0 ? If no, is there any SAP note or any SAP document stating that there are no changes in Manager's Desktop for ECC 6.0 ? If yes, can someone pls share the changes. Thanks much....