Create Test Plan from Solution or Project

Hi,
When creating a Test Plan does it matter if it is from the Solution or a Project?
thanks

Hi,
I guess the first question should be which version of Solution Manager are you using, 7.0 or 7.1.
The process is typically to create a project, document the business process hierarchy, assign Test Cases to the business process hierarchy, and create a test plan which allows you to select the processes to be tested and the test cases.  If there are no test cases assigned to processes then the test plan cannot be created.
A simple rule is that an Implementation Project is used to implement new business processes and during this project you document the processes including test cases.  These test cases can be assigned to a test plan and executed.  When the project passes the go-live the documentation you have created during the implementation project can be copied to a Solution. This is when the Solution is updated with documentation relating to the productive environment.
From a documentation perspective the Solution will therefore provide all the documentation associated with the productive landscape, including the test cases you have used as a basis for your test documents in the test plan.  When you change a productive business process you can use a maintenance project to check out the documentation from the Solution, change the documentation, and then check in the changed document.
For Test Cases the same logic applies.  If you need to change a Test Case you can check it out to the maintenance project, create a test plan for the maintenance project and perform the testing.
The important note is that the Solution should reflect the productive environment and a project should reflect the project environment.  The benefit is control and traceability.
Regards,
Rich Labib

Similar Messages

  • Send an e-mail after creat Test Plan STBW_2

    Hi All,
    I am working Solman 7.0 and creating Test Plan from STWB_2. But as we know is "standard" to send e-mails to resources are assigned each activity inside test plan as information about version 7 - EHP1.
    I've hust check out configuration in STBW_SET and is ok too. Maybe there are other customizing necessary to active this e-mails.
    Regards,
    Warlei Figueiredo.

    Warlei,
    See the SAP Note 1348140 - E-mail notification in test sequence does not work.
    Good luck!
    Best regards,
    Jacques.

  • Solution Manager: Creating test plan - no test cases uploaded show up

    Hi,
    I am attempting to create test plans that include all the test case documents that I uploaded to the system.  Unfortunately, when I upload the documents, check them out and then in again, and then go to stwb_2 to create a test plan, the documents do not show up in the test plan structure.
    Why is this and is there someway to make the documents show up?
    Thank you!
    Edited by: acraver on Mar 13, 2009 6:37 PM

    Have u tried regenerating the Test plan by going to change mode and pressing the generate button after selecting the documents
    Secondly what is the status of the doc is it change
    Note whn u generate the test plan you have to chooose the Status of the Test Documents.
    Hope it solve ur problem
    Regards
    Prakhar

  • Create test database from standby without some data

    Hi. I want to create test database from my standby database using rman.
    But i have some some tables and where information is too large i dont want backup all data from this tables. because i dont have enough space on my test server.
    Have u any idea for solution this problem.
    Thanks

    But have suggestion.
    You can create duplicate database on based your target database (to new host) and skip undesired tablespaces...
    bash# rman target /
    RMAN> ....
    your code should be like :
    run {
    allocate auxiliary channel 'dev_0' type 'sbt_tape'
    parms 'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so,ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=my,OB2BARLIST=MY DAILY)';
    allocate auxiliary channel 'dev_1' type 'sbt_tape'
    parms 'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so,ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=my,OB2BARLIST=MY DAILY)';
    allocate auxiliary channel 'dev_2' type 'sbt_tape'
    parms 'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so,ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=my,OB2BARLIST=MY DAILY)';
    allocate auxiliary channel 'dev_3' type 'sbt_tape'
    parms 'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so,ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=my,OB2BARLIST=MY DAILY)';
    SET UNTIL SCN 7769764681915;
    DUPLICATE TARGET DATABASE TO MYTS SKIP TABLESPACE TOOLS_IDX,TOOLS,ARCHIVE,IDX;
    Edited by: Ulfet Tanriverdiyev on Dec 21, 2010 3:42 AM

  • How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    HI,
    How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    Thanks Florin,
    Your piece of code has worked alot, and it was very helpful in changing the Status of the Workitem to "READY" for all the Users fo the workitem.
    Points have been rewarded for your help.
    Process: We have acheived this using the "Work Item Exits", Usng "AFTER_EXECUTION" Method.
    Note: The Exit will be executed if "exit_cancelled"  statement is present/used in the work item method. if not it is not taking to the exit code. I'm unable to find the reason for it. Florin can u please explain this point.
    Please check the link for adding the code in Work Item Exits.
    http://wiki.sdn.sap.com/wiki/display/ABAP/ProgramExitsIn+Workflow
    Please find the Code:
    method IF_SWF_IFS_WORKITEM_EXIT~EVENT_RAISED.
    Get the context of the workitem
      me->wi_context = im_workitem_context.
    After execution of the workitem call the method AFTER_EXECUTION
      if im_event_name eq swrco_event_after_execution.
        me->after_execution( ).
      endif.
    endmethod.
    METHOD AFTER_EXECUTION.
    This method acts as the Event Handler for SWRCO_EVENT_AFTER_EXECUTION
      DATA: LCL_L_WID TYPE SWW_WIID,
            L_STATUS TYPE SWR_WISTAT-STATUS,
            L_NEW_STATUS  TYPE SWR_WISTAT,
            L_SWR_MESSAG  TYPE STANDARD TABLE OF SWR_MESSAG,
            L_SWR_MSTRUC  TYPE STANDARD TABLE OF SWR_MSTRUC.
    Get work item
      CALL METHOD WI_CONTEXT->GET_WORKITEM_ID
        RECEIVING
          RE_WORKITEM = LCL_L_WID.
      L_STATUS = 'READY'.
      CALL FUNCTION 'SAP_WAPI_SET_WORKITEM_STATUS'
        EXPORTING
          WORKITEM_ID    = LCL_L_WID
          STATUS         = L_STATUS
          USER           = SY-UNAME
          LANGUAGE       = SY-LANGU
          DO_COMMIT      = 'X'
        IMPORTING
          NEW_STATUS     = L_NEW_STATUS
         RETURN_CODE    = SY-SUBRC
        TABLES
          MESSAGE_LINES  = L_SWR_MESSAG
          MESSAGE_STRUCT = L_SWR_MSTRUC.
      IF SY-SUBRC EQ 0.
      ENDIF.
    ENDMETHOD.
    Thank You Once Again,
    Ajay Kumar Chippa

  • UCS pre-production test plan from cisco

    Hi,
    Is there a pre-production tests plan from cisco to validate that a new UCS setup is A-OK?
    I found some stuff on google. But nothing from cisco.
    Thanks for any help.
    Stephane.                  

    Hi Stephanie,
    I am unaware of a particular pre-production test plan from Cisco to validate UCS setup but I do believe that Advanced Services is available in this regard, to assist. However, I suspect that this is not the level that you are requesting.
    Thanks.
    -Bruce

  • Test Note (Documentation Type) when creating Test Plan

    Hi Gurus.
    After we upgraded our SolMan 7.0 system from Support Pack (ST component ) level 19 to level 25,  I noticed this new field "Test Note" (Dcoumentation Type) when creating a Test Plan in transaction STWB_2.
    Initially, when I haven't chosen any project yet, this field has a list-of-values (i.e. Test Case Note, iTutor Document) but when I choose a project, the list-of-values only showing "ST". I also tried choosing another project and there is no value in the list.
    Does anyone know where this list is coming from or how I can configure this?
    It looks like project-related and but I couldn't find any settings for this.
    Can this field be turned off so it will not show in the screen?
    Thanks,
    Tess

    Hi Tess,
    The documentation type ST is the standard documentation type for test notes.
    Test notes are needed by testers to document results in detail during/after testing a test case.
    In SOLAR_PROJECT_ADMIN  there is the text menu 'GOTO - Project Template - Implementation Projects'
    and then there to the tap 'Documentation Types' to do the default settings for 'ST' for all implementation projects.
    Otherwise you'll have to change settings in the administration for each project!
    There you can assign your own documentation template for ST in the central settings.
    If you are using other project types for testing you'll have to do the same for each project type.
    Regards,
    Adelbert

  • Create test env from production system

    Hi,
    Please sorry,
    I am new in this area of Oracle Applications 11.5.10 and I need help in couple of questions.
    We have production system with Oracle Applications 11.5.10, APPS tier on 32bit Red Hat Linux EE 4 server, and 10.2.0.3 DB tier on 64bit Red Hat Linux EE 4 server.
    We get the 2 new servers for test Oracle Applications 11.5.10 environment with same versions of OS like production.
    First test 32bit for APPS,
    Second test 64bit for DB tier.
    Now we need to create test environment, same like production.
    Questions>
    1) What is the best way to create same env in this situation (32bit app tier, 64bit database tier). I suppose that cloning using rapid clone procedure isn't possible on this clear machines.
    2) If I need to install Oracle Applications 11.5.10 software first on both machines, is it possible to use 32bit rapidwiz installer (existing in stage) to create test db tier on this 64bit node, or not.
    I have read in the document Oracle Applications 11.5.10 - Installation Update Notes for Linux x86
    You can only install Oracle Applications on an x86-64 architecture server if the operating system is 32-bit Linux or Windows. If your operating system is 64-bit, contact your operating system vendor to obtain a 32-bit operating system before installing Oracle Applications.
    3) How to now from which stage production is created. When I try to create the stage for my test environment using perl command perl /mnt/cdrom/Disk1/rapidwiz/adautostg.pl
    I get these options:
    1 - to choose Oracle Applications
    2 - to choose Oracle Applications with NLS
    3 - to choose Oracle Database technology stack (RDBMS)
    4 - to choose Oracle Applications database (Databases)
    5 - to choose Oracle Applications technology stack (Tools)
    6 - to choose APPL_TOP
    7 - to choose National Language Support (NLS) Languages
    Because I haven't seen directory oraNLS is this 1 good choose for stage.
    Thanks, and sorry because I am new in this area.
    Regards
    Edited by: user12009428 on Sep 30, 2010 12:12 PM

    Hi,
    1) What is the best way to create same env in this situation (32bit app tier, 64bit database tier). I suppose that cloning using rapid clone procedure isn't possible on this clear machines. Use Rapid Clone.
    Rapid Clone Documentation Resources, Release 11i and 12 [ID 799735.1]
    FAQ: Cloning Oracle Applications Release 11i [ID 216664.1]
    2) If I need to install Oracle Applications 11.5.10 software first on both machines, is it possible to use 32bit rapidwiz installer (existing in stage) to create test db tier on this 64bit node, or not.Type "linux32 bash" -- See this thread for details.
    How to install 11i on Red Hat Linux 64 bit
    Re: How to install 11i on Red Hat Linux 64 bit
    You can only install Oracle Applications on an x86-64 architecture server if the operating system is 32-bit Linux or Windows. If your operating system is 64-bit, contact your operating system vendor to obtain a 32-bit operating system before installing Oracle Applications. What is the database version?
    To migrate the database from 32-bit to 64-bit you need to follow the steps in these docs (depends on your version).
    Using Oracle Applications with a Split Configuration Database Tier on Oracle 9i Release 2 [ID 304489.1]
    Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2 [ID 369693.1]
    Using Oracle EBS with a Split Configuration Database Tier on 11gR2 [ID 946413.1]
    3) How to now from which stage production is created. When I try to create the stage for my test environment using perl command perl /mnt/cdrom/Disk1/rapidwiz/adautostg.pl
    I get these options:
    1 - to choose Oracle Applications
    2 - to choose Oracle Applications with NLS
    3 - to choose Oracle Database technology stack (RDBMS)
    4 - to choose Oracle Applications database (Databases)
    5 - to choose Oracle Applications technology stack (Tools)
    6 - to choose APPL_TOP
    7 - to choose National Language Support (NLS) Languages
    Because I haven't seen directory oraNLS is this 1 good choose for stage.oraNLS is only required when you want to install additional languages in addition the base English one. If you have no installed languages you can skip this one.
    Please run md5sum as per (MD5 Checksums for 11i10.2 Rapid Install Media [ID 316843.1]) to verify the integrity of the stage area directory before you run Rapid Install.
    Thanks,
    Hussein

  • How to create a DVD from several FCP projects?

    I'm strugeling to create a DVD. I feel like a fool because it used to go so easy with my old computer but with my new Mac it doesn't seem to work.....
    What I'm doing:
    - Footage MTS 1920x1080, 24Mbps .MOD files
    - I upload them from my camera into FCP
    - I make projects (let say 20 different ones)
    - I want to put all the projects on 1 DVD as seperate 'chapters/ icons'
    - With FCP I can only put one project at the time on a DVD, so that doesn't work
    - I bought DVD creater to put the exports of FCP on a DVD, problem I can not create a export out of FCP that will be recognised by dvd creater.
    I know that I will be able to convert my FCP export into something else by some programme. But this is a work around, I don't really want to do such a extra step because the quality will be lower.
    Ik hope someone has a solution for me!
    Kim

    Hello T,
    I have just exported the slideshow from iPhoto to the iPhoto Slideshow Folder, opening iDVD.
    I selected create a new project as EJ3 in MoMs folder hit CREATE and iDVD quit, disappears,
    THE iDVD icon is still active on the doc but how ever it is simply GONE,
    this is the second time i tried this. I will restart the computer and come back and try it again.
    OK. I restarted the Mac, opened iDVD, selected MAGIC iDVD and in the movie section EJ3 was no where to be found.
    I will now close iDVD and try create a new project, saved MY GREAT DVD to the desktop.
    Cannot find EJ3 or the other exported iPHOTO slide shows under Elizabeth.....
    they are here
    but I can't select, or import, or open in iDVD.
    I am totally lost and thinking that this can't be done for some unknown reason.
    I am thinking if iMOVIE is the way to go OR if I should delete iDVD and reinstall it from the iLIFE disk.
    I am sorry for all this failure.
    at a loss right now.

  • How to create a pdf from a psd project

    I have a project that I create in Photoshop cs6. I have lots and lots of layers. There are about 21 pages.
    I went to Save As Photoshop PDF. When I did this though, it created just 1 page of my 21. What am I missing? Why is it not gabbing all the pages?
    Phillip

    Will In design do that?
    No. InDesign is a Desktop Publishing Tool, not Photo Manipulation.
    Or would it be necessary to manipulate the photos in Photoshop and then move them into In Design to build the actual pages?
    That would be the ideal workflow. I do this and so do most people who work with InDesign.
    Will files and work move well from photoshop to In design? In other words will they work together seamlinglessly?
    Definitely yes. Both ID and PS are from Adobe and they're built to co-exist with each other seamlessly.
    Why dont you try downloading a 30-day trial of InDesign CS6 from here - http://www.adobe.com/cfusion/tdrc/index.cfm?product=indesign&loc=en_us
    It is very simple to use and easy to understand if you already use Photoshop.
    But, one advice - buy InDesign if you're going to do a lot of work on it. If you're going to sparingly use it to achieve something like your original question, I don't see a need for you invest - unless of course you don't mind doing so!
    Overall, InDesign is a great tool and I use it in my everyday workflow.

  • Create test sequence from lab view - add it to the .seq file

    Hello All,
                   I have a query. consider an test sequence that has already stored in "Test.seq" format. let us say we have 5 test steps.
    now is it possible to add a new test step to this existing test sequence using Lab VIEW. I mean if we enter a new test step this has to reflect in the existing test sequence "Test.seq".  i.e in the "Test.seq" we must have 6 test steps.
      If this is possible let me know how this can be done. 

    Michels,
    Guenter mande a very good point.  Make sure to take a look at the forum thread he linked to see the licensing implications of creating your own Sequences.
    There is a very good forum thread that discusses how to create steps programmatically.  You can find the forum here:
    http://forums.ni.com/ni/board/message?board.id=330&message.id=7785&requireLogin=False
    Regards,
    Santiago D

  • Creating mdf file from a database project in Visual Studio for Web

    I am very new to database programming in Visual Studio and SQL Server Express LocalDB. I went through a walk through of setting up a database project (using visual studio express 2013 for web and SQL Server Express LocalDB), adding tables and entering data
    and everything worked fine:
    http://msdn.microsoft.com/en-us/library/ms233763.aspx
    Then I wanted to move on to trying to build a simple application to access this database so I looked into the following tutorial:
    http://msdn.microsoft.com/en-us/library/ms171890.aspx
    In a nutshell the tutorial says to add a new datasource and navigate to the database file, and it is looking for an .mdf file. 
    The database project that I created does not have an mdf file in it, only sql file, visual studio project, dbmdl file, options file, source browser database, etc.
    How do I create this .mdf file, that step didn't seem to be explained in the first tutorial. I tried running the project, but didn't see any build options for creating the .mdf file. Again, sorry for the absolute beginner question. 

    Thanks edencorbin
    I am glad to hear that it was helpful and you succeed :-)
    With that said, It is time to close the thread :-)
    please mark responses that were part of the answer as the answer in order to close the thread. once at least one of the responses in a thread is marked as answer, the thread Icon changed into V and the thread look like it is close(you can continue working
    on a thread after this point, but usually new supporters will not check this thread).
    Have a good day :-)
    [Personal Site] [Blog] [Facebook]

  • Test plan on Visual Studio Online not showing

    If i go to the test hub area i get a 
    "If you are a Basic user and no test plans have been created yet, you will see this page because there are no tests for you to run." 
    And i cant add any test. I've try to add on the backlog but they are no showing on the test hub. 
    I've backlogs and tasks, so what i'm i missing?
    Thanks
    R

    Hi ElasticoPT,
    I'd like to know what you have added on the backlog page. If you want to run test cases on team web access via Test hub, then you have to own test plans which include test suites and test cases.
    From the prompted message, you don't have tests to run. You have to create test plans, then test suites under test palns, and the test cases for each test suite in Test hub.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Test Plan creation in Solutoin manager Production

    Hi
    We have the Solution and Blue print updated in the Solman production System.  The test system is quite old and does not have the update Solutoin or the Blue print .  As we have updated Testcases & processes in production system, we would like to create a test plan (using test organizer) directly in the production system.  But the system is not allowing creation of test plan in Productoin and system is expecting us to create in test and transport to Produciton.  As we do not have the updated process/solution in the test, the creation of test plan in Test has no meaning and cannot be used.  What is the way out to resolve our problem.  Also guide us the procedure to create test plans directly in Produciton system and highlight us if there is signifcant impact.
    Regards
    Srini

    Hi Srini
    You are asking why it is not possible to do directly in solman production
    the answer is same if you ask for ECC PRD or BI PRD why we have 3 tier landscape simply because PRD is not a test system or training system all the configuration development happen in ECC/BI dev then we move the request to QA for testing
    Samething if you create a Test Plan in Solution Manager PRD where you expect to do the testing for your configuration.
    Moreover where are you planning to train your Actual Tester's who will use your Test Plan.
    Last you have to open the client for changes to happen in PRD do you think is it correct it ?
    Hope I have explained or clarified your doubt
    Regards
    Prakhar

  • Test Plan Progress report parameter

    I'm trying to use the Test Plan Progress report but the Test Plan field is always empty therefore I cannot render the report.
    The TFS is 2013 update 4 and I tried also with the report downloaded from MSF for Agile Software Development 2013.4 template. The cube is processed with no errors.
    Any ideas?

    Looking further I noticed that the MDX query that is populating the report parameter is not returning any data.
    Could this be a breaking change for the report from the last TFS update?
    Below is the query generated by the report:
    WITH
    MEMBER [Measures].[ParameterCaption] AS
    IIF([Test Plan].[Test Plan Name].CURRENTMEMBER IS [Test Plan].[Test Plan Name].[All],
    "All (No Filter)",
    [Test Plan].[Test Plan Name].CurrentMember.Member_Caption
    MEMBER [Measures].[ParameterValue] AS
    [Test Plan].[Test Plan ID].CurrentMember.UniqueName
    SELECT
    [Measures].[Point Count Trend],
    [Measures].[ParameterValue],
    [Measures].[ParameterCaption]
    } ON COLUMNS,
    ([Test Plan].[Test Plan ID].[All], [Test Plan].[Test Plan Name].[All]) +
    Extract(
    [Test Plan].[Test Plan ID].[All],
    [Test Plan].[Test Plan Name].[All],
    [Team Project].[Project Node GUID].[All],
    [Test Case].[Area Hierarchy].[All],
    [Test Plan].[Iteration Hierarchy].[All]
    ) +
    Filter(
    CrossJoin(
    [Test Plan].[Test Plan ID].[Test Plan ID],
    [Test Plan].[Test Plan Name].[Test Plan Name],
    StrToMember("[Team Project].[Project Node GUID].&[{4dad3f77-6199-41eb-af5a-a95f93b6af18}]"),
    StrToSet("[Test Case].[Area Hierarchy].[All]"),
    StrToSet("[Test Plan].[Iteration Hierarchy].[All]")
    [Measures].[Point Count Trend]
    [Test Plan].[Test Plan ID], [Test Plan].[Test Plan Name]
    } ON ROWS
    FROM [Team System]

Maybe you are looking for