We have a form ( I did not build ) that contains several dropdowns, and when I select an entry from the dropdown, the MEL code shows in the field.
( {OBSANY('IADLHOUSEKPG','Performs light daily tasks.') <-ASSIGNMENT BLOCKED
When I click on a different dropdown, the error goes away, but then shows on the current dropdown. Closing the form and reopening .... the MEL does not show any longer. This doesn't happen when I insert the form by itself, only in the encounter. There are 2 other forms within the encounter, but don't see any items that are even remotely similar. Does anyone know of a quick way to determine what may be causing the MEL code to show ? Thanks.
John
Faxton St. Lukes HealthCare
You cannot do assignments using OBSANY()
OBSANY('IADLHOUSEKPG','Performs light daily tasks.') is just incorrect.
Check in your MEL code (in the mel code area to the right in the form editor), and under form objects. This should be
OBSNOW('IADLHOUSEKPG','Performs light daily tasks.')
regards,
Beverly