MTM Test Suite creation based on test suite in the same tree

Hello all,
I'm using MTM to manage validaion
I have Root test suite and several sub-test suite for different revisions
Hierarchy is following:
ReleaseTestSuite
Version 1
Version 2
Version N
After first validation cycle (Version 1) I have several passed\failed\active test cases and I would like to add in Version 2 test cycle ONLY failed and active test cases from Version 1
Is it possible using MTM? Or it needs external tool?
Thanks,
Victoria

Hi Victoria,
Thank you for posting in MSDN forum.
As far as I know that when we add test case from a test suite to another test suite, we can add test cases through query, we can use query to base on workitem's properties to retrieve workitems, however, the status of passed\failed\active is
the test point's status, which is not the workitem. So we could not base on that status to query workitems.
I suggest that you could add test cases base on test cases' IDs, we could add many test cases with this way. 
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.

Similar Messages

  • Generating 2 test reports for the same test - XML and HTML

    Hi All,
    I have a special test requirement.
    Need to generate 2 test reports for the same test. One in HTML and the other in XML format.
    Is there any direct method for that?
    How it can be implemented?
    Thanks in advance.
    SajK

    Hi SajK,
    To accomplish this task, you will need to modify the process model. For example, if you are using the sequential process model, you can concentrate on the TestReport sequence call and the various report related steps in the Single Pass and Test UUTs sequences.
    The TestReport sequence (also a callback) relies on Parameters.ReportOptions.Format to decide which of the following sequences to use when generating the report:
    <TestStand>\Components\NI\Models\TestStandModels\reportgen_txt.seq
    <TestStand>\Components\NI\Models\TestStandModels\reportgen_html.seq
    <TestStand>\Components\NI\Models\TestStandModels\reportgen_xml.seq
    In your case, instead of choosing one of the sequences, you could hard code it to use both the html and xml sequences. Be aware that for this to work, you must also modify and/or duplicate most of the report related steps in the Single Pass and Test UUTs sequences. For instance, the Set Report Format step becomes unnecessary since you are hard-coding the report format. On the other hand, the Write UUT Report step needs to be duplicated, one step to write to an html file location, and another to write to the xml file location.
    Please note that modifying the process mode in this way will deprecate some of the settings in the report options dialog box (such as the report format). For more information on TestStand report generation, please refer to the following DevZone article:
    Report Generation Explained
    Regards,
    Message Edited by James M on 05-29-2007 03:08 PM

  • Installed Oracle 8i Forms 6i & 9i Developer Suite in the same machine??

    I hav installed Oracle 8i Forms 6i & 9i Developer Suite in the same machine(on Win2k), with different Oracle homes.
    earlier it was working fine,but right now when i tried to open Form Builder(9i),it shows the error as
    Microsoft Visual C++ Runtime library
    Assertion Failed!
    Program:D:Oracle_Home\bin\ifbld90.exe
    File:ut\SRC\UTJ\SRC\UTJL.C
    Line 428
    Expression: result ==utjER_SUCCESS
    For information on how your program can cause assertion
    failure,see the VC++ documentation on asserts
    (Please try to debug the application - JIT must be enabled)
    and when i try to open Reports Builder(9i) it does not open ,it shows error as below and terminates
    rwbuilder.exe - Application Error
    The instruction at "0x6550b264" referenced memory at "0x00000000".The memory could not be "read:
    Please advise what to be done.
    Thanx in advance.

    I've got a 9i database, Jdeveloper (various versions), Oracle9i Forms and 6i Forms all installed on the same machine. Just make sure you get them in separate Oracle homes..
    Regards
    Grant Ronald
    Forms Product Management

  • 8i Forms 6i & 9i Developer Suite in the same machine?

    I hav installed Oracle 8i Forms 6i & 9i Developer Suite in the same machine, with different Oracle homes.
    earlier it was working fine,but right now when i tried to open Form Builder(9i),it shows the error as
    Microsoft Visual C++ Runtime library
    Assertion Failed!
    Program:D:Oracle_Home\bin\ifbld90.exe
    File:ut\SRC\UTJ\SRC\UTJL.C
    Line 428
    Expression: result ==utjER_SUCCESS
    For information on how your program can cause assertion
    failure,see the VC++ documentation on asserts
    (Please try to debug the application - JIT must be enabled)
    and when i try to open Reports Builder(9i) it does not open ,it shows error as below and terminates
    rwbuilder.exe - Application Error
    The instruction at "0x6550b264" referenced memory at "0x00000000".The memory could not be "read:
    Please advise what to be done.
    Thanx in advance.

    I've got a 9i database, Jdeveloper (various versions), Oracle9i Forms and 6i Forms all installed on the same machine. Just make sure you get them in separate Oracle homes..
    Regards
    Grant Ronald
    Forms Product Management

  • Is it ok to install Report developer suite on the same machine?

    Hello All,
    Recently I have upgraded my Oracle Forms 5.0 to Form 6i.
    Now I want same process with my reports.
    Our current reports version is 3.1.
    1) Is it possible to upgrdae report 3.1 to report 6i?
    2) I have installed my form 6i developer suite in window XP. Is it ok to install Report developer suite on the same machine?
    3) if answer of 2 is yes, Do I need to install in another home?
    Please note: My main goal is to upgrade reports in 10g.
    But I think we can not upgrdae report 3.1 to 10g directly. So I am going 3.1 to 6i and then go for 10g.
    Regards,
    D

    still waiting for response.
    Diana

  • Querying last element in a dimension based on another level in the same dimension using MDX

    Summary: I need to write an MDX that returns the last date available in the level in the date dimension based for each month in the same dimension.
    Details: i have the a dimension which has the following levels. 
    Dim_Date :  Date (key) , Month (name of month), Quarter, Year.
    The query i m trying to come up with would return the result something like
    Month  || Max_date || measure1
    Jan         2014-01-25    100
    Feb        2014-02-28     200
    Please let me know if the above makes sense. Basically i m trying to get the max date for each month. 
    Thanks
    Sri

    Hi SrikanthGS,
    Assuming that with the last date available for the measure you mean the last date with non-empty figures, consider the following against the AW:
    SELECT [Measures].[Internet Sales Amount] ON 0,
    Generate (
    [Date].[Calendar].[Month].Members,
    ( Exists ( [Date].[Month of Year].[Month of Year], [Date].[Calendar].CurrentMember ),
    Tail (
    NonEmpty (
    Descendants ( [Date].[Calendar].CurrentMember, [Date].[Calendar].[Date] ),
    [Measures].[Internet Sales Amount]
    1
    ) ON 1
    FROM [Adventure Works]
    WHERE [Product].[Product Categories].[Subcategory].&[1]
    Philip,

  • To do further segregation based on company codes of the same Satellite syst

    I configured the solution manager service desk with the satellite systems in such a way that it picks up the Business Partner (Sold to Party) from the IBase of the respective systems. This makes one Business Partner per one satellite System. So I am able to do the segregation of the service tickets based on sold to party. Users will post the tickets from the satellite systems only.
    But if I want to do further segregation based on company codes of the same sold to party (Satellite system) in the solution manager, what needs to be done. Pls suggest.
    Thanks and regards
    Basha

    I configured the solution manager service desk with the satellite systems in such a way that it picks up the Business Partner (Sold to Party) from the IBase of the respective systems. This makes one Business Partner per one satellite System. So I am able to do the segregation of the service tickets based on sold to party. Users will post the tickets from the satellite systems only.
    But if I want to do further segregation based on company codes of the same sold to party (Satellite system) in the solution manager, what needs to be done. Pls suggest.
    Thanks and regards
    Basha

  • How can I handle deploying multiple test systems on the same PC that have been developed using different versions of LabVIEW, TestStand, and/or Switch Executive?

    The major issue here is that the test systems must be documented and validated before being released to the production floor. Given this if a test station has multiple test systems deployed on it that have been developed on various versions of LV, TS, and Switch exec how can I force the test system selected to use the correct versions of TS, LV, and Switch exec.? I understand that the solution would be to recomplie everything and bring them up to the latest version but that would then require re-validation according to the QA department. Any advice would be greatly appreciated.
    It would be nice if theTS deployment was more like an LV executable... meaning when a LV executable is launched it always knows what LV runtime engine to use when there are multiple engines installed on a PC.

    Hi,
    Multiply versions of teststand can reside on the same system, but only one version can run at a time. They is a utility that has to be run to set the active version.
    The SequenceFiles have a version number, and you will find an error will be generate if you try to Load the sequencefile in the wrong version of TestStand.
    The labview VIs will only work providing the correct version of the RTE is also installed on your system, even a labview executabe requires the correct RTE to be installed, either as part of the executable installation or as a seperate installation, before the labview exe will work correctly.
    I'm not fimilar with the Switch exec but I would expect that it will also require the correct lower level device drivers to be available for the version you are using.
    Therefore, as you are indicating that some of your system are at  a older version, its difficult to image how you could achive this, considering if you say you have different versions of the software(s). For a start, you may have the problem that newer code/ sequencefiles using additional functionatily not available in the older versions.
    I would think your only solution would  be to have different deployments covering the different versions you have, or at least bring all your test systems up to the same version of teststand.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Upon upgrading to CC from CS6 suite, use the same serial number?

    Upon upgrading to this new Cloud, I was told I could continue to use my existing CS6 suite side by side with the new CC. But then I was told they use the same serial number, how is this possible?

    Please ask the question in the Creative Suites (http://forums.adobe.com/community/creativesuites ) or Creative Cloud (http://forums.adobe.com/community/creative_cloud) forums.

  • Creation of Database link and access the same plus Snapshot creation

    i want talk between two oracle server. i decided to go for snapshot creation with periodical refresh. For which i am having two oracle server's with different ip address located inside our office setup.
    I have created a database link between two servers.
    first server name global
    userid scott
    password tiger
    second server name asil
    userid scott
    password tiger
    both the user have been given dba rights.
    in both the server the services and listners are all started. i gave the following command to create database link.
    from asil server
    create public database link global connect by scott identified by tiger using 'global'
    the command was successful and the link was created. Now i tried to access a table of the scott user of the global server.
    select * from emp@global;
    now it is giving error. I want to know how the link can be created and how it can be accessed. i refered the 8i online documentation and done the things based on that. i expect valuble solution from all possible persons
    null

    A reason for this problem could be that your database is configured that a database link has to have exactly the same name like the global name of the database instance it should connect to.
    Can you please provide the oracle error code / message ? With this information there might be more hints I can give you.

  • Radio group in classic report based on another column on the same row.

    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    Application Express 4.1.0.00.32
    How can I have a radio group column based on an LOV utilizing another column on the same row of the report?
    For example: what if I had a survey application and depending on the likert scale that was assigned to the question there would be different possible answer choices:
    Question 1 on row 1 of the report: The class instructor was friendly?
    Likert scale choice is Agreement.
    Choices on Radio Group: Strongly Agree, Agree, Undecided, Strongly Disagree
    Question 2 on row 2 of the report: The class offered good materials?
    Likert scale choice is Quality.
    Choices on Radio Group: Excellent, Below Average, Average, Above Average, Excellent
    The radio group can change per row depending on the Likert scale assigned to the question which is assigned to a different column on the row.
    Can LOV utilize the column? :
    SELECT scale_text
    FROM scale_choices
    WHERE scale_category_choice_id = 2 <<= this would be the Likert scale identifier
    ORDER
    BY display_order

    Here is the answer:
    APEX_ITEM.SELECT_LIST_FROM_QUERY(
    p_idx IN NUMBER,
    p_value IN VARCHAR2 DEFAULT NULL,
    p_query IN VARCHAR2,
    p_attributes IN VARCHAR2 DEFAULT NULL,
    p_show_null IN VARCHAR2 DEFAULT 'YES',
    p_null_value IN VARCHAR2 DEFAULT '%NULL%',
    p_null_text IN VARCHAR2 DEFAULT '%',
    p_item_id IN VARCHAR2 DEFAULT NULL,
    p_item_label IN VARCHAR2 DEFAULT NULL,
    p_show_extra IN VARCHAR2 DEFAULT 'YES')
    RETURN VARCHAR2;

  • Prevent creation of additional common objects at the  same time ...

    Context: A Super User group may require to be allowed to create and/or change queries in Production
    Would be possible to prevent creation of additional common objects like rectricted and calculated key figures and variables at the same time allowing creation of queries in terms of dragging and dropping filters, free characteristics, rows and columns?
    I know that keeping the system closed to changes and using the transport connection Object Changeability it is possible to restrict change of query elements to those that are original in the system.
    Points will awarded.
    Thanks
    Mathew.

    In transport connection Object Changeability, you can only set query elements as modificables but you cant distint between diferent query elements (queries, calculated/restricted key figures, structures, etc).
    You can do that distiction in authorization object in rs_comp and rs_comp1.
    You should combine transport connection Object Changeability and authorization objects in roles

  • 8i Pers, Forms 6i, Report 6i & 9i Pers, Dev. Suite in the same machine?

    Hi everyone.
    I am using Oracle 8i Personal, Forms 6i and Reports 6i using my Pentium 4 with Windows 98 SE.
    I want to install Oracle 9i Personal and Developer Suite (Forms 9i, Jdeveloper and OC4J.) but I want to keep 8i and Forms 6i.
    Is this possible could I keep both, Oracle 8i and Oracle 9i?
    I would like install Windows 2000 Professional and install everything (8i, Forms & 9i & Developer Suite) in that machine.
    If it is possible, how I can do that?
    Thanks in advance for your answer!!

    I have the following homes:
    - ORA8i
    - Dev 6i: for Developer 6i and Designer 6i
    - RDBMS 9i SE
    - Dev 9i: for Developer 9i and Designer 9i
    plus a separate directory for JDev 9.0.3. This one needs no Oracle home thank God. :-)
    One more thing. Some applications will not be able to find the aliases if there are more than one Oracle homes and the aliases are not present in ALL tnsnames.ora files.
    To avoid this I set the TNS_ADMIN environmental variable for my tnsnames.ora file (aliases for the database).
    HTH

  • Is it possible to have both the CS6 and CC suites on the same computer

    I have just purchased a new computer. I will be needing to download the Adobe CC suite. I fear that having to adjust to so many new things at once will be too much of a a chalenge since I have many projects in the works at this time. I would really prefer to finish out current jobs in CS6 and start new jobs in CC. Will that be possible using my creative /cloud membership?

    Thank you for your reply but unfortunately it is not correct.
    It is definitely correct.
    CS6 versions are available to Cloud members and can be installed alongside CC versions.
    WHen I attempted to download and install the software to my new computer I found that only the CC versions were available for download.
    See http://helpx.adobe.com/creative-cloud/kb/download-previous-versions-creative-applications. html for the steps required to download CS6.

  • Populate a table field based on another field in the same table

    Hi,
        I have a table with fields collection profile and collection prfile text. When maintaining this table, the collection profile name should appear automatically ( from table UDM_COLL_GRPT) based on the collection profile entered.. In UDM_COLL_GRPT, collection profilr name is not a primary key. Please let me know how to do this.
    Thanks in advance,
    Jissa

    Guess you could make use of the event 05 from the TMG events to make the appropriate selections and populate the field.
    Vikranth

Maybe you are looking for

  • Can I stream a TV Show from an TV Channel App to my TV

    Hi there, we would like to see quicktime content via my iPhone on my TV. Is there an app or a way to manage this? I have several live tv apps on my iPhone, which I would like to stream to my tv (LCD flat screen). I also have an AV-Cable (Composite-Vi

  • The website for my bank (BofA) tells me 'Your Online ID and/or Location is Missing, Try Again - when I try to sign in.

    Hello, I updated Firefox (now the icon is Firefox logo and 45r on my desktop). About the same time, I updated some Add-Ons, as suggested on Firefox website. Now - when I try to log-in with bank website, I type in my user name - and I get the message

  • How to include a new root certificate in BlackBerry device

    Dear Sir/Madam, TWCA is a certification authority in Taiwan provides security system for internet banking, stock trading, e-commerce and SSL certification service in Asia-Pacific region. TWCA wish to add its' root certificate into BlackBerry mobile d

  • Aluminum keyboard pairing issues

    I was recently given a friend's bluetooth aluminum keyboard and when I tried to pair it with my Vista laptop, it finds the keyboard and then when I enter the passkey it fails, every time. Thinking this was a windows issues I repeated the process with

  • Call function in an applet

    Hello, I novice in Java and Iwould like to know why the configuration function is not is started when the "configuration button" is press : import java.awt.*; import java.applet.*; import java.net.*; import java.io.*; import java.lang.*; import java.