Regression Testing for BW 7.01 - Impact of EHP 1 upgrade for CRM 7.0

Hello All,
The CRM team has rolled out enhancement pack 1 for CRM 7 to Development box and we need to do some regression testing on the BW side to make sure the upgrade goes smoothly on QA and Production. If you have gone through the same process, could you please provide a list of or link to standard CRM extractors that could be used as checklist for regression testing on BW side?
Thanks.

Re: ECC upgrade impact on BI
testing in BW for ECC upgrade
Re: ECC upgrade impact on BI
Go through these threads, sure it would help you.

Similar Messages

  • Risks for ongoing Dev-Transports during SP & EhP Upgrade

    Hello together,
    We are planning at the moment a Support and EhP upgrade for our whole SAP system landscape. We have one centrally ERP 6.0 System where at the moment all affiliates will be migrated into one client. So we have ongoing Roll-Out projects until 2012. During this Roll-Outs we want to Upgrade our SAP ERP system landscape with the relevant Support Packages and EhP 5 in the mid of the next year.
    My question is, how should or must we handle the transports, if we want to implement the Support Packages and EhP in parallel to the ongoing Project Transport. If there are some objects affected of new objects coming up from the EhP Packages and affected also from development-transports from the projects. I think that could be a risk that the queue in the Q-System is not valid an we get an surprise in the productive system after transporting all transports form the Support packages and EhP Packages within the Project relevant transport in the P-environment.
    So, how should or must we handle the Transports during this time incl. emergency Transports to keep always a valid transport queue in the Q-System for the P-System and to avoid an overtaking of Transports.
    Thanks in advance for best practice, documentation and answers.
    Best regards
    Stefan Krogmann

    As long as you don't activate additional functionality in the source/DEV system transports should be smooth. However, it's always advised as with support packages installations to keep the gap between DEV/QA/PRD as short as possible.
    Markus

  • I have a license for Creative Suite CS3 and bought an upgrade for CS5 a few years later. Would the original serial number for CS3 be the same for my CS5 version?

    I have a license for Creative Suite CS3 and bought an upgrade for CS5 a few years later. Would the original serial number for CS3 be the same for my CS5 version?

    No... if you do not have CS3 installed, you will enter your CS3 serial number when asked for proof of a qualifying product... and then you will enter your different CS5 serial number... every version, new or upgrade, has a unique serial number

  • Do I have to get a hard copy of Snow Leopard for my iMac if I already have it for my MacBook?

    I have Leopard on my iMac, and Snow Leopard on my MacBook (both with all available updates)~I tried to use the Snow Leopard Install DVD from the MacBook to upgrade the iMac, but it said "Mac OS X 10.6 cannot be installed on this computer."  Why???  Do I have to get a hard copy of Snow Leopard for my iMac?  Are there different upgrades for the iMac vs. MacBook?
    I think I understand that once I have both computers on Snow Leopard, the Lion upgrade would be ONE upgrade for BOTH computers {I'm guessing I would need the client version for at home use}.  Also, once Lion was on one computer, would I just go into the Mac App store on the other one and download the upgrade on the other one?  But no additional fee would be charged?  Lastly, I read about the combo option that includes all updates to Lion since it's release~would that be the main Lion upgrade on the Mac App or would I have to search for it?
    Thanks for your help!

    The disc you used would have been the install disc that came with your Mac. These can only be used on that as they are made for that specific model.
    Make sure your machine meets requirements
    Macs with an Intel Core 2 Duo, Intel Core i3, Intel Core i5, Intel Core i7, or Xeon processor.)
    At least 2GB of RAM
    Mac OS X 10.6.6 or later (Mac OS X 10.6.8 is recommended)
    7 GB of free hard drive space is recommended
    Once you've purchased it would be a good idea to create a bootable DVD or USB
    http://www.macworld.com/article/161069/2011/07/make_a_bootable_lion_installer.ht ml
    But you can also go into the purchased section and download again

  • Regression test for Controlling area and assets

    Hi,
    Friends
    We are up grading from version 4.7 to ECC 6.0 .In this case we have to do regression test . May i know what are the topics should be tested .Could you give me a brief explanation including the transaction codes.
    Waiting for you information
    Thanks in advance
    Best regards
    Medha

    Hi
    Doing a process oriented testing will be the right apprach.. i.e. Procure to Pay, Order to cash, Manufacturing scenario and month end process of variances, WIP and settlement, payments, With holding tax filings, excise returns, executing your key reports, etc
    This way you can be more than sure that the up-gradation is doing its job
    Ajay M

  • ECM - How to open Review for Regression Testing on a regular basis

    Hi,
    We have implemented ECM for a large corporation that wants to run weekly regression testing on the application (including Portal functionality).  A problem occurs with the review period as it is set to the month of August (in table T71ADM08) however to be able to test the application we need to be able to open the review in the testing environment.
    Has anyone had similar experience?  We would like to avoid the need to transport changes through on a weekly basis opening and then closing the review.  The best solution at the moment seems to be creating a custom program that will enable the testers to open and close a review directly in the testing environment. 
    Any suggestions?
    Many thanks,
    Kelly.

    Hi
    For dynamic files you can;
    1. either do the DDL on the external table to point to the file with the changing name
    2Copy the file to a fixed name before using the external table/maps
    3. Use the preprocessor to cat/pipe these files for the external table. See the post here http://blogs.oracle.com/warehousebuilder/2009/06/file_staging_using_external_table_preprocessor.html it shows using gunzip but could simply be doing 'cat' on a bunch of files to standard output
    Cheers
    David

  • Simple test suite for regression testing

    Hi,
    I was wondering if anyone has a simple test suite available.
    I'm after these main areas:
    1. arbitary script lanching (or just firing off ud32 files)
    2. database comms (inserting test data, extracting final status)
    3. comparison (ala diff) for regression tests.
    I have knocked out a partial (i.e. not 100% finished!) one myself in perl, but was wondering what else other people have created .
    i'm Looking for insparation / use what has already been done!
    Thank in adavance,
    Wayne

    Subclass the test case itself, and have a factory method to return instances of the correct class you wish to test, or, use a protected instance variable to put it in
    e.g
    public class TestMyClass extends TestCase {
       public MyClass getMyClass() {
         return new MyClass();
      public void testSomething() {
           MyClass myClass = getMyClass();
           assertTrue(myClass.isWorking());
      public class TestSubclass extends TestMyClass {
         @Override
         public MyClass getMyClass() {
            return new Subclass(); // assume this extends MyClass
         // all the superclass test methods still get run
      }or
    public class TestMyClass extends TestCase {
      protected MyClass myClass;
      public void setup() {
        this.myClass = new MyClass();
      public void testSomething() {
           assertTrue(myClass.isWorking());
      public class TestSubclass extends TestMyClass {
      public void setup() {
        this.myClass = new SubClass();
         // all the superclass test methods still get run
      }

  • Set of RAW file test images for regression tests

    Hello
    Does anybody own a broad range of test images which can be shared where most RAW file formats are covered to help making a new plugin stable or do regression tests over different versions of Lightroom or plugin revisions?
    Thanks,
    Daniel

    Hi Daniel,
    I haven't seen anyone pull together a complete set of RAWs for this type of testing. Most people only need a few samples of different manufacturers just to ensure their code works OK. I'm curious to know what type of Lightroom plugin would require as an exhaustive a set of tests as you are suggesting.
    You've already looked at the dcraw team's work. Might also want to look at Phil Harvey and his exiftool work to see if he has a set of test files available. Or RawTherapee though they might not bother with their own testing since I'm pretty sure they use dcraw under the covers.
    I suspect you will need to do some downloading of files from review sites unless one of these big players has files ready for testing. Copyright issues might prevent that. Photography Blog makes it as easy as any of the sites I've found to download RAW sample files so keep them in mind if you run out of luck.
    Matt

  • Non-Regression Testing?

    Gurus,
    what do we mean by "Non-Regression Testing"?

    Hi
    Non Regression Testing : After changing some functionality in the application
    we'll go for regression to verify the bugs and its impact on the other functionality of the application.
    Example : If release of the project is expected soon we don't get asmuch time to test the whole application again. At that time thedecision may be taken by tester with lead that dont go for regressioni.e. Non Regression Testing.
    In such a case only we have to retest the changing functionality/module/build

  • How to do Regression Testing in XI

    Hello:
    We are doing some patch upgrade for XI from SP13 to SP16 and we are planning to do some regression testing in Dev, then in QA and then in Prod. Are there any steps to take or is there any blog or PDF, links on how to do such regression testing? We have quite a lot of active interfaces.
    Thanks.

    Yes ,you are right.
    If you upgrade new SP, first you need to check is the SP is upgraded correctly. For this you can check SP versions in ABAP stack and J2EE stack.
    Next , you need to check the new features of the new SP. This you need to go manually to the atleast some adapters and you can check the features.
    SM59 etc are part of Post Intsallation. So this is not required at first site. But it is better to do Readiness Check. These are consider as Regression testing for XI when you are upgrading/Moving the systems into different environment etc.
    Atlast you can test end to end scneario to check the availability of Monitoring component.
    These things our team has done .
    Regards,
    Moorthy

  • Automated Regression Testing

    Apologies for putting a more advanced question in a general forum but there is no Topic for QA/Testing (that I know of).
    Okay, I've been tasked with finding a solution for fully automated unit, component, system, and regression testing. I realize that sounds like a tall order and can't truly be done. However, I'd like to get as close as possible to being able to test every aspect of our system and thought I'd post to the community for ideas. We have a typical multi-tiered web app. We have a web interface, business logic on the server-side, Web Services, DAO, etc. Naturally, some combination of testing needs to be performed. So I suppose that first I need to make a list of all the (general) types of testing that can be done. So far I have:
    - syntax validation
    - link checking
    - unit testing
    - record and playback (robot user for web UI)
    - custom scripting (for anything I can't buy a tool for)
    - performance monitoring & stress testing
    - security testing
    - etc.
    So I guess my first question is: What other types of testing am I missing here? I honestly think I'll end up with 2-3 sets of tests that hopefully give me good testing coverage. The end goal is to have a nightly build that includes a series of tests which generate reports. So in the morning someone can open the reports and see if anything's really busted. So basically, after the build finishes, the tests should be kicked off. I'd like to use Ant for this but I suppose a cron job could be written or whatever. I'm not worried about that right now.
    Anyway, I don't have very specific requirements yet but I'm thinking of breaking my work up into unit, component, and system level testing. My initial thoughts are that I'd need:
    1. Unit Testing - Ant would simply kick off all the JUnit tests we have available. This would do basic class level testing and validation.
    2. Component Testing - Custom Java code/scripts that would tests some specific functional area. This is open ended in my mind as I'm not that familir with the codebase yet. But an example would be "register a user" or "make a reservation".
    3. System Testing - Needs to simuilate a user hitting the web interface and would invoke all tiers. So I'm guessing I need to buy some software product to fill out forms automatically and whatever else.
    Can you all let me know if there's anything major I'm missing? What methodologies or tools do you recommend? Any links on good tech articles regarding this? Anything comments or feedback welcome.
    Thanks in advance!

    I'd recommend adding automated acceptance testing to the list of things to consider. Example:
    http://fitnesse.org/
    ~

  • Regression testing on PDF output files from Reports?

    My current client is looking to do more automated regression testing of the output (content) of their reports, most of which are output from Reports6i into Adobe Acrobat PDF file format. Is anyone currently using or aware of a tool (QARun, WinRunner, etc.) that will do this? (Most of the tools can do a binary comparison of the PDF files that were output, but we need something that will look into the PDF files themselves and tell us where any differences are found in the actual content (text) of the report itself.)
    Thanks in advance for any info anyone can provide!
    - Bill

    Dear Nick,
    Just ensure a printer is configured. This can be done by typing in echo $PRINTER at the $Prompt.
    If it returns null then configurea printer and i fell this should resolve your problem,
    Since it did resolve my problem.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Nick Mavrakis:
    I am having some trouble getting pdf output in the unix environment from Reports 6i.
    If I kick off a defined report file (.rep) from the command line as follows:
    rwrun60 testreport.rep destype=file desformat=pdf desname=testreport.pdf userid=connection_details
    I get the following errors:
    REP-0004: Warning: Unable to open user preference file.
    REP-3300: Fatal error in toolkit.
    UI-9: This function call is out of context
    If I run the command without the file output options (rwrun60 testreport.rep userid=connection_details) then the report opens up on the screen correctly. From here, if I try to generate a pdf file, I get the following error:
    REP-1800: Formatter error.
    The report is defined as character type, and is a simple listing of approximately 50 records from a database table. There are no graphics or any pl/sql defined in the report.
    Has anyone had similar problems in trying to do this?
    Any help is greatly appreciated.
    Cheers
    Nick<HR></BLOCKQUOTE>
    null

  • [svn:bz-4.x] 16147: Fix a few more regression tests on the 4. x branch that were failing when using Spring integration.

    Revision: 16147
    Revision: 16147
    Author:   [email protected]
    Date:     2010-05-17 06:18:38 -0700 (Mon, 17 May 2010)
    Log Message:
    Fix a few more regression tests on the 4.x branch that were failing when using Spring integration.
    Modified Paths:
        blazeds/branches/4.x/qa/apps/qa-regress/WEB-INF/src/runtimeconfig/remoteobjects/ROMessage Destination.java
        blazeds/branches/4.x/qa/apps/qa-regress/WEB-INF/src/runtimeconfig/remoteobjects/RuntimeCo nfigurator.java
        blazeds/branches/4.x/qa/resources/webtier/flex_sdk_4/flex-config.xml

    Well heres my story. I tried kde4 from extra the last 3 weeks and I like it. I have used xfce for the past 3 years, previous to that gnome. Tried kde but never really liked it. Now I am only using workspace, base, mutimedia and graphics.
    Here is what I like.
    1- Dolphin, awesome I have used thunar a while and it is great but I love splitview, and fish for ssh (which has been around a while I know), and the ability to mount other partitions on my hdd with a click no fstab entry or nothin'.
    2-Pretty, I've used xfce with built in compositor an love the snappiness. But I like desktop grid with kde4 and flipswitch. Compiz-fusion is cool but I prefer not to use I'll take what the DE gives. Plasmoid are cool too.
    3- Gwenview is nice too. Use to use gqview, but thumnails are nice.
    Looking forward to or lacking
    1- Keyboard shortcuts, Yes xbindkeys is there but if I have a DE I want it to do it. They just don't work now.
    2- kde4 has windows specific settings, but I can't set the opacity for particular windows , doesn't work.
    3- Ram of course is much higher in kde4, but maybe I'm getting old I just don't care as much.

  • Enviroment to Regression Test

    Hi,
    We are configurating ChaRM in Solman 7.1 SP8.
    Ours landscape initial was DES - QAS - PRE - PRD. We had tha plan to do the regression test in PRE production system.
    But, we have the need of to create and to release the request in PRE production system.
    We want to send to PRD only one request with all deliveries of the period.
    Its is possible to execute regression test in PRE ?
    Thank you for you attention.
    Adriana

    Hi Prakhar,
    Thank you very much for your attention.
    My need is to create a new request with objects lists from multiple requests. Those requests are going with status "test okay".
    I don´t like send all individuals request to PRD.
    To do this process, we need create and delivery a new request in PRE production enviroment.
    Now, we define a new landscape with DEV-QAS-PRD and the ChaRM will control only those enviroments. The fourth enviroment was out of the logical componente.
    At the moment, it problem was solved.
    Best regards,
    Adriana.

  • BW 3.1 to BI 7 Upgrade Non Regression Tests

    Dear All,
    I am planning a BW 3.1 upgrade to BI 7.
    I need to focus on Non-regression tests. In others words, I would like to know what kind of non-regression tests I will have to do to confirm the UAT.
    I am not talking here about post-upgrade activities (technical stuff). I am more focused on the current modelisation that has been upgraded (still in 3.x thought).
    So far, I identified the following:
    __Full Load tests__
    By loading a specific month data scope - before and after upgrade - I can confirm the data load processes through the cubes and ODS.
    Delta Load tests
    I do not know how can I do this (how can I ensure that my R/3 will not change ...)
    Queries
    I can select some of them to ensure they are still working ...?
    What can we have more in the non regression tests?
    Thank you for your help
    chris

    Hi guys
    Any thoughts?
    Thanks,
    Chris

Maybe you are looking for