Hello,
Is there a way to set up a visibility by specialty? We are a multi-specialty organization and we are working on a form and would like to be able to use it for multiple specialties instead of building the same form for each specialty. Any help would be greatly appreciated!
Thanks!
The most simplistic and versatile approach would be to create a drop down list of specialties and set the visibility to the selected item. You would then use the variable name and value in the visibility code to show when it is selected.
DOCUMENT.DROPDOWNSEL == "Selected Specialty Name"
You also have two options:
1) Set one specialty visibility layer to default (if desired) by using empty quotes plus the specialty name:
DOCUMENT.DROPDOWNSEL == "Selected Specialty Name" or DOCUMENT.DROPDOWNSEL == ""
2) Do not set a specialty visibility layer to default forcing the user to select their specialty.
Depending on your environment, it may be possible to set the specialty by the document.locofcarename, however this is only usable if your specialties are in different locations of care. Then it becomes:
DOCUMENT.LOCOFCARENAME == "Location of Care LONG Name"
Hope this helps.
Try this-
{find("SpecialtyTypes","Description","SPID",find("_UserSearch","specialty","pvid",find("document","usrid")))}
This will pull in the document provider's specialty that you can use for visibility regions. I use this in CPS, I'm not 100% sure its the same for EMR.