Good morning, I am working on a handout designed to pull information from the open document. The majority of the fields are document variables and they aren't printing. I copied the translation directly from VFE, pasted it into Notepad, then copied from Notepad and pasted it into the handout template. I have other handouts that are working just fine, however the majority of those are obsterms instead of document variables but there are a few in the handouts that print just fine.
What can I do differently to get these to work? Here is what I have (the bold items are printing fine):
{CFMT(DOCUMENT.ORDERING_PRO, "", "Ordering Provider and NPI: ", "B", "
")}
{CFMT(OBSNOW("DRBMEDEQ USD"), "", "Type of Equipment: ", "B", "
")}
{CFMT(DOCUMENT.DX1, "", "Primary Diagnosis: ", "B", "
")}{CFMT(DOCUMENT.DX2, "", "Secondary Diagnosis: ", "B", "
")}{CFMT(DOCUMENT.DX3, "", "Tertiary Diagnosis: ", "B", "
")}{CFMT(DOCUMENT.DX4, "", "Quaternary Diagnosis: ", "B", "
")}
{CFMT(DOCUMENT.BEGINNING_DA, "", "Beginning Date of Service: ", "B", "
")}
{CFMT(DOCUMENT.LENGTH_OF_NEED, "", "Length of Need: ", "B", "
")}
{CFMT(DOCUMENT.PURCHASED__DME, "", "Purchased: ", "B", "
")}
{FMT("MD Signature: _________________________________________ ", "B")} Date: {DATESTAMP()}
Thanks for any assistance you can give.
Linda
Ensure that the document variable fields have the 'Make Available to Other Forms' check box checked (if using VFE). This makes them global to the update and available to handouts. It is important to ensure that their names are unique to avoid collision with other form variables.
Thanks so much Lee! Exactly what I was missing, the 'Make available to other forms' checkbox!