How can we report off of Test Run Custom Fields in e-Manager?

I'm trying to create reports within Crystal Reports or via SQL Reporting Services to report on test runs and I want to include data from the test run custom fields I've created. I can not find a correlation to link the test runs and the test run custom fields in the DB. Is this even possible?
I can see the related custom field data in e-Manager for each run history. I was thinking there should be some sort of table in the DB to link the data but I can not find it.
Please help
Thanks

You cannot get this from the interface. We added SqlServer Management Studio Express and granted read only access to project managers. They found the view dbo.View_Tests useful in that it connected custom fields to the test cases. There are similar views for requirements and test runs.
Studio Express is found: http://www.microsoft.com/downloads/details.aspx?familyid=C243A5AE-4BD1-4E3D-94B8-5A0F62BF7796&displaylang=en#QuickInfoContainer
You'll need to get access from your DBA and set up an ODBC connection.
Here's a sample query that we've used -- probably doesn't fit your situation but it might get you thinking. Part of it was stolen from another posting to QA zone -- so I figured -- might as well share the wealth:
-- Overall input parameters:
declare @project as integer;
set @project = '20'
declare @iteration as varchar(500);
set @iteration = 'Iteration 1';
declare @team as varchar(500);
set @team = 'SFS';
-- Data on a particular iteration
declare @iteration_tests_run as decimal(10,2);
set @iteration_tests_run = ( select count(*)
                         from dbo.View_Tests A
                         where A.ProjectID = @project
                         and A.Iteration = @iteration
                         and A.Team_test <> 'NULL'
                         and A.LastResult <> 'Not Run');
declare @iteration_tests_passed as decimal(10,2);
set @iteration_tests_passed=( select count(*)
                         from dbo.View_Tests A
                         where A.ProjectID = @project
                         and A.Iteration = @iteration
                         and A.Team_test <> 'NULL'
                         and A.LastResult = 'Passed');
declare @iteration_any_results as decimal(10,2);
set @iteration_any_results=( select count(*)
          from dbo.View_Tests A
          where A.ProjectID = @project
          and A.Team_test <> 'NULL');
-- Data on a particular team's tests for a particular iteration
declare @team_tests_run_by_iteration as decimal(10,2);
set @team_tests_run_by_iteration = (
select count(*)
                         from dbo.View_Tests A
                         where A.ProjectID = @project
                         and A.Team_test = @team
                         and A.Iteration = @iteration
                         and A.LastResult <> 'Not Run');
declare @team_tests_passed_by_iteration as decimal(10,2);
set @team_tests_passed_by_iteration = (
                         select count(*)
                         from dbo.View_Tests A
                         where A.ProjectID = @project
                         and A.Iteration = @iteration
                         and A.Team_test = @team
                         and A.LastResult = 'Passed');
declare @team_tests_any_results_by_iteration as decimal(10,2);
set @team_tests_any_results_by_iteration = (
select count(*)
                         from dbo.View_Tests A
                         where A.ProjectID = @project
and A.iteration = @iteration
                         and A.Team_test = @team );
-- Progress in completion and success of tests in a particular iteration
select (@iteration_tests_run / @iteration_any_results ) * 100 as Iteration_1_percent_complete;
select (@iteration_tests_passed / @iteration_tests_run ) * 100 as Iteration_1_percent_success;
-- Progress in completion and success of tests for a particular test team in a particular iteration
select (@team_tests_run_by_iteration / @team_tests_any_results_by_iteration ) * 100 as SFS_percent_complete_Iteration_1;
select (@team_tests_passed_by_iteration / @team_tests_run_by_iteration ) * 100 as SFS_percent_success_Iteration_1;

Similar Messages

  • How can I default Product name in a custom field in SR

    While creating a Service Request, I am trying to save the Product name in a custom field using defaulting options. For some reason it is not working, when i tried product id, it works!! I am trying to pass [<Product>] to that custom field. Any suggestions how I get the product name?

    Arvindh, this is indeed a join field problem. Product is joined to SR through Product Id. Unless the product id exists, the SR has no knowledge of any other fields of that product record. We are aware of this issue and we are investigating a solution.

  • How can I turn off other languages on my ipad running ios7?  It has Japanese or Chinese and the international keyboard is set to English.  Thank you.

    How can I turn off other languages on my ipad the next generation running ios7?  I have the international language set to English but it's showing a foreign language and sometimes it shows the foreign language with English.  Thank you.

    The complete backup and restore procedure is explained in the link above.
    If you don't want to do a restore, then your iPad may remain in the unstable state you have for the moment.
    You can change the country in the App Store. Have a look at the bottom of the App Store screen, you can change the country and also do the permanent change via Manage > Account.
    You can change the language in iTunes via General Preferences > under General tab.

  • How can I turn off the 2 blue lines running vertically in my image in Photoshop?

    How can I turn off the 2 blue lines running vertically through my image in Photoshop? I want to save my work but do not know if these lines will persist in the saved image.

    normfb wrote:
    I assume the Rulers are showing. In that case, to get rid of each line use the Move tool to straddle the line and drag it whence it came. I really didn't need to add this comment but it is the first time in years I have had a chance to use the word "whence".
    Is this a guide I see before me? Doeth it conspire to confuseth mine eyes with sapphire lines that afoul my worthy parchment, and draw my quill from its righteous path? Be gone foul guide from whence thou cometh.  Verily, forsooth, and hey nonny nonny.

  • How can I turn off base64 email encoding in iPlanet Process Manager?

    Email sent out from a workflow running in the Process
    Manager seems to be base64 encoded. How can I turn
    off the encoding?

    No worries. Typically you can rename a machine by just changing the name System Preferences -> Sharing. But there is also a command line option to adjust the name, and if you don't use the command line option, the server freaks out and will alert you about the change forever. ie - for servers, you need to use the command I describe below.
    The command is called changeip and can be run from command line in Terminal.app. It is for manually chaning the ip address and or name of a machine. It basically has 4 parameters: old ip address, new ip address, old machine name, new machine name.
    Basically the command looks like this:
    sudo changeip OLDIPADDRESS NEWIPADDRESS OLDNAME NEWNAME
    If any value is being kept the same, just repeat the identical information as both the old and new value.
    Example 1: Changing the IP address and host name. This would update the machine's ip address to be 192.168.1.2 and its name would be update to my_new_name.
    sudo changeip 192.168.1.1 192.168.1.2 my_old_name my_new_name
    Example 2: Keeping the IP address the same but updating the name. This would update the machine's name to my_new_name but would keep the same ip address.
    sudo changeip 192.168.1.1 192.168.1.1 my_old_name my_new_name
    Most likely you're just wanting to update the name, in which case you should follow the second example. If you run this, be sure to reboot the machine afterwards and test to make sure that any enabled services are running properly.

  • How can I shut off all of the pop-up windows for all the Firefox updates?

    How can I shut off all of the pop-up windows for all the Firefox and Thunderbird updates?
    Apparently now Mozilla creates new versions of their browser and email apps every two weeks instead of just creating updates... I'm tired of all of the pop-up requests for these constant installation requests and all the problems that the new version installations create... I just want to use the software and be left alone.
    I can't find a way to make Firefox and Thunderbird stop with the pop-up requests for new installations... is there a way to do this or has Mozilla just got it rigged so one can't just use the software without re-installing a new version every two weeks and running in to new plugin issues and missing features every time?
    Help!
    Thanks,
    numetro

    Is it possible that her computer is infected with malware.
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How can I report people that are harassing me on my question?

    I posted a question on how to fix a problem that I had with my iPhone. When a person posted me talked about dealing with an employer to solve the problem. No it don't matter how I read it I asked why did they assume that without asking me if I even had a job that the phone was used for. After that the harassment started as if they were defending their friend and I was cruel to them. I did get an answer to my problem but the harassment keep going on and on and on even one wrote that because of that one question I shouldn't be able to post anymore questions when I would need it.
    How can I report this to someone? Who else have these people harassed? Would these people be addressed that they shouldn't be behaving like this?

    Sorry, but the poster before Bee, and Bee herself did not write anything that could be construed as harassment. If those posts deeply hurt you (as well as the original post that set you off) then I would strongly suggest that the Internet is NOT a place you should spend any time as your feelings are going to constantly get hurt. In fact, I'd suggest avoiding all contact with other people as much as possible if KiltedTim hurt you with his post.
    As has been repeatedly explained, he merely asked because that is another avenue that could cause the Camera app to be removed, and he went on to explain how this happens. There is nothing personal in it, we don't care how you got your phone, where you work, what type of job you have, etc. He did care enough to join in and give another possibility as to why your camera icon was missing. If you do a search of these threads you will find that more than a few people have decided to put their work account on their personal iPhone and the profile installed on their iPhone by personnel at their workplace changes features on the iPhone.
    Again, if this, and the answers here, deeply hurt you, pull the cable from the Internet immediately.

  • Remove age from birthday notification: I don't know the years most of my contacts were born, so I keep getting a default year 2000 birthdate. How can I turn off the age (xxth birthday) in Birthday Calendar - it really is very annoying!

    I don't know the years most of my contacts were born, so I keep getting a default year 2000 birthdate.
    How can I turn off the age (xxth birthday) in Birthday Calendar - it really is very annoying!?
    Thanks
    Tim

    Where do you see the default birthday showing as Nov. 30? If you can explain that, I can probably modify the below script to do that clean up.
    In response to the original problem:
    I'm not sure why I missed the original reply, but here is an Applescript that will change all the years of any selected contacts to 1604 (default for no year).
    tell application "Contacts"
              set thePeople to selection
              repeat with aPerson in thePeople
                        set theDate to birth date of aPerson
                        if theDate is not missing value then
                                  set the year of theDate to 1604
                                  set birth date of aPerson to theDate
                        end if
              end repeat
    end tell
    copy and paste it into a new Applescript Editor document. Select all the contacts you want to change (in Contacts), then run this script by clicking on the green Run button in Applescript Editor.

  • TS1702 How can i report an app for their coding

    Hi, i just wonder how can i report space ape for making bad game? Their samurai siege constantly have bad coding, one instance where they advice their users to change the device clock to "work around their bugs" and do not advice other of potential harm this could do to the device, leaving quite a few losing their other game progress and work progress. On another instance is how to create a new village. One would assume that you can create the new village if you have new game center, but the server still remember the device if it was once log in. Like atm, i have 1 village on my iphone 5, and im thinking of making a new village on my ipad, but when i installed the game on my ipad, i forgot to log out of the gc, and it continually loading my iphone 5 village on my ipad. I have tried log out, delete, reinstall, etc. one should not have that much trouble trying to get a new village on a new device. Now i have two device logging each other off because of this issue, and still can't get it to give me new village.
    This is bad if i log on my friend's phone to check my village, and she can't create a new game because she is stuck with my village, and i can not play mine if she open the app. This is really stupid coding. Not only these two issuse, the company constantly producing new updates, and pay no attention whatsoever on quality assurance. And i'm fed up with it, as they are continually violating apple rules.
    <Edited by Host>

    Contact the developer.

  • E72 - How can i turn off the keyboard lock functio...

    How can I turn off the keyboard lock function?  If I don't want it to auto lock after 5 mins but stay active, can I turn the auto lock off completely?  I've checked Control Panel - Settings - General - Security - Phone and SIM Card and there appears to the the option, but when you try and select 'off' it doesn't allow you to turn it off.... Help?
    Solved!
    Go to Solution.

    "it is there my frend., go to Menu - Control Panel - Settings -  General - Security - Phone and Sim Card
    then scroll down and select keypad auto lock period"
    Got it from...
    /t5/Eseries-and-Communicators/E72-shortcut-key-key​pad-lock/m-p/572418 bout halfway down. I know I had a google need to find this answer.
    Samsung Galaxy S4 'Black' (current)
    My N9 Black (backup phone)
    My N8 Green runnin Xeon^4 3.2.1
    My E72 White
    My E63 BLUE
    http://www.youtube.com/Jeahavee
    http://www.reverbnation.com/jeahavee
    Stop with the popup notes Nokia sheesh I don't need help from you :/
    I run Windows 7 Home Premium 64bit/Black Opal on my HP Dv6 1030us (DiViUs)
    Windows 7 64 bit Pro and Black Opal on my custom desktop (Giniro)

  • How can I report to Apple that my ipad mini was stolen?, How can I report to Apple that my ipad mini was stolen?

    How can I report to Apple that my ipad mini was stolen? I just wanted to at least report it as stolen, just in case the theft will have the nerve to go to apple store and ask to open the  stole ipad mini.... Just to make sure that there's no way to use my ipad mini

    If the iPad was running iOS 7, the thief/finder will not ever be able to use it.
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    What to do if your iOS device is lost or stolen
    http://support.apple.com/kb/HT5668
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    iCloud: Lost Mode - Lock and Trace
    http://support.apple.com/kb/PH2700
    iCloud: Remotely Erase your device
    http://support.apple.com/kb/PH2701
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    What NOT to do if your iPhone or iPad is lost or stolen
    http://www.tomahaiku.com/what-not-to-do-if-your-iphone-or-ipad-lost-or-stolen/
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • How can I find out what is running in the background and running my batterie down

    How can I find out what is running in the background

    Hi simpbarby,
    Welcome to the Support Communities!
    The links below will help you understand what apps are running on your iPhone.  You can quit the ones that you aren't using.
    iOS: Understanding multitasking
    http://support.apple.com/kb/ht4211
    This link will provides tips to conserving battery life:
    Apple - Batteries - iPhone
    http://www.apple.com/batteries/iphone.html
    Optimize Your Settings
    Depending on how they are set, a few features may decrease your iPhone battery life. The tips below apply to an iPhone running iOS 7.0 or later.
    Enable Wi-Fi: Having Wi-Fi enabled helps consume less power when doing activities that access data. Go to Settings > Wi-Fi and log in to a Wi-Fi network.
    Adjust brightness: Dim the screen or turn on Auto-Brightness to extend battery life. Turning on Auto-Brightness allows the screen to adjust based on lighting conditions.
    Fetch new data less frequently: The more frequently email or other data is fetched, the quicker your battery may drain. To fetch data manually: Go to Settings > Mail, Contacts, Calendars > Fetch New Data and tap Manually.
    Turn off push notifications: Apps with Push Notification alert you of new data, which may impact battery life. To disable, go to Settings > Notifications, choose the app you want to disable, and do the following:
    Change Alert Style to None.
    Turn Badge App Icon off.
    Turn Sounds off.
    Note: New data will be received when you open the app.
    Minimize use of location services: Apps that actively use location services, such as Maps, may reduce battery life. You can see which applications have recently used location services by going to Settings > Privacy > Location Services.
    Use Airplane Mode in low- or no-coverage areas: Your iPhone always tries to maintain a connection with the cellular network, which may use more power in low- or no-coverage areas. Turn on Airplane Mode to increase battery life in these situations.
    Viewing Usage StatisticsKnowing and understanding your iPhone usage can help you better manage your battery life. To view your iPhone usage statistics, go to Settings > General > Usage. Under “Time since last full charge”:
    Usage: Amount of time iPhone has been awake and in use since the last full charge. iPhone is awake when you’re on a call, using email, listening to music, browsing the web, or sending and receiving text messages, or during certain background tasks such as auto-checking email.
    Standby: Amount of time iPhone has been powered on since its last full charge, including the time the phone has been asleep.
    I hope this information helps ....
    Have a great day!
    - Judy

  • How can I shut off spaces so I can have multiple windows on my desktop, how can I shut off spaces so I can have multiple windows on my desktop

    How can I shut off spaces so I can have multiple windows open on my desktop?

    Hi,
    Section #2 of the Printer Ststus report will tell you. Please try:
    Printer status report
    Use the printer status report to view current printer information and ink cartridge status. Also use the printer status report to help you troubleshoot problems with the printer.
    The printer status report also contains a log of recent events.
    If you need to call HP, it is often useful to print the printer status report before calling.
    To print the Printer Status Report
    1. From the printer control panel display, touch and slide your finger across the screen and then touch Setup.
    2. Touch Print Reports and then touch Printer Status Report.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How can i turn off all this adds I've been getting?

    how can i turn off all this adds I've been getting on safari/google.?

    Click here and follow the instructions, or if they don't cover the type of adware on the computer, these ones. If you're willing to use a tool to remove it(you don't need to, but may find it easier), you can instead run Adware Medic; this link is a direct download.
    (118001)

  • How can I turn off the Download pop up Window from displaying when downloading a file?

    How can I turn off the Download pop up Window from displaying when downloading a file?

    To not display the built-in Firefox downloads window, Tools > Options > General tab, un-check "Show the <u>D</u>ownloads window when downloading a file". See: http://support.mozilla.com/en-US/kb/Options+window+-+General+panel
    If you have some other download manager installed, you will need to see the documentation for the download manager.
    <br />
    You have installed plugins with known security issues that should be updated. To see the plugins submitted as part of your question post, click "More system details..." to the right of you original question.
    *Shockwave Flash 10.1 r53
    *Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave Flash'''
    #*Use Firefox to Download and SAVE to your hard drive from one of the links below; '''<u>the links take you directly to the download and you avoid the "getplus" download manager and "extras" (i.e., toolbars, virus scan links, etc.) on the main Adobe page.</u>'''
    #*SAVE to your Desktop so you can find it
    #*After download completes, close Firefox
    #*Click on the file you just downloaded and install
    #**Note: Vista and Win7 users may need to right-click the installer downloaded and choose "Run as Administrator"
    #**Note: Most browsers other than IE will also get updated with this one download
    #**Note: To update IE, same procedure '''<u>but use IE</u>''' to go: http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_ax.exe
    #*After installation, restart Firefox and check your version again.
    #*'''<u>Download links and other information</u>''':
    #** https://support.mozilla.com/en-US/kb/Managing+the+Flash+plugin#Updating_Flash
    #** '''<u>or</u>''' you can download, save, then run the manual installers for IE, then for Firefox (and all other browsers) from here: http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #* Also see: http://support.mozilla.com/en-US/kb/Installing+the+Flash+plugin
    #* Also see (if needed): http://kb2.adobe.com/cps/191/tn_19166.html#main_Uninstall
    #'''Update Java:'''
    #* Download and update instructions: https://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    #* After the installation, start Firefox and check your version again.

Maybe you are looking for

  • Display problems with this code

    <tr>     <td class="atthetop">Display from : </td>     <!-- get the date from the recordset -->     <td><?php $date=new DateTime($row_Recordset1['event_entered']);   echo $date->format('d-M-Y') ?>         </td>    </tr>   <tr>     <td class="atthetop

  • BI Content and modelling

    Hi! The BI Content has many objects - InfoCubes etc. - which are parts of some common enterprise physical model. Did anybody build conceptual model > logical model > and only then try to use BI Content? Or the way of implementation BW is other? Thank

  • I just paid for 12 months to be able to open pdf files and I still cannot.  How do I either get my money back or get this adobe reader to work to open pdf files?

    i just paid for 12 months to be able to read pdf files and it is not working. how do i get my money back or get this problem fixed.  i am so tired of trying to see pdf files.Adobe ExportPDF (read only)

  • IPhone 5 sprint

    I live in Spain and was looking at buying a sprint iPhone 5. Can it be unlocked and will i be able to put a european SIM card in it?

  • Urgent Help - Oracle Content DB Discovery Phase

    We use Lotus Notes (6.5) for email. Our Lotus Notes group is using Notes to capture, and save emails and attachments to a File Server and looking for a replacement system. Anyone successfully integrate the capture and save for emails and attachments