Report available for test cases (manual test script files uploaded)?

We upload our test script files to the "Test Case" tab, assign it a status.  We are hoping to have a report that would report all test case files and their STATUSES.
In solar_eval, there is a standard SAP report for test case provided.  However, the field "Status" for the test case file is not included in this report.
Is there any report available that would give us this status?  If not, in which table does this data come from?  Is there anyway to build a simple SQVI query to extract the list of test cases and their statuses?
Any help is highly appreciated!

Hi Jo,
It's not entirely clear on whether you are look for 'Status' values of the Test Case document itself OR for 'Status' values of the Test(s) conducted on such Test Case documents.
I believe the following two SOLAR_EVAL reports should resolve either ways:
(a) SOLAR_EVAL -> Project -> Configuration -> Assignments -> Documentation (Programme called is SAPLSPROJECT_SOLAR_DOC_EVAL_IM) , Tick only 'Test Cases' and switch off other tabs
(b) SOLAR_EVAL -> Project -> Test -> Test Plan Status Analysis
Best regards,
Srini

Similar Messages

  • 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

  • Can anybody explain me difference between test cases and test data

    Hi All,
    Can anybody explain me difference between test cases and test data.
    Testing procedure for FS.
    Thanks & Regards,
    Smitha

    Hi,
    Test case is a procedure how to do the testing of particular functionality and it consists the data that to be given for testing a particular requirement of the given Functional Spec and it also consists the result whether the desired functionality is fullfilling or not.
    Regards
    Pratap

  • Reports available for Project

    What are the seeded reports available for Reporting.Consolidation Purpose in Projects.
    I need following details --
    1. Report for Monthly expenses for the Projects
    2. Report for Project status like whether they are closed , Approved etc and the cost associated with these Projects along with Supplier Invoice info ,Associated Purchase Order etc .
    3. Reports related to reconciliation
    Any report which match some of the requirement will also serve my purpose .
    Please help

    Hi,
    Below are some of the reports that may help in your requirement.
    1. Report for Monthly expenses for the Projects:
    You can look at the reports MGT: Expenditures Summary and MGT: Expenditures Detail
    2. Report for Project status like whether they are closed , Approved etc and the cost associated with these Projects along with Supplier Invoice info ,Associated Purchase Order etc .
    For the Supplier invoice info and PO : use the same MGT: Expenditures Detail report with the Expenditure Class as Supplier invoice
    For Project Status: AUD: Project Configuration
    3. Reports related to reconciliation
    AUD: Cost Audit Report
    AUD: Project Subledger Summary
    AUD: Project Subledger: Detail by Expenditure Type
    AUD: Project Subledger: Detail by Project
    AUD: Revenue Audit Report
    AUD: Supplier Invoice Audit Report
    Hope this helps!
    Thanks,
    Sathish Raju
    www.projectsaccounting.com

  • Various consistency checking reports available for New GL?

    Hello dear colleagues,
    May I ask you for your expertise, please.
    Situation:
    We have a lot of report for checking data consistency.
    FI - MM with RM07MMFI
    FI - FA with RAABST02
    Quesition:
    Do you know if we have these reports available for sitution in New GL?
    In detail, I mean that you can compare per Prctr or Segment in addtion to GL account.
    Thank you for your valueable answer and discussion.
    all the best Erwin

    Hello,
    Thank you for your answer.
    Yes, I am fimilar with FAGLF03 >>> it was SAPF190 in classic GL
    and FAGLCORC  for reconciliation of FI - CO. (before starting - consider SAP note for cost element update in GL).
    I am looking for checking cosistency in MM and FA where prctr and segment is available.
    A sum per prctr within gl account.
    I would be comfortabel to have these reports, otherwise I have handle it with SAP Query.
    SAP standard report would be the best choice.
    all the best Erwin

  • How to run test cases in a jar file using junit?

    Hi,
    I want to run test cases in a jar file using junit and the jar file is not in the class path. I wrote the following code, but it does not work.
    import java.net.URL;
    import java.net.URLClassLoader;
    import junit.framework.TestResult;
    import junit.textui.TestRunner;
    public class MyTestRunner {
         public static void main(String[] args) throws Exception{
              URL url = new URL("file:///d:/case.jar");
              URLClassLoader loader = new URLClassLoader(new URL[]{url});
              loader.loadClass("TestCase1");
              TestRunner runner = new TestRunner();
              TestResult result = runner.start(new String[]{"TestCase1"});
              System.out.println(result.toString());
    }Any ideas?
    Thanks a lot.

    Wouldn't it just be easier to put it on the classpath? You're trying to, anyway, with a URLClassLoader, albeit in an entirely unnecessarily complicated way

  • Is standard report available for bank book

    hi,
    is standard report available for bank book.
    is so plz provide report name or tcode.
    pleasei ts urgent.
    regards,
    Hari priya

    No, They is no standard report for bank book.
    if you to see what the banks that are being operated by the orgranisation use t.code FI12.
    If you want to see the balances in you bank account.You have to configure the sub-module Banks.
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    MSReddy

  • OTM  filter/query for the test cases with Test Steps seciton = Empty?

    Hi Folks,
    How to query/ fliter for all those test cases which does not have any test steps. They Test Step Section is empty. How to acheive this in OTM?

    this happens particularly when multiple people work on the same test case to update it from multiple machines.
    Edited by: OATS Explorer on Feb 22, 2012 4:10 AM

  • How to assign test cases to test catlog

    how to assign test cases(stwb_tc) to test catlog(stwb_2)?

    Hi
         goto to transaction stwb_1 enter the text and you will a get a screen now
    goto to Menu
    EDIT->Nodes->insert->As subnode
    on the selecting you will get the option to add a test case (stwb_tc) or  a test caltalogue.
    Please reward if useful..

  • How to assign test cases to test package?

    how to assign test cases(stwb_tc) to test package(stwb_2)?

    Hi
         goto to transaction stwb_1 enter the text and you will a get a screen now
    goto to Menu
    EDIT->Nodes->insert->As subnode
    on the selecting you will get the option to add a test case (stwb_tc) or  a test caltalogue.
    Please reward if useful..

  • How to assign test cases to test package and test catlog?

    how to assign test cases(stwb_tc) to test package(stwb_2) and test catlog(stwb_1)?

    Hi
         goto to transaction stwb_1 enter the text and you will a get a screen now
    goto to Menu
    EDIT->Nodes->insert->As subnode
    on the selecting you will get the option to add a test case (stwb_tc) or  a test caltalogue.
    Please reward if useful..

  • Msg states: "your Mac os x startup disk has no more space available for application memory...Removing files from startup disk may help." yet, I have 299.11GB of 319.73GB available. Why is msg received?

    The full message reads as, "
    Force Quit Applications
    Your Mac OS X startup disk has no more space available for application memory. 
    To avoid problems with your computer, quit any applications you are not using.  Closing windows and removing files from your startup disk will also help."
    Currently I have:
    Capacity: 319.73GB ; Available: 299.11GB ; Used: 20.62GB
    Why am I receiving this message and being forced to force quit items?  Both times the message has been received, Safari was open (frozen) while checking yahoo! mail.
    I received my MacBook Pro as a gift less than a month ago and I have only saved 20 pictures within iPhoto and installed Skype and Vuze...no other modifications from default have been made.
    Any idea?

    The full message reads as, "
    Force Quit Applications
    Your Mac OS X startup disk has no more space available for application memory. 
    To avoid problems with your computer, quit any applications you are not using.  Closing windows and removing files from your startup disk will also help."
    Currently I have:
    Capacity: 319.73GB ; Available: 299.11GB ; Used: 20.62GB
    Why am I receiving this message and being forced to force quit items?  Both times the message has been received, Safari was open (frozen) while checking yahoo! mail.
    I received my MacBook Pro as a gift less than a month ago and I have only saved 20 pictures within iPhoto and installed Skype and Vuze...no other modifications from default have been made.
    Any idea?

  • Reports available for disconnected licenses

    I am using NI VLM 3.1.  All my licenses are disconnected.  Even my 'server' is not on a network.  Is is possible to generate a report that shows me all the licenses residing on each computer?

    hello faustina,
    the disconnected licenses were created through the NI Volume License Manager. In order to create the licenses, a specific user/computer name had to be specified, and the record should be available in NI VLM. even though, NI VLM is not connected to the network, it was still used to generate the license files and maintains records of who the files were generated for in the users or computers tab. the link below is a great getting started guide for using NI VLM. 
    http://digital.ni.com/public.nsf/allkb/C091422B3A32A2C486256FEF007134F9
    Haley N
    Applications Engineer
    National Instruments

  • "Preview not available" for raw Canon 5d Mark III files

    Please help.  I can't seem to get my mac to import my raw files from the first wedding I shot last weekend with my Mark III. All my jpgs are fine, just can't seem to import the raw. I've downloaded the 4.1 update and still the same issue.

    Canon 5d Mark III is not supported as of now by Adobe Camera Raw
    Check this for suppoted list of cameras : http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html
    --Baljeet

  • How to select test cases efficiently for a test package?

    Dear experts,
    I would like to ask you if you have found a way administer how to assign test cases to test packages and test packages to testers. For regression tests this assignment remains relatively stable (often the key users).
    Do you know a way to administer this within the solution manager - or do you recommend the old excel table.

    Hello Ragu!
    Thank you for your answer! My question was regarding the organisational side, I didn't get this clear.
    I know how to generate a test package and how to assign a tester to a test package but where do I get the information which test packages I need and which tester to assign to which package.
    Maybe a good option is to assign the tester as a team member on the process step level. Thus the assignments can be listed with SOLAR_EVAL using "Assignments / Test Cases" with option "Display Team Members". This list would help to generate the test packages. The selection of the test cases for the test package has do be done manually because there seems to be no filter for team members.
    Regards,
    Martin

Maybe you are looking for

  • Re:. Flash applications freeze periodically with sound but no video on all browsers.

    I've been having problems with flash applications on browsers for the past year or two. What happens is that when a flash video starts, my browser will lag periodically. The sound will be present, but the video will freeze, and I will not be able to

  • Missing DTPs, transformations of FI-CA & IS-U CCS into BI Standard Content

    BI Experts, I'm a basis guy trying to do some research for our BI team.  We are starting an IS-U CCS implementation (on top of existing/running SAP system) and have ECC6.0 EHP3 with IS-U activated in back-end.  The BW system is connected to this ECC

  • Creative MuVo TX FM prob

    i have a problem with my creative muvo tx fm.i have full battery and i turn off my mp3 player.then i dont use it for 2-3 months.the next time i turn it on my battery is all out even though i didnt use it!im sure it doesnt turn on by accident or anyth

  • Rendering Lo-Res files for inspection by stock agency questions.

    *Using FCE 4.* My stock photo agency is requesting videos now. I'm using a Canon 5D Mark II. What I want to do is to render low-resolution clips for the agency inspection. They will choose from the LR clips and I will then supply HR files for submiss

  • Identify Photos with Faces in List view

    I have duplicate photos in aperture, I'm trying to clean them up in the LIST view  Sometimes my duplicate photo has a Face or place where the other does not.  How can I quickly see if the photo has a Face assigned to it so I know which file to keep?