‎2014 Jul 18 2:26 PM
I have a some code. When i using preview button i get this error "START_FORM WRITE_FORM invalid because it is missing"
when i looking using debug rstxc-tdclose value will get 'X' this is reason of error. How Can i fixed this ?
Node :Code transaction :VA22
‎2014 Jul 18 2:36 PM
‎2014 Jul 18 2:36 PM
‎2014 Jul 18 2:40 PM
‎2014 Jul 18 3:01 PM
Hi
it seems you've close your form and call it again or call a new one without to open it.
I don't kbow how your print program is, but you should have a flow like this:
OPEN_FORM
WRITE_FORM
CLOSE_FORM
If you need to print several form in the same spool request, it needs to use START_FORM and END_FORM, so the flow become like this:
OPEN_FORM
START_FORM
WRITE_FORM
END_FORM:
CLOSE_FORM
Max