cancel
Showing results for 
Search instead for 
Did you mean: 

adobe interactive form

rupkbh
Explorer
0 Kudos

I want to create a dropdownlist box in adobe forms , so that i can select the value without involving web dynpro.

when i am saving the adobe form , i am not able to use dropdown list , but i can do so in preview.

even if I am putting a text box it is not editable while saving but it is editable in preview for both the cases abap dictionary interface and xml interface.

actually i am new to adobe forms interactive.

Edited by: RUPAKBH on Nov 24, 2010 10:06 AM

Accepted Solutions (0)

Answers (1)

Answers (1)

OttoGold
Active Contributor
0 Kudos

can you explain how is your dropdown implemented? would help to answer your question. Otto

rupkbh
Explorer
0 Kudos

1. sfp.

2. created an interface of dictionary type . created a data type based on the table containing 2 fields id, name.

3. created an adobe form., based on the interface.

4. put a dropdownlist box from web dynpro native.

5. went to binding and bound with the id field of the table.

6. clicked on preview, cant see any data.

7. after saving it as pdf , the dropdownlist is disabled, cant choose value.

but, if i am assigning values by click on list item say 1 , 2 manually i can see it in preview , but not in print preview or saving it as pdf file in local disk.

Former Member
0 Kudos

Hi can you send me the XDP to check...?

rupkbh
Explorer
0 Kudos

pls send your email address so that i can send the xdp and xsd file.

rupkbh
Explorer
0 Kudos

went to transaction sfp.

put a enumerated drop down list.

object --> field ==> list items ==> clicked + added texts A B C.

it is showing in preview, but not when i am saving as a pdf file.

put a second enumerated drop down list.

object --> binding => default binding : $record.IT_ADOBE.DATA[*].ID.

clicked on dont update any related properties.

*in preview, cant see any value , even when i click the drop down list, it gives a sound. nothing happens here and also after saving

.*

Former Member
0 Kudos

Hi,

I cannot have my id here, you can fetch it from my business card in profile.

OttoGold
Active Contributor
0 Kudos

preview does not have any "backend", so it cannot read the values. the form does not read the values itself, the program does it for the form. no program = no values.

Otto

Former Member
0 Kudos

Hi,

I have just tried several combinations of the form properties for you.

in File>Form Properties>Preview Tab --> Preview type is "interactive form" you can see the static values in the ENUM DD list both in ADLC preview and PDF published. just cross check the form properties from ADLC also once you save it as a PDF file reopen that PDf in ADLC and check it.

As Otto claimed if your are looking for dynamic data in local preview, its not possible right.

Regards,

Sai

rupkbh
Explorer
0 Kudos

i have put a enum DD , bound it with id field from zadobe table. in code initialization, written a select statement.

i have written a driver program:

CALL FUNCTION 'FP_JOB_OPEN' "& Form Processing: Call Form

CHANGING

ie_outputparams = fp_outputparams

CALL FUNCTION 'FP_FUNCTION_MODULE_NAME' "& Form Processing Generation

EXPORTING

i_name = 'ZDEMOFORMRB'

IMPORTING

e_funcname = fm_name.

CALL FUNCTION fm_name

EXPORTING

/1BCDWB/DOCPARAMS = fp_docparams

CALL FUNCTION 'FP_JOB_CLOSE'

execute prg, print view , can see only one value. now the drop down list looks like a text box, no drop down option. after saving as pdf same result.

I want a drop down list in a pdf with some values for that i can choose it in the pdf.

how to do?

OttoGold
Active Contributor
0 Kudos

a) in your code you don´t send any data

b) i fon´t understand why do you use enum DD which is for Webdynpro, I believe

Otto

rupkbh
Explorer
0 Kudos

i also dont understand what u r trying to say .

now this time taken a standard DD list , added some static values,. written a driver program.

its NOT WORKING. means i cant see the values after saving as PDF or in print preview ,,

BUT I CAN SEE IN ADOBE LIFE CYCLE DESIGN PREVIEW.

2ND CASE

bound the drop down list with id field. written driver program. added these lines.

data: it_adobe type standard table of zadobe.

SELECT * FROM zadobe INTO table it_adobe .

cannot see values in preview or after saving it.

now what to so. if you have done it please send the complete steps.

pls help me.

Former Member
0 Kudos

Hi,

I craet a dropdown list in adobe.

I want to hide that dropdown icon in pdf & that should disply once we points the curser on that field.

please help me on this ..

Rosy

Former Member
0 Kudos

It sounds like your form is not set to be "Interactive." Before you are dynamically calling your function module

(i.e. CALL FUNCTION fm_name

EXPORTING

/1BCDWB/DOCPARAMS = fp_docparams ) are you setting fp_docparams-fillable = 'X' ?

This would make it interactive and you should see your values.

Edited by: Josh Dunlap on Feb 23, 2011 3:53 PM

Just realized how old this post was.

Former Member
0 Kudos

Hi Josh,

thanx 4 reply.

My form is interactive & also I set fp_docparams-fillable = 'X' .

I can see the values in my drop down list.

I want to make that ICON (dropdown icon) invisible.

let me know is it possible or not, if possible plz tell me how to make it invisible?

Rosalin

Edited by: Rosalin Sahu on Feb 25, 2011 6:47 AM

nikhilkup
Active Participant
0 Kudos

Rosalin, please create a new forum for your question. Its confusing us.