cancel
Showing results for 
Search instead for 
Did you mean: 

add values in Dropdown list

Former Member
0 Kudos

Hi,

My reqiurement is to add values in Dropdown list which is standard one. Already threre some values are there, like

hourly,daily,wekly.

Now I need to add montly value to the above dropdown list.How this can be done.

Suggest me.

Thanks,

Brahmaji

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

My reqiurement is to add values in Dropdown list which is standard one. Already threre some values are there, like

hourly,daily,weeklyand monthly

Now I need to add yearly value to the above dropdown list.How this can be done.

the details are

component gs_job

view vperiodwithtype

contextnode period

attribute period_type

Thanks

Brahmaji

Edited by: brahmaji24 on Feb 24, 2010 4:22 PM

Former Member
0 Kudos

Hi

Could you please expand on what Business Scenario you are referring to as well as provide the description of the view you are working on.

I suspect the values you are referring to cannot be added to.

Regards

Arden

Former Member
0 Kudos

Hi Adren,

Thanks for your response.

My requirement is to schedule the campaign based on period.If we enable the period(it is check box), we will get

dropdown boxperiod_type) with values hourly,daily,weekly,monthly.

Now I need to remove the values hourly,daily,weekly from dropdown box and add value yearly to dropdown box .

the details are

component gs_job

view vperiodwithtype

contextnode period

attribute period_type

Regards,

Brahmaji

suchita_phulkar
Active Contributor
0 Kudos

Hi,

Expand the Attribute Period_type and double click on its GET_V method.

You will find following code line :

lr_ddlb->set_selection_table( me->job_wizard ).

Double click on the Set_selection_table method to open the method code.

You will find a LOOP.. ENDLOOP there. Here,to remove the values, comment out this LOOP- ENDLOOP.

and add following lines

 
         ls_ddlb-key   = 'Y'.
        ls_ddlb-value = 'Yearly'.
        APPEND ls_ddlb TO me->ddlb.

Thats All .

Hope it Helps.

Regards,

Suchita