Hi,
When I use following code, I get FPRUNX001 system error that : Request start time: Sun Dec 23 23:11:47 CST 2007 (200101)...
-
fp_docparams-langu = 'E'.
fp_docparams-country = 'US'.
fp_docparams-fillable = 'X'.
CALL FUNCTION fm_name
EXPORTING
/1bcdwb/docparams = fp_docparams
qmnum = qmnum
IMPORTING
/1BCDWB/FORMOUTPUT = formout
EXCEPTIONS
usage_error = 1
system_error = 2
internal_error = 3
others = 4.
-
but when i remove 'fp_docparams-fillable = 'X'.'... and just use below code it creates a PDF (can not enter values in input fields of pdf form though).
-
fp_docparams-langu = 'E'.
fp_docparams-country = 'US'.
CALL FUNCTION fm_name
EXPORTING
/1bcdwb/docparams = fp_docparams
qmnum = qmnum
IMPORTING
/1BCDWB/FORMOUTPUT = formout
EXCEPTIONS
usage_error = 1
system_error = 2
internal_error = 3
others = 4.
-
How do I make this to work for interactive PDF without making fp_docparams-fillable = 'X'....
please advice.
Thanks.
Sudhir