cancel
Showing results for 
Search instead for 
Did you mean: 

Drop down gets only first value from the table ...

Former Member
0 Kudos

Hi Experts ,

I populated table additional_data with all the proper values ...

and also did the binding prooperly in the form for the required field....

But still i am getting a single entry in the dropdown i.e. the first value in the table additional_data...

Please help.

Helpful anwers will be rewarded with point.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

I had the same problem, solved in the following way.

Select that field, goto Palette -> object and did u check by changing the property of that field to User-entered optional. Hope this will help you.

Former Member
0 Kudos

hi Thomas,

What is the code in for additional_data table that you have.

I have this code and thsi never gets any drop down values

w_lines = 1.

ls_additional_data-fieldindex = w_lines.

ls_additional_data-fieldname ='PLANS_NEW_TEXT'.

ls_additional_data-fieldvalue = 'New Pos Title 3'.

append ls_additional_data to additional_data.

ls_additional_data-fieldindex = w_lines.

ls_additional_data-fieldname ='PLANS_NEW_TEXT'.

ls_additional_data-fieldvalue = 'New Pos Title 3'.

append ls_additional_data to additional_data.

w_lines = w_lines + 1.

ls_additional_data-fieldindex = w_lines.

ls_additional_data-fieldname = 'PLANS_NEW_TEXT'.

ls_additional_data-fieldvalue = 'HR co ordinator 3'.

append ls_additional_data to additional_data.

and this neither gets the first nor any of the values

my field is PLANS_NEW_TEXT

amolgupta
Active Contributor
0 Kudos

Check the cardinality of the node in the context....

it should be 0..n and not 1..1.

regards,

-Ag.

Former Member
0 Kudos

Hi,

Instead of DropDownList in Library>standard tab,u try it by adding Enumerated DropdownList which is there in Library>Webdynpro Tab,

I also faced the same problem ,by changing it to enumerated it worked.

once try it.

Former Member
0 Kudos

Hey Madhavi ,

Actually i am not familiar with WebDynpro ...

so dont know much in it ...

Former Member
0 Kudos

hi thomas,

you didnt get me,

In AdobeLifeCycleDesigner ,you will be having paletes tab,Go to it

Click on Library ,You will be displayed with a window which will be having following tabs ,standard ,Barcode--- etc and wven webdynpro ,

From that u select Enumerated dropdownlist insted of taking it from standard tab.

Any queries post again

Former Member
0 Kudos

Hi Madhavi ,

I tried using the Enumerated Dropdowns ..

And its working fine now ..

Is there any upper limit fro the normal drpdwns

or lower limit for enumerated derpdwns ..

like normal drpdwn shuld be less than 50

and enumerated drpdwn have to be more than 50