Need to click the View Report button twice to view the SSRS report - reporting-services

When I try to run the report in report viewer first time it will load with default date Parameter. When the default date parameter changed to any other date and to view the report we need to click the button twice.
so my issue is why we need to click the 'view button' twice, Is it possible to run the report with one click.
I tried to remove the parameters and added again but still no use

Related

SSRS - Run a report from another SSRS report run

How can I run a report whenever another report runs. I have a situation when an invoice report is executed by user, a copy invoice report should be executed for the same parameters provided to first report. I tried the action property of text to execute another report but nothing happened. How this text box trigger another report at the same time first report runs? Or if there is another way we can do this? There are no C#/Bn.Net code used to create or run report. Only SSRS controls or its related properties. Thanks
If you are administrator of your report server you can configure the history of your report.
go in the report properties, then go to the "instantatnious options" (sorry translated from french so don't know what'll give in english), and then select the checkbox "stock all instants of this report in the history"
that way every time the report is read a history of the report is stored

Triggering MS Access Macro when emailing PDF of Report

I created a Macro in MS Access 2010 for the OnLoad event of a report that hides a subform on the report if a check box on the report is not checked. That works fine but what I am trying to do now is have the same thing happen when I click the button that activates a macro calling the EMailDatabaseObject function that generates an email with a pdf of the report attached. The email with the attached pdf works fine but the macro doesn't run.
What event do I attach the macro to so that it happens when it is outputted to pdf?
Move the existing macro from the On Load event to the On Open event of the report.

Check if Report is fully formatted

We have Order DB in Access where we collect and send Order confirmation to Clients. In Order Form I click button to open Confirmation Report in Normal view. I have "Send Report" button on opened report to send it to Client in PDF format.
All works grate with small reports. Problem arrise when report has 15-20 or more pages. After some investigation I found out that at time of report load user press Send button and report simply not being fully formated and sending action just fails.
I cannot find correct event to check if report is finished formatting. It would help me to make Send button enabled true/false based on that status.
May be you can use 'OnPrint' event of the report footer's section: "event occurs after data in a report section is formatted for printing, but before the section is printed"
I solved it at last.
switched on docmd.Hourglass before button which opens the Report (button is located on Order Form) and switched off docmd.Hourglass on exit sub.
in OnClick event of "Send" button at the top did the check for MousePointer
If Screen.MousePointer = 11 Then Exit Sub
Now User is not able to start sending until all process of button on Order Form is finished. That is actualy strange but somehow it solved the issue. Thank you all for help!

SSRS Subreport parameters

I have a simple dashboard that keeps track of time sheets and allows me to see who has missing, or late time sheets. I also have simple parameters like Division, LineOfBusiness, Department, etc... The dashboard gives some overall counts of records.
I have actions set on the boxes with the counts that launches a sub-report which passes the parameters to a detail report. If the action is taken from the dashboard the parameters are passed and the sub-report runs. Even if I change the parameters on the sub-report, they refresh back to what was passed from the parent. If I run the sub-report by itself (so if I run the template itself without passing by the dashboard), I can pick any values I want for the parameters.
When I use the dashboard and run a sub-report by clicking on a box, how can I update the sub-report parameters without SSRS automatically overriding my new sub-report inputs and reverting back to the values passed by the parent parameters?

How do I simply set up an alert/reminder for dates set in MS Access?

I have a database in MS Access and within it I am holding dates for expirations for SSL's. I want to set a reminder for any SSL that is soon to expire. Anyone know the easiest way to go about this?
It all depends on how you want the notification to work.
You can pop-up a form when the database opens
or at any time using a timer
or in a form event
You can build events into Outlook
You can run some script in the task manager
You can send an email using any of the above.
The easiest way to pop-up a form may be to create a form that runs when the database opens or when the menu form opens. This can be set in the start-up options. The form should be based on a query that checks for out of date records and is only made visible if there is data. You can check the recordset in the load event to see if anything is returned. This for can also use DoCmd.SendObject to send an email.