BW Upgrade from 3.1 to BI7.1

Hi,
we are planning to upgrade one of our BW3.1 to BI7.1 ABAP+JAVA system.I need some details about the BW upgrade before palnning.
Our BW current version is BW3.1(SAP BASIS 620)
Is it possible to upgrade BW3.1 ABAP system to BI7.1 ABAP+JAVA system in same upgrade tool?
Is it possible to upgrade BW3.1 to BI7.1 directly?
or do i need to upgrade first BW3.1 to Bw3.5 and then BW3.5 to BI7.1?
Thanks in advance.
Vijay

I dont think 3.1 had JAVA comnponents - you would have to necessarily go for a separate stack install..
The path would be :
Upgrade 3.1 kernel to 640
Upgrade to 7.1
Install and configure the JAVA Stack - you could have the JAVA WAS running on the same server if required - but your server has to be sized for the same.
You will have to install the JAVA stack separately...
else..
Upgrade to 3.5 - install the JAVA components
Upgrade to 7.1 as a dual stack - but this would mean that you will have to test and validate the 3.5 upgrade first.
Edited by: Arun Varadarajan on Oct 14, 2010 8:27 PM

Similar Messages

  • Delta not working after upgrade from 3.5 to BI7.0

    Hello All,
    We have recently upgraded from BW3.5 to BI7.0 and the standard delta is not working now after the upgade. The name of the Extractor is 0CRM_SALES_ACT_1.
    Did anyone come across this problem before or  can anyone suggest the solution.
    Thanks
    Madhu

    Hi Madhu,
    I've experienced a similar problem with this extractor.  I attempted to Initialize Delta with Data Transfer to no avail.  The job ran for 12+ hours and stayed in "yellow" status (0 records extracted).  The following steps worked for me:
    1.  Initialize Delta without Data Transfer
    2.  Run Delta Update
    3.  Run Full Update and Indicate Request as Repair Request
    Worked like a champ, data load finished in less than 2 minutes.
    Hopefully this will help.
    Regards.
    Jason

  • Problem with Java Script after upgrade from BW 3.5 to BI7

    Dear Colleagues,
    We're facing the issue with Java Script after upgrade of BW 3.5 to BI7.
    Just after update we checked the basic functionality and it occured that some of web templates that use Java Script don't work. They generate seelction screen, but after selection the screen becomes blank without any error messages.
    We're currently stucked since web templates weren't converted to BI7 version so they should work exactly as before the upgrade.
    We compared the Java code with other environment that was not upgraded - it's perfectly the same.
    The only explanation that comes to my mind is that some Java Script settings on the server level were changed during the upgrade but I have no idea where I can check that.
    Thanks in advance for any suggestions,
    Andrzej Bobula

    Hi Deepu,
    Thanks, it was great to read your reply and then few minutes later talk to you live on SDN Day!
    Unfortunately, http cache clean-up did not help. But there is another funny thing I found - for exactly the same 3.5 webtemplate html code returned from WebAS 3.5 was different then from 7.0.
    Unfortunately, this editor does not allow to paste complete code, even in CODE brackets, but here are main differences:
    <b>3.5</b>
       if (navigator.appName == "Microsoft Internet Explorer")
    <frame src="/sap/bw/BEx?SAP-LANGUAGE=E&PAGENO=1&REQUEST_NO=1&CMD=GET_TEMPLATE"
    name="Content">
    and
    <b>7.0</b>
       if (navigator.appName.indexOf("Microsoft Internet Explorer")!=-1)
    <frame src="/sap/bw/BEx?SAP-LANGUAGE=E&PAGENO=8&REQUEST_NO=0&CMD=GET_TEMPLATE"
    name="Content" 0nLoad="javascript:loadTitle()">
    (I intentionaly put 0 i/o o in 0nLoad, otherwise Forum's editor does not accept the text.
    How about SAP's claim that technical upgrade from 3.x to 7.0 changes nothing?
    Regards,
    Vitaliy

  • Upgrading from BW 3.5 to BI7.0

    Hi all,
    What is the work involved in a upgrade process?Lets suppose we are upgrading from BW 3.5 to BI 7.0.
    Thanks in Advance,
    Aravind

    Hi
    go through this
    Up grade 3.5 to BI 7.0
    Upgrading BW 3.X to SAP NetWeaver 2004s BI
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2e8e5288-0b01-0010-2ea8-bcd4df5084a7
    /people/prakash.darji/blog
    Rolling out the New SAP NetWeaver 2004s BI Frontend Tools
    Troubleshoot the SAP NetWeaver 2004s BI Frontend Installation
    /people/prakash.darji/blog
    hope this helps.
    M Kalpana
    Message was edited by:
            Kalpana M

  • Upgrading convertion routene from BI3.5 to BI7.0

    Hello experts,
                          I am an ABAP consultant, We are upgrading the code written in BI conversion routines of 3.5 version to BI 7.0.
    Below is the code in a BI 3.5 routine.
    PROGRAM UPDATE_ROUTINE.
    *$*$ begin of global - insert your declaration only below this line  *-*
    DATA: l_pp_o0100 LIKE /bi0/app_o0100,
          l_pp_ds0300 LIKE /bi0/app_ds0300,
          g_prodorder_save LIKE /bi0/app_o0100-prodorder,
          g_wip_factor LIKE /bi0/app_o0100-maxwipfop,
          g_wip_factortotal LIKE /bi0/app_o0100-maxwipfop,
          g_amount_cumulated LIKE /bi0/app_ds0300-amount,
          l_/bi0/app_o0100_itab TYPE HASHED TABLE OF /bi0/app_o0100 WITH
          UNIQUE KEY prodorder,
          l_/bi0/app_ds0300_itab TYPE HASHED TABLE OF /bi0/app_ds0300 WITH
          UNIQUE KEY coorder calday.
    *  FORM check_new_prodorder
    *  -->  L_PRODORDER
    *  -->  G_WIP_FACTOR
    FORM check_new_prodorder USING l_prodorder
                             CHANGING g_wip_factor.
      IF l_prodorder NE g_prodorder_save.
        CLEAR l_pp_o0100.
        READ TABLE l_/bi0/app_o0100_itab WITH TABLE KEY prodorder =
        l_prodorder INTO l_pp_o0100.
        g_wip_factor = ( l_pp_o0100-maxwipfop + l_pp_o0100-maxwipfwi ) / 2.
        g_prodorder_save = l_prodorder.
      ENDIF.
    ENDFORM.                    "check_new_prodorder
    *$*$ end of global - insert your declaration only before this line   *-*
    FORM compute_data_field
      TABLES   MONITOR STRUCTURE RSMONITOR "user defined monitoring
      USING    COMM_STRUCTURE LIKE /BI0/_2CS2LIS_04_P_MATNR
               RECORD_NO LIKE SY-TABIX
               RECORD_ALL LIKE SY-TABIX
               SOURCE_SYSTEM LIKE RSUPDSIMULH-LOGSYS
      CHANGING RESULT LIKE /BI0/V0PP_C02T-WIP
               RETURNCODE LIKE SY-SUBRC
               ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel update
    *$*$ begin of routine - insert your code only below this line        *-*
    * fill the internal table "MONITOR", to make monitor entries
    * result value of the routine
      PERFORM check_new_prodorder USING COMM_STRUCTURE-prodorder
                                CHANGING g_wip_factor.
      RESULT = g_wip_factor *  COMM_STRUCTURE-itemqty -
                               COMM_STRUCTURE-gr_qty.
      IF RESULT < 0 OR
         COMM_STRUCTURE-gr_qty = 0 OR
         COMM_STRUCTURE-gr_qty = COMM_STRUCTURE-itemqty.
        RESULT = 0.
      ENDIF.
    * if the returncode is not equal zero, the result will not be updated
      RETURNCODE = 0.
    * if abort is not equal zero, the update process will be canceled
      ABORT = 0.
    *$*$ end of routine - insert your code only before this line         *-*
    ENDFORM.
    I have written the global form check_new_prodorder in an subroutine pool program and tried to make an external call in the conversion routine ( of BI 7.0 version ).
    I see in the debug mode that there is no records in the internal table l_/bi0/app_o0100_itab in the global form called in the local form, but in the older version ( in 3.5 ) there is data in the internal table specified.
    Please provide your valuable inputs on this issue of mine,
    Regards,
    Murthy.

    Hello Murthy,
    check these links for some pointers:
    /message/6271894#6271894 [original link is broken]
    BW 3.5 to BI 7.0 Upgrade - ABAP OO migration
    Re: Risks of upgrade from BW 3.5 to 7.0
    Regards,
    Lakshmi

  • BW Upgrade from 3.x to 7.0

    Folks,
    We are planning to upgrade from BW 3.x to BI 7.0, Is it a direct update process or is it in 2 step process? And also I was reading some of the posts its says there are some issues to upgrade from 2004 to 2004s? Can some one point out those issues?
    Thanks in Advance,
    Kumar

    Hi,
    Some features of BI 7 are
    1. In Infosets now you can include Infocubes as well.
    2. The Remodeling transaction helps you add new key figure and characteristics and handles historical data as well without much hassle. This is only for info cube.
    3. The BI accelerator (for now only for infocubes) helps in reducing query run time by almost a factor of 10 - 100. This BI accl is a separate box and would cost more. Vendors for these would be HP or IBM.
    4. The monitoring has been imprvoed with a new portal based cockpit. Which means you would need to have an EP guy in ur project for implementing the portal !
    5. Search functionality hass improved!! You can search any object. Not like 3.5
    6. Transformations are in and routines are passe! Yess, you can always revert to the old transactions too.
    this is a good PDF on Upgrade from BW 3.5 to BW 7.0
    latest on upgrade tp BI7.0
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2e8e5288-0b01-0010-2ea8-bcd4df5084a7
    http://help.sap.com/bp_epv170/EP_US/Documentation/How-to/Planning/Master_Guide_NW2004s.pdf
    You can seek more information on BI 7.0 in the SAP NetWeaver2004s Ramp-Up.
    /community [original link is broken]
    Re: BW 7.0 Release
    Re: BW 7.0 Release
    Re: BW 7.0
    Please reward points.

  • Extraction issue in BI after Migration of dataflow from 3.x to BI7

    Hi,
    We are doing a BI upgrade project from 3.x to 7. I have the following
    query on data extraction from PSA to DSO and then to infocube after
    migration of dataflow (Updaterules, transferules and datasource) from
    3.x to BI7.
    When I load data from PSA to DSO using DTP it is taking all the
    requests data to DSO (all old requests data) instead of only new delta
    request data. And also when i load from DSO to infocube same problem
    is there (instead of taking only new delta request data, extracting
    all dso active data).
    Please suggest.
    Best Regards,
    SG

    In BI 7, we dont have an option to run init without data transfer. So first time when you run a delta DTP it will work as full load and set init pointer. This is expected.
    Case 1: If you have already loaded duplicate data into the data targets
    a. If request is already compressed perform reverse posting. if not compressed then perform selective deletion based on the request.
    b. Next deltas will work fine.
    Case 2: Still not loaded
    Follow the steps suggested by Luther Blake.
    Thanks,
    Hemanth

  • Help for Sap BW upgrade from 3.5 to 7.0

    Hi All
    Please can anyone help me in sap bi upgrade from 3.5 to 7.0.
    Please send me helpful documents and if anybody have already worked into similar projects please send ur email id.
    Willl appreciate the quick repsonse with points.
    Regards and Thanks
    Dheeraj Dua

    Hi Dheeraj,
    Check this- how to on BW 3.x Upgrade Checklist
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/ee14e25d-0501-0010-11ad-8eb2861a7ec0 [original link is broken]
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/biw/g-i/how%20to%20bw%203.x%20upgrade%20checklist
    Please check this link and you will find all Upgrade guides
    https://websmp209.sap-ag.de/instguides
    Also Check this,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a4/1be541f321c717e10000000a155106/content.htm
    this is a good PDF on Upgrade from BW 3.5 to BW 7.0
    latest on upgrade tp BI7.0
    http://help.sap.com/saphelp_nw04s/helpdata/en/a4/1be541f321c717e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/sdn/developerareas/bi?rid=/webcontent/uuid/e78a5148-0701-0010-7da9-a6c721c6112e [original link is broken]
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2e8e5288-0b01-0010-2ea8-bcd4df5084a7
    http://help.sap.com/bp_epv170/EP_US/Documentation/How-to/Planning/Master_Guide_NW2004s.pdf
    You can seek more information on BI 7.0 in the SAP NetWeaver2004s Ramp-Up.
    /community [original link is broken]
    Hope This Helps.
    Regards,
    Ravikanth

  • How to migrate the Workbooks from BW3.1 to BI7

    Dear Team,
    How to Migrate the workbooks from Bw3.1 to BI7. We have recently upgraded to BI7. What are necessary steps and necessary cares needs to take for this.
    Best Regards,
    SG

    Migration is manual. When you open up a 3.x component in a 2004s tool in migrates it. There is no automatic migration available
    Rolling out the New SAP NetWeaver 2004s BI Frontend Tools
    Migrating Advanced BEx Analyzer Workbooks - What VBA is Supported?
    Hope it Helps
    Chetan
    @CP..

  • I upgraded from 3gs and want to use my old 3gs as an ipod. how can i update my new apple ID on the 3gs as it still shows a previous one that I had?

    I recently upgraded from 3Gs to Iphone4 and want to use my old 3Gs as an ipod. how can i update
    the user ID on the 3gs to a new one that I have as it is still showing a previous user ID?

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.

  • Is it really possible to upgrade from a Treo 650 to a Treo 750?

    I am not a very happy customer at the moment, but any help would be greatly appreciated. I upgraded from my old Palm Tungsten to a Zire, then to a Cingular Treo 650, combining three devices into one. I have since discovered that the Treo 650 seems to have a faulty transmission mode, as I can rarely be clearly understood by whomever I call. Am on the second (or third, I have lost track) and continue to have the same problem. I get five bars of reception but can't be understood on the other end. A bit of a problem when one is trying to call 911. Am constantly told I am "breaking up". The repair shop says it "Can't duplicate the problem". OK, then I do not want to give up all the info I have stored in the fool thing, and the 750 seems to have a different system, so I thought I would try that. All the stuff I could find seemed to indicate it wouldn't be a problem to upgrade. When the 750 arrived, I tried to install the software from the CD on my Windows XP computer. No dice. Setup encounters an error and closes. Can't even look at the files, because setup tries to run any time I access the CD. From any drive.  Gave it to my girlfiend to check on her computer, and the CD seemed to run fine. Other CDs work just fine on my computer. Must be some kind of conflict, but what? Tried calling the AT&T number that suggested they could help with setup, and was first connected to the business center, they routed me to the laptop center, who routed me to the network center, who said they would have to bring in the Palm customer service and connected me to a Mac guy that dumped me back to a menu that took me to someone for whom English is a second language with whom I was trying to communicate over a very poor satellite connection. They made no sense anyway. telling me first that I couldn't have two desktops running (wrong, my girlfriend has my old Zire and the CD worked fine) and then insisting that the serial number on my device had to start with a P, when it clearly does not have any alpha characters in it. Gave up on that route of assistance. Managed to get the new ActiveSync installed from my girlfriends computer over the network. Great. Now let's get my 650 synced with Outlook (which I have not used at home) and see if we can move on. Nope. First I have to update Outlook 2000 from the old Win98 to my current XP. Find the old CD, and square that away. OK, now sync to Outlook. Nope. The sync program gives an error, saying it will only sync with Outlook 98, 2000, and XP(2002). Good grief. I have Outlook 2000, and the software apparently does not recognize it. If the Palm doesn't work, there is no reason for me to keep this phone, and I am very close to returning it and abandoning the Palm entirely when I upgrade to something that works, although I dread re-entering all that information.
    Post relates to: Treo 750 (AT&T)
    This question was solved.
    View Solution.

    Thanks for the feedback. Today I installed an Enterprise version of Office 2007 I purchased a while back, but had not yet installed. Microsoft presented a few challenges, but they were quickly resolved. I then downloaded the appropriate conduit from Palm, and synced the 650 with the handheld overwriting the computer. Then used Active Destop to sync the 750. Satisfied I had moved as much info as possible, I called AT&T and had them move the phone number to the new Treo.
    Bonus! When the guy at AT&T called me on the new phone to verify it, he said it sounded better than my landline.
    Sorry for the streaming paragraph. When it is late I tend to write like I think.
    Dave
    Post relates to: Treo 750 (AT&T)

  • I upgraded from iPhone 3GS to iPhone 6.  Everything converted fine until I deleted an app in error.  When I downloaded it from iTunes, my account is no longer recognized by the app's host servers.  Can I go back and re-sync one app from my old phone?

    I upgraded from iPhone 3GS to iPhone 6.  Everything converted fine.  Yesterday I deleted an app in error.  When I downloaded the software it from iTunes ( did this many times on the old 3GS), my account is no longer recognized by the app's host servers (Playtika), even though it did after the initial conversion.  Can I go back and re-sync just one app from my old phone?  

    Try deleting what is called the iPod Photo Cache. 
    http://support.apple.com/kb/TS1314

  • I have just downloaded the upgrade from Mountain Lion to Yosemite. In the process i am now unable to gain access to iTunes. The app on desktop no longer works and the install is not able to be opened.

    I Have downloaded the upgrade from Mountain Lion to Yosemite. In thee process of so doing I have lost access to iTunes.
    The app on desktop no longer opens the program and having downloaded and installed as per Apple instructions, can not make a connection.

    Hi, drjbuchanan.  
    Thank you for visiting Apple Support Communities.  
    Here are some troubleshooting steps that I would recommend going through when experiencing this issue.  
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    http://support.apple.com/en-us/ts3430
    Troubleshooting iTunes installation on Mac OS X
    http://support.apple.com/en-us/ht2311
    Cheers, 
    Jason H.  

  • Can't print from IE 8 after upgrading from Vista to Windows 7

    My laptop (HP Elitebook 8530w) uses two HP printers: Color LaserJet CP3525x (at work) and Deskjet 6940 (at home). Both printers are accessed across a local network.
    I recently upgraded from Vista Enterprise to Windows 7 Enterprise.
    Everything still prints fine (from Word, Adobe Reader, Windows Photo Viewer, etc.), except for IE 8! When I try to print a web page from IE, it prints only the page header, and otherwise the sheet is empty. This symptom occurs on both printers. (And of course this worked fine before the upgrade.)
    Any ideas? Thanks for any help.
    Jeff
    This question was solved.
    View Solution.

    (same poster)
    If anyone else is having this problem, I found the solution on another forum (http://social.answers.microsoft.com/Forums/en-US/InternetExplorer/thread/920588e5-ccc4-4e24-83d6-606...).
    Specifically, the following steps solved the problem:
    1. If it doesn't already exist, create a directory named "Low" in your directory "C:\Users\<your_user_name>\AppData\Local\Temp\".
    2. From a command prompt, issue this command:  ICACLS C:\Users\<your_user_name>\AppData\Local\Temp\Low /setintegritylevel (OI)(CI)low
    Jeff

  • Fields in read-only mode for BP transaction in upgrade from 4.72 to ECC6.0

    Hello,
    This is regarding the query for BP transaction in upgrade from 4.72 to ECC 6.0.
    While creating BP / Changing BP system is disabling the fields in compnay code & sales area option. There is a SAP not provided 907860; and specified that the proplem is because of the delta customizing.
    All the customization settings are as per the note. And the Synchronization Control is also activated. But still the fields are disabled only.
    I have checked the field settings also in Cross-Application-Components & Logistic-Genral.
    But these are not working for compnay code & sales area data.
    please let me know if anyone has faced this type of problem / found any solution on this.
    Best Regards,
    Shubhada

    SAP IMG  -> Cross Application Components -> Master Data Synchronization &#61664; Synchronization Control -> Synchronization Control -> Activate Synchronization options
    This setting allows you to activate synchronization of BP with R/3. Not maintaining the values may result in certain fields being read-only in BP.
    Suggested Values:
    Source Object: BP | Target Object: CUSTOMER | Active Indicator : X
    Source Object: BP | Target Object: VENDOR | Active Indicator : X
    Source Object: CUSTOMER | Target Object: BP | Active Indicator : X
    Source Object: VENDOR | Target Object: BP | Active Indicator : X
    Have you set all of the above settings??
    BHARATH

Maybe you are looking for

  • System slows down after installing AirPort Extreme Update 2007-001

    my macbook's internet related performance has been significantly slowed down recently. i have windows xp installed on my mac from where i can compare the performance of ie and safari or ie and firefox on mac. the result is ie on windows xp is much fa

  • How to create PDF from text file with specific layout?

    I wanted to create the pdf from text file in specific layout - Landscape orientation and JIS B3 Page size while at Adobe Acrobat Pro. In past, I could do a right click on a text file (desktop area) and select print to print out the document into .pdf

  • Safari Crash what can i do? need help

    This just happened 15 min ago... i was opening the safari app when it just crash. first time that this happen...can someone help

  • Effects Scroll motion

    Hi all; I am missing the Scroll Motion tab under the Effecrs button. I have installed Muse CC, no upgrades available, so its not that. Any ideas? Thanks Maarten

  • After installed Lion, mail can't read the old messages

    I have installed LION and all it's OK!! But only MAIL have a Big problem, I can't read the old messages!! Someone may help me??? THanks Franco