I'm new to SSRS and unbale to find out the report items used in exiting SSRS report.I would like to know how can I indentify the Report item type wether it's List or Table. Is there any property exists in ssrs to identify the Type?
Asked
Active
Viewed 533 times
1
-
1I suggest you open up the .RDL file in a text editor like VS Code and take a look – Nick.Mc Aug 02 '21 at 06:41
-
@Nick.McDermaid Thanks for reply. Is there any specific property name which should I look? I can see below property but it is not showing the details wether it's List or Table
-
This https://learn.microsoft.com/en-us/openspecs/sql_server_protocols/ms-rdl/53287204-7cd0-4bc9-a5cd-d42a5925dca1 is a link to the official spec. If you can't identify a difference between List and Table items in RDL, then they must be the same thing. – Nick.Mc Aug 02 '21 at 07:25
1 Answers
1
The name of the object can be viewed and edited in the Properties window. Right-click on an object and select Properties to see this popup.
When you select an object, its name is also displayed at the top of the properties section. You can also use this dropdown to select any object in the report.
Note that you should be using the "SQL Server Data Tools" module in Visual Studio to see these properties. If you don't see the properties section, you can enable it from the View
menu by selecting Properties Window
.

StevenWhite
- 5,907
- 3
- 21
- 46
-
Thanks for the Answer, is there any way to get the item detials if Name of item is changed from default. – KD29 Aug 03 '21 at 12:45
-
@KD29 Not sure what you mean. The item name is visible in the properties regardless of if it has been changed or not. What details are you looking for? And how would you identify which item you're looking for? – StevenWhite Aug 06 '21 at 03:50