Another day, another question!
While the month-end processes are being carried out, we normally ask users to refrain from logging into Oracle. We then monitor who accesses it by runnning this query:
select last_connect, usr.user_name, resp.responsibility_key, function_type, icx.*
from apps.icx_sessions icx
join apps.fnd_user usr on usr.user_id=icx.user_id
left join apps.fnd_responsibility resp on resp.responsibility_id=icx.responsibility_id
where last_connect>sysdate-nvl(FND_PROFILE.VALUE('ICX_SESSION_TIMEOUT'),30)/60/24
and disabled_flag != 'Y' and pseudo_flag = 'N'
The output usually shows, among the rest, the list of user who are logged in in real time and the responsibility they're in
E.g.:
USER_NAME --> RESPONSIBILITY_KEY
JSMITH --> PAYABLES ENTRY
JDOE --> CASH ENTRY
When then contact the individuals and ask them to log off the system.
Is there a way of forcibly log out JSMITH and JDOE out remotely?
Thanks.
While the month-end processes are being carried out, we normally ask users to refrain from logging into Oracle. We then monitor who accesses it by runnning this query:
select last_connect, usr.user_name, resp.responsibility_key, function_type, icx.*
from apps.icx_sessions icx
join apps.fnd_user usr on usr.user_id=icx.user_id
left join apps.fnd_responsibility resp on resp.responsibility_id=icx.responsibility_id
where last_connect>sysdate-nvl(FND_PROFILE.VALUE('ICX_SESSION_TIMEOUT'),30)/60/24
and disabled_flag != 'Y' and pseudo_flag = 'N'
The output usually shows, among the rest, the list of user who are logged in in real time and the responsibility they're in
E.g.:
USER_NAME --> RESPONSIBILITY_KEY
JSMITH --> PAYABLES ENTRY
JDOE --> CASH ENTRY
When then contact the individuals and ask them to log off the system.
Is there a way of forcibly log out JSMITH and JDOE out remotely?
Thanks.