cancel
Showing results for 
Search instead for 
Did you mean: 

ABAP IAF - Make Fields Editable in Offline Scenario

Former Member
0 Kudos

Hello all,

Good day!

I just want to ask if its possible to make field modifiable for the ABAP Interactive Adobe Forms (transaction SFP) in an Offline Scenario?

I ask because when I set a textfield as (user entered) during the preview section in the Livecycle Design Editor the fields can be modified. However once I use the FM to generate the print preview and save the PDF locally the field cannot be modified.

Is there a way in how to make this possible?

I hope to hear from you soon.

Thanks and Regards

Accepted Solutions (0)

Answers (1)

Answers (1)

vaibhav_tiwari
Contributor
0 Kudos

Hi,

Set your form's layout type to "ZCI" in form properties in SFP and in your forms function module pass below parameters while calling it in your report:

SFPDOCPARAMS-FILLABLE = 'X'.

SFPDOCPARAMS-DYNAMIC = 'X'.

Regards,

Vaibhav

Former Member
0 Kudos

Thanks ...

The parameters seem to do the trick but for some reason I need to fill out

SFPDOCPARAMS-FILLABLE = 'N'.

SFPDOCPARAMS-DYNAMIC = 'N'.

Though the data I typed still won't save. Is there a trick to this?

Former Member
0 Kudos

Chad,

I just had the same issue.

I created an offline, interactive form in SFP and just called it using ABAP. The form came up and I could enter data, BUT it would not save.

The trick is to make sure you provide a valid interface mapping between a DDIC object and the interface.

Create an DDIC structure that matches your form fields, and make sure you pass it in the FM call and it's defined in the interface. Then map the fields to your form fields.

btw, i'm using

SFPDOCPARAMS-FILLABLE = 'X'.

SFPDOCPARAMS-DYNAMIC = 'X'.