Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

In ALV, i have to display list in which some records has to
display. starting of each record it should display checkox.
and we have to display push button delete. when user select
chekc box and press delete button, that entry should
delete. please tell me how to do it?

Answer Posted / kubera naidu

Hi, you can do this by..am droping here only the relevant
code for the selected records. i.e for the check box selected,

1) Build fieldcatalog along with the checkbox
2) Create one method for getting the selected records into
internal table.
* Registering Edit Event
CALL METHOD g_grid->register_edit_event
EXPORTING
i_event_id = cl_gui_alv_grid=>mc_evt_modified.

g_grid->check_changed_data( ).

REFRESH: it_final.

LOOP AT it_final1 INTO wa_final1.
IF wa_final1-checkbox EQ 'X'.
APPEND wa_final1 TO it_final.
CLEAR wa_final1.
ENDIF.
ENDLOOP.
3) And for deleting, create a push button on the screen
and in PAI,
case ok_code.
when 'DELETE'.
CALL METHOD g_grid->register_edit_event
EXPORTING
i_event_id = cl_gui_alv_grid=>mc_evt_modified.

g_grid->check_changed_data( ).

delete it_final where checkbox = 'X'.

endcase.

Hope somehow it will help..
Regards,
Kubera Naidu.

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When is the top-of-page event triggered? : abap data dictionary

1296


What are the different types of parameters?

1234


What is the diff between database view and maintenance view?

1109


What is the bapi?

1196


what are the main technical differences between oracle and sap? it would be more helpful to me if get this answer...

2188


What is the difference between field-group header and other field groups? : abap modularization

1043


Explain pai and pbo.

1285


what is a text table ?

2406


What are the differences between a database index and a match code?

1220


What are the features of abap/4 dictionary? : abap data dictionary

1137


What are the three components of a work process?

1172


What is the significance of delivery class? : abap data dictionary

1143


WHAT ARE THE INPUT PARAMETERS TO BE PASSED FOR THE BAPIS 'BAPI_CUSTMATINFO_GETDETAILM' AND 'BAPI_CUSTMATINFO_GETLIST'

2310


How to select valid lines for secondary list?

1147


what is sap scriptview ?

2348