How to create SSRS report in SCCM 2012 using report builder
- ·Go to SCCM console – Reports – Create report
- After click next report will open up in Report Builder.
- Right click on Data sets and click Add Data set
- Select Use dataset embedded in my report and select data source. Type the above query as follows
select a.CollectionId,
b.Name from dbo.v_R_System r
join dbo.v_FullCollectionMembership a on R.ResourceID = a.ResourceID
join dbo.v_Collection b on b.CollectionID = a.CollectionID
Where R.Name0 =@machine
join dbo.v_FullCollectionMembership a on R.ResourceID = a.ResourceID
join dbo.v_Collection b on b.CollectionID = a.CollectionID
Where R.Name0 =@machine
- Click fields and click ok
- Right click on Data Sets and click Add Data Set again. Fill the details as follows and press OK
select Name0
from v_R_System
- Right Click on report, where the empty area of report page and select properties. Go to reference tab, Click ADD on assemblies
- Add following assemblie – SrsResources, culture=neutral And Click OK
- Go to parameters and now you can see there are two parameters. machine and UserSIDs. Right click on UserSIDs and select properties
- Select parameter properties – Internal Default values, select specific value and ADD
Value – =SrsResources.UserIdentity.GetUserSIDs(User!UserID)
- Go to insert and select table
- Select dataset 1 and next
- Now you can run the report on SSRS
No comments:
Post a Comment