Hi Venkat,
The source of the DropDownByIndex is a table of name/values pairs, so once you have the selected value from r_param->value->*, you can read that table to determine the index.
READ TABLE dropdown_options ASSIGNING <fs> WITH KEY value = the_value.
System variable sy-tabix will indicate the table index where the_value was found.
Cheers,
Amy