cancel
Showing results for 
Search instead for 
Did you mean: 

Remove lead selection in POWL ALV table

murali_ram
Participant
0 Kudos

Hello Guru's

I need to remove lead selection in powl alv table.

Brief : I have one alv powl table. in that I had one 'display' action button. when I click this 'display' action button, i want to capture 'Display' value in I_action_id of powl handle action method.

but instead of this..it shows the value ' powl lead selction' in I_action_id. it is because the "lead selction' is defaultly selected in powl alv table.

Hope iam not confusing.

Looking for a solution.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

in the POWL configuration you can change it:

Deselect this property

Or:

In the feederclass  in method IF_POWL_FEEDER~HANDLE_ACTION check I_ACTIONID + C_SELECTED and cancel the action.

Like this:


if I_ACTIONID = 'powl_lead_selction' and lines( C_SELECTED ) = 1.

  exit.

endif.

Hope this help

Regards
Shkelqim