cancel
Showing results for 
Search instead for 
Did you mean: 

Query in POWL select options/parameter dropdown

Former Member
0 Kudos

Hello,

I am using POWL for my Webdynpro application. In that as per my requirement I had to convert a select option into parameter dropdown. (This change was done in the GET_SEL_CRITERIA method ).

Now in the GET_OBJECTS method where we loop through the selected options (  i_selcrit_values ) . The dropdown values are not getting populated.

Can anyone tell me how to get those selected values from the dropdown in this method.

Thanking in anticipation,

Ravindra

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Ravindra,

Can you Please write the code

  ls_selcrit-kind = 'P'.

  ls_selcrit-param_type = 'D'.

It should work

Best regards,

Rohit


Former Member
0 Kudos

Hi Rohit,

I have already successfuly converted the select options into parameter dropdown

by giving

  ls_selcrit-kind = 'P'.

  ls_selcrit-param_type = 'D'.

The problem that I am facing is, I am not able to get the selected dropdown value and also other parameter values in the method GET_OBJECTS.

THe select option values are available in that method in the table  i_selcrit_values. Similar way I want to have the parameter values in that method. How to get those ?

Former Member
0 Kudos

Hi,

The parameters ARE getting passed to that method just like select options. Somehow I missed out on that previously. Thanks for your reply.

Former Member
0 Kudos

Hello Ravindra,

Please use the POWL_d01 report to update cache whenever you change the feeder.

Best regards,

Rohit

Former Member
0 Kudos

Hi Rohit,

I did have to use that report once to clear the cache.

Thanks,

Ravindra.