cancel
Showing results for 
Search instead for 
Did you mean: 

Autorefresh in POWL component

Former Member
0 Kudos

Hello ,

I have to do autorefresh for POWL component. Refresh should be called after each action and alv display list should be changed.

I have seen on sdn message where they are saying that we need to call handle_action method . Pl can anyone of you tell me where did you placed that code.

Does this mean that on action handler of each action needs to change to incorporate this or is there any method which is called after each action, where this handle_action will be called .

thanks,

Sharada

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

The <b>e_do_refresh</b> is an exporting parameter in the <b>handle_action</b> method.

Former Member
0 Kudos

Hi Sarada,

Yes you are right. We need to set the value of the "e_do_refresh" variable in handle_action method. Here is a sample code for your understanding

*---- auto refresh

if i_actionid = 'PICKING' or

i_actionid = 'ADJUST' or

i_actionid = 'GOODS_ISSUE'.

e_do_refresh = 'X'.

endif.

Hope this is clear to you.

Regards,

Maqsood

Former Member
0 Kudos

hi, If I write action in detail component , how do I call refresh button ?

Former Member
0 Kudos

hi blake,

I think in the handle action v have to do that refresh.

U will be building the fields using field catalog. According to the fieldname u might be doing some action it will be handled in the handle action.

I believe that it will be appropriate to refresh the handle action parameter.

Regards,

Arun.

Former Member
0 Kudos

hi, Arun.

I Have the idea , thank you for corp .