cancel
Showing results for 
Search instead for 
Did you mean: 

FPRUNX001 error when fp_docparams-fillable = 'X', else PDF is created.

Former Member
0 Kudos

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

Accepted Solutions (1)

Accepted Solutions (1)

former_member191062
Active Contributor
0 Kudos

Hello,

please ensure that you have a credential installed into your ADS.

Please refer to the configuration guide how this can be implemented.

Best regards,

Dezso Pap

Former Member
0 Kudos

Dezso,

We do have a credential file installed into our ADS already.

I found OSS Note 1090486 that may have something to do with this.

Any thoughts?

Thank you,

Stephen.

(I work with Sudhir)

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks Dezso.. We reinstalled the credential.. and it is now working fine.