GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Oracle Apps
Next Question 
 Oracle Apps  |  Question 1 of 61    Print  
I want to know that if any user is disabled the system administrator responsibility then what i do? because when this responsibility is disabled then he didn't show from any user. so, this is very critical situation that time.

  
Total Answers and Comments: 8 Last Update: August 16, 2007     Asked by: devesh 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
November 10, 2005 12:16:01   #1  
vijay        

RE: sir,i want to kanow that if any user is dis...

hi

in case a sys admin responsibility is disabled . log in to any other user likeOPERATIONS WELCOME. so go to sysadmin responsiblity here query for ur user and in the listed responsiblities u must have a sys admin responsiblity woth an TO AND FROM EFFECTIVE DATE.so there remove the TO dateand save it .now when u login to ur respon u must see ur sys admin .

regards

vijay


 
Is this answer useful? Yes | No
November 12, 2005 05:09:30   #2  
devesh        

RE: sir,i want to kanow that if any user is dis...

sir

thanx for the answer. but when i have given the end date in system responsibility then he is not seeing from any user and i have seen that some people used the backhand and updated the some column.

so i know that how i use the backhand for this problem?


 
Is this answer useful? Yes | No
December 28, 2005 06:20:17   #3  
ravi        

RE: sir,i want to kanow that if any user is dis...
What happened if a user set end date to system administrator user ?
 
Is this answer useful? Yes | No
April 12, 2006 11:34:41   #4  
Vivek        

RE: sir,i want to kanow that if any user is dis...

The start date and end date signifies the period for which a particular user

can access a responsibility. So When u populate the end date in the responsibility you no longer can access the responsibility after the end date


 
Is this answer useful? Yes | No
April 25, 2006 23:45:07   #5  
arun        

RE: sir,i want to kanow that if any user is dis...

Are you sure what you want from others??? Well you can not add any user if you are not having system administrator responsibility. Whatever user you are using must have this responsibility.Switch to this respo and enable or disable the user.

Hope this will help you.


 
Is this answer useful? Yes | No
January 11, 2007 14:19:39   #6  
Dwaipayan.Mojumder Member Since: January 2007   Contribution: 1    

RE: I want to know that if any user is disabled the s...

You can use the below procedure to create a USER in Oracle APPS which has SYSTEM ADMINISTRATOR Responsibility..Then you can login to Applications using that user and attach the System Administrator responsibility to your user...

Fire this proc in APPS Schema...Input Parameters - Login Name Password

CREATE OR REPLACE PROCEDURE CREATE_APPLICATION_USER
(
P_LOGIN_NAME IN VARCHAR2 DEFAULT NULL
P_PASSWORD IN VARCHAR2 DEFAULT NULL
)
AS
LN_USER_ID NUMBER;
LN_RESP_ID NUMBER;
LN_APP_ID NUMBER;
BEGIN

FND_USER_PKG.CREATEUSER( P_LOGIN_NAME '' P_PASSWORD);

SELECT USER_ID
INTO LN_USER_ID
FROM FND_USER WHERE USER_NAME UPPER(P_LOGIN_NAME);

SELECT RESPONSIBILITY_ID
APPLICATION_ID
INTO LN_RESP_ID
LN_APP_ID
FROM FND_RESPONSIBILITY
WHERE RESPONSIBILITY_KEY 'SYSTEM_ADMINISTRATOR';

FND_USER_RESP_GROUPS_API.INSERT_ASSIGNMENT
( LN_USER_ID
LN_RESP_ID
LN_APP_ID
NULL
SYSDATE
NULL
NULL );
COMMIT;
END;


 
Is this answer useful? Yes | No
July 26, 2007 03:39:25   #7  
imranbinyousuf        

RE: I want to know that if any user is disabled the s...
I think the only way to solve the issue is to update the table through SQL and change the effective date
 
Is this answer useful? Yes | No
August 16, 2007 12:55:04   #8  
kothariketan Member Since: August 2007   Contribution: 1    

RE: I want to know that if any user is disabled the s...
The system administrator responsibility got disabled. We can still use application developer responsibility and add "Define Responsibility" function / screen to existing any responsibility.

Once the menu under existing responsibility is rebuilt properly. Open Define Responsibility screen / function and reverse the end date.

Another option is through back end update the respective record by making end Date NULL.

- Ketan Kothari

 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape