cancel
Showing results for 
Search instead for 
Did you mean: 

Interactive form not working but print forms are working fine

Former Member
0 Kudos

Hi All,

While creating a interactive form value type is coming as read only and rest of the option are invisible.

Could any one provide pointers if ADS should be configured for interactive form creation.

Thanks,

Prakash

Accepted Solutions (0)

Answers (4)

Answers (4)

0 Kudos

Hi,

try to use

l_docparams-fillable = 'N'

I had the same problem and with that parameter it works fine.

Former Member
0 Kudos

Hello!

99,9% sure, that Dezco is giving you the right clue.

Server does not allow you to generate interactive (fillable) form because you don't have license (credential) for this on you server.

Please, check this thread

and see the SAPNote mentioned their.

Regards,

Petr Perstnev

Former Member
0 Kudos

Are you setting the right docparams on the functionmodule?

like:


    DATA: l_docparams     TYPE sfpdocparams.
    l_docparams-fillable = 'X'.
    l_docparams-dynamic  = 'X'.

    CALL FUNCTION l_fm_name
      EXPORTING
        /1bcdwb/docparams  = l_docparams
        /1bcdwb/docxml     = l_docxml
      IMPORTING
        /1bcdwb/formoutput = l_formoutput
      EXCEPTIONS
        OTHERS             = 1.

Former Member
0 Kudos

Hi Mark,

I have created a form and its respective interface,i had enter fillable = 'X' and dynamic = 'X',it throwing message as mentioned.If i remove fillable field its working good as a print form.

Regards,

Prakash

former_member191062
Active Contributor
0 Kudos

Hello,

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

Please tell us what scenario you use? Is this Webdynpro ABAP / Webdynpro JAVA ?

Best regards,

Dezso

Former Member
0 Kudos

Hi Dezso,

I had created a print form using ABAP application program i.e webdynpro is not used.

But while creating offline interactive form, i found that in the layout,each field value which should be set to "USER RECOMMENDED" to make the interactive form work was found to be invisible.

I could only select READ ONLY as field value,so it seems for me ADS has to be configured.

Could you please suggest me what i have to do to rectify this issue????

Regards,

Prakash

Former Member
0 Kudos

Hi,

While executing offline interactive form through ABAP program,some kind of message is being displayed.

"ADS: Request start time :Mon Nov 12 21:30 PST (200,101) "

Regards,

Prakash

Former Member
0 Kudos

This can be due to a misconfiguration of the connection between your ADS and your ABAP stack, or to a configuration of the ADS on the J2EE side.

Refer to the configuration guide to solve this.

Regards,

Francois