Skip to Content
0
Former Member
Mar 22, 2009 at 06:31 PM

Event Handle_onf4 is not getting triggered in OOPS ALV.

952 Views

Hi ALL,

In Program, i am trying to create a F4 search help in ALV Grid using OPPS ALV.

For that purpose , These are the stpes whihc i followed.

Step1.

creted the table of fields for whihc i want to create

DATA: lt_f4 TYPE lvc_t_f4 WITH HEADER LINE .

lt_f4-fieldname = 'PRICE'.

lt_f4-register = 'X' .

lt_f4-getbefore = 'X' .

APPEND lt_f4 .

CALL METHOD gr_alvgrid->register_f4_for_fields

EXPORTING

it_f4 = lt_f4[] .

METHOD handle_on_f1 .

PERFORM f4_help USING e_fieldname es_row_no .

er_event_data->m_event_handled = 'X' .

ENDMETHOD .

i have set the handler for for alv grid as well.

but my handle is not getting triggered when i ask for F4 help.

Could you please guide on this.

Thanks in Advance.

Regards,

Deepak

Edited by: Deepak Kumar Khandelwal on Mar 22, 2009 7:34 PM