cancel
Showing results for 
Search instead for 
Did you mean: 

Adobe form: error while executing the form

Former Member
0 Kudos

Hi all,

I am working on SAP interactive (editable) form (ECC 6.0).When I am executing my driver program, I am getting the following error:

"com.adobe.ProcessingException: Could not retrieve"

.

My driver program code is as below:

l_outputparams-pdfchangesrestricted = 'X'.
  l_outputparams-connection = 'ADS'.

  CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
      ie_outputparams = l_outputparams

  fp_docparams-langu   = 'EN'.
  fp_docparams-country = 'US'.
  fp_docparams-fillable = 'X'.

  CALL FUNCTION l_name
    EXPORTING
      /1bcdwb/docparams  = fp_docparams

If I remove

fp_docparams-fillable = 'X'

line then I am not getting any error.

Can anybody please tell me how to remove the error.

thanks in advance.

Rajesh.

Edited by: Rajesh K on Jul 31, 2008 12:48 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Rajesh,

Your code doesnt seem to have a problem, For interactive reports you need to set attrivute fillable to 'X'.

I guess they is a problem with something else.

l_outputparams-pdfchangesrestricted = 'X' , this is not a field of this structure "SFPOUTPUTPARAMS" right??

Regards,

Nisrin.