cancel
Showing results for 
Search instead for 
Did you mean: 

ADS:com.adobe.Processing Exception:Could not retrive(200101)

Former Member
0 Kudos

I am trying to create an Interactive ADOBE form. Created the form through SFP transaction and coded the print program also. When I am trying to give the EDITing fascility to my form I am getting error saying "ADS:com.adobe.Processing Exception:Could not retrive(200101)" how to resolve the issue? do anyboyd got the same problem and how did resolve?

Accepted Solutions (1)

Accepted Solutions (1)

former_member705122
Active Contributor
0 Kudos

Hi,

The preview type affects Designer's preview only, not SAP spool's preview, which is always non-interactive (unless, in the ABAP program, you set the fillable parameter of function module FP_JOB_OPEN to X or N).

Thefillable field determines whether a form can have interactive features.

By default, it cannot. If you set fillable to 'X', interactive features are enabled and Adobe Reader grants the so-called Reader rights (in particular, the user

can enter data and save the form together with the data). If fillable equals 'N', the user can make entries in the form, but cannot save the form together with the entries.

Give u2018Nu2019 instead of u2018Xu2019 and check.

FP_OUTPUTPARAMS-FILLABLE = 'N'.

Regards

Adil

Former Member
0 Kudos

Thanks for providing the solution. The error is not coming now. Please can you tell me how can I edit the form?

Former Member
0 Kudos

thanks once again. Coz of your solution I am able to EDIT the form also.

Former Member
0 Kudos

Hi Devayani,

I am also facing the same problem.There is no field called FILLABLE in outputparams of FM 'FP_JOB_OPEN'.But there is a field 'pdfchangesrestricted'. I tried by setting its value to 'X' & 'N', but getting the same error.

Here is my code:

l_outputparams-pdfchangesrestricted = 'N'.

l_outputparams-connection = 'ADS'.

CALL FUNCTION 'FP_JOB_OPEN'

CHANGING

ie_outputparams = l_outputparams.

fp_docparams-fillable = 'X'.

fp_docparams-langu = 'E'.

fp_docparams-country = 'US'.

CALL FUNCTION l_name

EXPORTING

/1bcdwb/docparams = fp_docparams

after this FM call its giving me this 'com.adobe.ProcessingException: Could not retrieve' error.

Can u pls tell me how to remove the error.

thanks in advance.

Rajesh.

Former Member
0 Kudos

Hi Shed Abdul Adil,

There is no field called FILLABLE in outputparams of FM 'FP_JOB_OPEN' (type sfpoutputparams).

But i found FILLABLE value in structure SFPDOCPARAMS (Form Parameters for Form Processing).

I have changed FILLABLE = 'N' but still get the same error.

Can you please help to advise what else i can do to fix this?

Thanks

Best regards,

Prakesh.

Former Member
0 Kudos

hai to Everybody,

YEs check out filable field in SFPDOCPARAMS-fillable = 'N'.

sandeep_kumar60
Participant
0 Kudos

HI

Iam also facing the same erorr in the function module to chedk the ADS configuration

FP_TEST_00  .

could u tell me the possible causes for this issue and help me in resolving the issue

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

You are not getting the error if u comment that line? Could you put up the code so that we could refer and give some solution.

Regards,

Nisrin.

Former Member
0 Kudos

Thanks for replying.

I am not getting the error if I comment the line. The code is as below

CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'

EXPORTING

i_name = 'ZZ_TEST_ADOBE1'

IMPORTING

e_funcname = fm_name.

  • now call the generated function module

  • FP_OUTPUTPARAMS-FILLABLE = 'X'.

fp_outputparams-connection = p_conn.

CALL FUNCTION 'FP_JOB_OPEN'

CHANGING

ie_outputparams = fp_outputparams

EXCEPTIONS

cancel = 1

usage_error = 2

system_error = 3

internal_error = 4

OTHERS = 5.

IF sy-subrc <> 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

ENDIF.

  • DO p_loop TIMES.

FP_DOCPARAMS-FILLABLE = 'X'.

fp_docparams-langu = 'EN'.

fp_docparams-country = 'US'.

CALL FUNCTION fm_name

EXPORTING

/1bcdwb/docparams = fp_docparams

zvbak = VBAK

zadr = ADRC.

Plz tell me how to remove th error.

Former Member
0 Kudos

Hi

you have to do ADS Configuration. Check with BASIS team, they will help you to resoleve your problem.

Rewards Points if useful.

Thanks and Regards

Nikunj Shah

Former Member
0 Kudos

Thanks Nikunj,

But I got this error if I say docparams-fillable = 'X'. Is this related with function module? Is it an exception/