cancel
Showing results for 
Search instead for 
Did you mean: 

can i use the method get_selected_step for getting the data in roadmap?

0 Kudos

hi

this is sathya,

my reqirement is i want to display the data of invidual step of dynamic roadmap

could you suggest me

can i use the method can i use the method get_selected_step?

what parameters i have to pass in that method?

regards

sathya

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sathya,

The method GET_SELECTED_STEP is used to get the current step which is been selected by the user.

However you will be having the current selected step in the attribute which you have bind the selectedstep

of roadmap element.So that attribute gives you the step.

And if you want the step selected in runtime,

You can get the selected step in the roadmap by giving ONSELECT action under roadmap properties and give the

following code into that method.


data : lv_value type string.
call method wdevent->get_string
  exporting
    name   = 'STEP'
  receiving
    value  = lv_value.

Lv_value contains the selected step.

0 Kudos

hi harshith

i have written the code under the action of select, which has given to me

data: lv_value type string.

call method wdevent->get_string

exporting

name = 'STEP'

receiving

value = lv_value.

but the above code is not working properly means we are uanble to select pericular step in the output of dynamic roadmap.

i hope you understand

regards

sathya

Former Member
0 Kudos

Hi Sathya,

After you get the lv_value from that code you need to set your attribute which you have bind with lv_value.

Then only you can view the selection.

As you have told that the code was not working, Can you please tell me what problem you are facing?

Edited by: harshith_reddy on Jan 19, 2012 3:42 PM

Answers (0)