Hi all,
I have the correct query that I need to display all of the fields that I want. However, If I run more than one test set in test execution, The report pulls all of the results from the beginning. I jsut want the last run test to show up on the report. How do I go about this? which table do I need to look into etc..
Here is the sql that I used.
SELECT
TEST.TS_NAME as "test name",
STEP.ST_STEP_NAME as "Step Name",
STEP.ST_DESCRIPTION as "Step description",
STEP.ST_STATUS as "Run Status",
RUN.RN_TESTER_NAME as "Tester",
CYCLE.CY_CYCLE as "TestSet",
RUN.RN_EXECUTION_DATE as "Execution Date",
RUN.RN_EXECUTION_Time as "Execution Time",
Run.RN_TEST_INSTANCE as "testte"
FROM RUN, CYCL_FOLD, CYCLE, STEP, TEST
where CYCLE.CY_CYCLE = 'test1'
and RUN.RN_CYCLE_ID = CYCLE.CY_CYCLE_ID
AND CYCLE.CY_FOLDER_ID = CYCL_FOLD.CF_ITEM_ID
and STEP.ST_RUN_ID = RUN.RN_RUN_ID
and STEP.ST_TEST_ID = TEST.TS_TEST_ID
I tried searching and could not find an answer.
Thanks in advance for all the help!