2007 Aug 09 1:10 PM
HI all,
I have a req like..
I need to lock some number of users to run my REPORT.
how its possible.
vkr.
2007 Aug 09 1:15 PM
Hi,
use the
at selection screen output
case sy-usrid.
when 'user1' or 'user2' or list of users you wnat to block
message eooo with 'you are not authorized'.
endcase.
thanks & regards,
Venkatesh
2007 Aug 09 1:15 PM
Hi,
use the
at selection screen output
case sy-usrid.
when 'user1' or 'user2' or list of users you wnat to block
message eooo with 'you are not authorized'.
endcase.
thanks & regards,
Venkatesh
2007 Aug 09 1:16 PM
Hi,
incase if i want to block 2000 users then,
its very difficult.
plz suggest some else.
vkr.
2007 Aug 09 1:19 PM
Hi
in that case maintain all users in one table and create table maint generator its easy for updating other users and
check these users in the specified event above.
reward points to all helpful answers
kiran.M
Message was edited by:
KIRAN KUMAR
2007 Aug 09 1:16 PM
Hi Vkr.
in the attributes of a program u can check checkbox for locking
or if u dont want to run the report for users
write code in initilazation event.
if sy-uname = 'abcd'.
exit.
endif.
reward points to all helpful answers
kiran.M
2007 Aug 09 1:17 PM
hi,
then i think you have to create
a ztable in which you maintain all the user ids
and select the usrid and if it is ther in the ztable
give an error message
thanks & regards,
venkatesh