Select all Hotline users from USR02

Question:
How do I select all the hotline users from USR02 in an abap?
I have made following code, but the result is not gooe :
data: begin of g_usr02_tab occurs 0.
include structure USR02.
data: end of g_ursr02_tab.
ranges: r_hotline for usr02-bname.
r_hotline-sign = 'I'.
r_hotline-option = 'CO'.
r_hotline-low = 'HOTLINE*'.
append r_hotline.
Select * from usr02 into corresponding fields of table g_usr02_tab where bname in r_hotline.
Answer:
Thats it.
Thanks a lot.
Merry Christmas !!

More Articles:

about REUSE_ALV_GRID_DISPLAY's top-of-page event?
Please-Easy question about mesages?
Anyone know how to check dates of the format DDMMYYYY?
Question on upload of a csv file from the application server?
Bapi for goods issue?
Watch point in the debugging ?