cancel
Showing results for 
Search instead for 
Did you mean: 

Webdynpro Abap ALV 'Select ALL' Event

Former Member
0 Kudos

Hi

I want to know can we handle the 'SELECT ALL' or 'DESELECT ALL' Button present on Webdynpro ALV to add our own code.

Actually I have checkboxes in each line of ALV and my requirement is like if the use select 'SELECT ALL' then I have put 'X' in all the checkboxes .

I know I can put Two buttons and add my functionality to those button but I am eager to know can I use stanadard button for it which is present in ALV.

Thanks

Ankesh Jindal

Accepted Solutions (0)

Answers (1)

Answers (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

The Select All event is not listed as one of the standard functions you can provide application specific logic for:

http://help.sap.com/saphelp_nw70ehp2/helpdata/en/49/3e12a7347d3ef0e10000000a421937/frameset.htm

Therefore my guess would be no, that you can't override this event.

However have you tried setting a break point in any of the registered event handlers for the standard events:

http://help.sap.com/saphelp_nw70ehp2/helpdata/en/49/3e0e6c347d3ef0e10000000a421937/frameset.htm

Perhaps one of them will trigger one of these standard events handlers.

Former Member
0 Kudos

Hi Thomas ,

I have tried almost all the Standard event

ON_STD_FUNCTION_AFTE

ON_STD_FUNCTION_BEFO

ON_AFTER_CONFIG

ON_FUNCTION

ON_CELL_ACTION

ON_DATA_CHECK

They all r not triggering , there can be any way of doing this .

Is there any possibility for handling this ?

Thanks

Ankesh

Former Member
0 Kudos

Finally I have taken two button at the top and executed mu functionality..

Thanks