how do report on multi row variable set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2019 09:54 AM
Hi All,
I wanted to know if there is any way that i can report on Multi row variable set variables. I really need this feature and i see that there is some limitation.
Please share any alternate way.
- 15,431 Views

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-06-2019 03:41 AM
Hi upon checking the documentation there is a limitation.
The only thing that i can think of is creating a custom table to store the values for reporting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2020 02:28 PM
You can actually report on MRVS by creating a database view, then use that view to report on
- Create a new Database view (System Definition -> Database Views)
-
- Give it a name like 'u_sc_req_item_multi_var'
- Label like "Multi Row Variable Set"
- Plural like "Multi Row Variable Sets"
- Description like "Joins the sc_req_item to the Multi Row variable set table to be able to report"
- Save
- Under View Tables click "New"
-
- Table: Requested Item [sc_req_item]
- Variable Prefix: sci
- order: 100
- Where clause: mrqa_parent_id = sci_sys_id
- Click "Submit"
- Under View Tables click "New"
-
- Table: Multi Row Question Answer [sc_multi_row_question_answer]
- Variable Prefix: mrqa
- order: 100
- Where clause: keep this field blank
- Click "Submit"
You should now have a DBV that looks something like this:
Create a new report
Select Table as source and select your new Database view (Multi Row Variable Set) as the table
You should now be able to create a query and select the catalog item that you want to report on that has the MRVS, as well as adjust your columns to display the Question and Value as well as any other columns you want on your report.
Please mark this answer as correct or mark has Helpful if helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-09-2020 12:52 PM
Hi Kevin,
I created report mentioned in steps. However i also want to have RITM variables on same report.
Could you please guide me to get RITM variables on report combined to Multi row set data.
Thanks,
Dhawal.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-10-2020 07:45 AM
Sure, but keep in mind your going to get a lot more records returned because your going to have an MRVS row for every variable now.
Add the following three rows to your database view. NOTE: You may have to add the "Left Join" column to your view and/or form (depending how you are creating these)
Assuming you use the same naming convention:
Question(sio_item_option_new) will be the label of your variable
Value(sio_value) will be the value of the variable.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2024 01:05 AM
Hi Kevin,
I tried this the same way you created. But I am facing below issue:
1.Report I received: In column Value(sio_value) , multirow variable values are not showing for Name and Email( marked in RED , and this is multirow variable set)
2. Duplicate entries are coming
3. Name and email values are getting saved in column VALUES(mrqa_value)
This is Database view:
This is our form on portal