
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Hello,
I am new to Silk Central and I am looking to export a report for a manual test scenario. What I am trying to do is for a specific execution plan ID pull all the Scenarios, Scripts and steps. I have been able to get everything to work except for getting the scripts to be in the proper order. I cannot seem to find the Order anywhere in the DB.. Just wondering if anyone has any idea what table this is stored on? My current SQL is below:
SELECT DISTINCT
S1.ExecutionPlanID,
E1.ExecutionPlanName 'Scenario_Name',
S1.TestName 'Script_Name',
SC.Name 'Step Name',
SC.Description 'Step Description',
SC.Result 'Step Result'
FROM RV_ExecutionPlanStatusPerBuild E1, RV_TestStatusExtended S1, tm_manualsteps SC
WHERE E1.ExecutionPlanID = S1.ExecutionPlanID
AND S1.TestID = SC.TestAssetNodeID_fk
AND E1.ExecutionParentFolderID='23778'
ORDER BY S1.ExecutionPlanID;
I have also attached a screenshot of the field I am referring to that I am trying to find in the DB is "Order"
Thanks,
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
You will not be able to modify the standard global reports. If you require to see the SQL for this report, right-click on the report and make a copy of it in the report tree.
This will then give you access to the SQL for this report.
Thanks,
Matthew

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
did you already have a look at the query for the Global Report "Manual Test Results by Execution Plan" (just copy and paste it to be able to view the query)? There you should find the order fields for manual tests and for the steps and how they are used.
Best regards, Reinhard

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
It was actually on that report however for some reason I am not able to look at the query. I have SuperUser access which has the proper permissions to edit the global reports. Any idea why that might be?
Kory,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
You will not be able to modify the standard global reports. If you require to see the SQL for this report, right-click on the report and make a copy of it in the report tree.
This will then give you access to the SQL for this report.
Thanks,
Matthew

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content