Page 1 of 1

Print Dynaform with Case Number

Posted: Tue Nov 19, 2019 12:40 am
by heemalkumar
Hi Team
We have been able to print dynaform to PDF and save it, however, the Case Number isnt appearing.
How can we do this change that Case Number starts showing up when Dynaform is printed.

Re: Print Dynaform with Case Number

Posted: Fri Dec 06, 2019 2:18 pm
by dan123dan
Hi.
There are two possible ways to show the Case Number

The variable that shows the Case Number is the follow @@APP_NUMBER

- On your dynaform you can set a default value with this variable.

- The other way could be create a trigger with the following :

$casenumber = @@APPLICATION;
$query=executeQuery("select APP_NUMBER from APPLICATION WHERE APP_UID ='$caseid'");
@@casenumber = $queryres[1]['APP_NUMBER'];