You are designing a Microsoft SQL Server 2005 Reporting Services (SSRS) report. The execution of the report must trigger an event for Notification Services by using a custom assembly. You need to write a custom code function named RSNotify that will parse the data from a field named ProductValue and execute the custom assembly within the report. Which three tasks should you perform? (Each correct answer presents part of the solution. Choose three.)
A.
Add a reference to the custom assembly on the Code tab of the Report Properties dialog box.
B.
Add the RSNotify function to the Custom code field on the Code tab of the Report Properties dialog box.
C.
Call the code in an expression by using the following format: =Code.RSNotify( Fields!ProductValue.Value)
D.
Call the code in an expression by using the following format:
=Report.Parameters!Code(RSNotify( Fields!ProductValue.Value))
E.
Add a parameter to the Report Parameters dialog box to reference the custom assembly that contains the RSNotify function.
F.
Add a reference to the custom assembly in the Assembly name field on the References tab of the Report Properties dialog box.