Hello
We have created a Crystal Report for Medicare Wellness Visits. We can't figure out how to run it by patient and add it to the "Print" function of the EMR. We would like to be able to click on "Print" and print the report by patient. All we can do now is print it by date range. Any ideas?
Thanks
Laurie
I know this post is very old but I figured it deserved an answer in case someone else was looking for the same thing. All of the reports inside of the "Print" dialog box are listed in the table "PRINTATTRS" and that table is read only so yo can not add items to it. Also, the data does not get pulled directly from the tables but from TMP tables so you would not get sent the current Patients ID even if you did add it to the system.
rwilliams said:
I know this post is very old but I figured it deserved an answer in case someone else was looking for the same thing. All of the reports inside of the "Print" dialog box are listed in the table "PRINTATTRS" and that table is read only so yo can not add items to it. Also, the data does not get pulled directly from the tables but from TMP tables so you would not get sent the current Patients ID even if you did add it to the system.
Thank You!
As a follow-up, does that PRINTATTRS also control the fact that some reports have initial screen prompting? For instance, SuperBill checks for date rang and LOC prior to running, and a few other reports also do some special prompting.
Thanks.
Hi Joe,
I don't know how complex parameters like those in the superbill are added, but I have done reports with simple ones like date fields – here are the steps.
eg: Report to pull patients born on or after a certain date. (for eg. 1/1/2014)
In Crystal Reports,
Table
PERSON
In Details, display fields {PERSON.SEARCHNAME} and{PERSON.DATEOFBIRTH}
Create a formula
@DOB
{PERSON.DATEOFBIRTH}
Record Selection Criteria
{PERSON.DATEOFBIRTH}>={@DOB}
In Centricity EMR,
Go –> Setup –> Settings
Click New button
Give report name
Select report path
Then under Report Parameters
Click New button
Type DOB under Formula Name
Select Date as Type
Type Select Date under Prompt
Click OK button
When you click on the report name, on the right side of the screen, we can see the Report Parameters
Prompt Value Type
Select Date Date
Select a date say 1/1/2014 from the calendar popup under the Value
Click Preview button.
I believe that I did not miss any step. Please let me know if there are any issues. Hope this helps.
BAJ