Create users for other clients from client 000

Hello!
I have the following question:
What is the Tcode allows me to see all created users (perhaps wuth their password) in all clients from e.g. client 000?
Is it possible to create new users for other clients from client 000?
Thank you very much!
regards
Thom

<b>SU10 User Mass Maintenance</b>
SCUA Central User Administration
SCUM Central User Administration
SCUG Copy users
SU01/SUCOMP User Maintenance/User company address maintenance
SU01D User Display
SCUL Central User Management Log

Similar Messages

  • Error while creating user for a  domain

    i am developing a web-application which is hosted on tomcat server.
    it is creating domains and users at another remote domain server.
    localy it is working fine..
    but when i test it online..
    the problem is,
    sometimes it works fine ,the domains are being creted at remote server..
    but sometimes it delivers error that domain at remote server can not be created.
    Is it due to fact that theat some errornous code in the buffer of application have older versions of applications causing the error ?
    Code::
    if(strPlanId.equalsIgnoreCase("3")) {
                    //Create domain account  for planid=3 plantype=Cp
                    blnOK=false;
    passwordGS comes from database
    strUrl="http://sosync.net/sosync/admin?pwd="+passwordGS+"&action=user_createdomain&domain="+strSubDomain+".gosync.net&adminpassword=aspire3002&diskquota="+longdk;  
                    u=new URL(strUrl);
                    uc=(HttpURLConnection)u.openConnection();
                    code=uc.getResponseCode();
                    if(code == 200) {
                        rUrl="/TransCompleteServlet";
                        blnOK=true;
                        uc.disconnect();
                    } else {
                        rUrl="/GSView.jsp?page=GSError.jsp?REQ=Unknown";
                    if(blnOK) {
                        String strUrlUser="http://gosyncdesk.net/gosync/admin?pwd="+passwordGS+"&action=user_createuser&username="+strEmailId+"&password="+strPassword+"&domain="+strSubDomain+".gosync.net&communityname=Default&firstname="+user.getFirstName()+"&lastname="+user.getLastName();
                       URL u1=new URL(strUrlUser);
                    HttpURLConnection   uc1=(HttpURLConnection)u1.openConnection();
                        code=uc1.getResponseCode();
                        response1=uc1.getResponseMessage();
                        if(code == 200) {
                            rUrl="/TransCompleteServlet";
                            String strUrlTZ="http://gosyncdesk.net/gosync/admin?pwd="+passwordGS+"&action=user_setuserpreference&username="+strEmailId+"&domain="+strSubDomain+".gosync.net&name=web_timezone&value='"+timeZone+"'";
                            u=new URL(strUrlTZ);
                            uc=(HttpURLConnection)u.openConnection();
                            code=uc.getResponseCode();
                              if(code != 200) {
                               rUrl="/GSView.jsp?page=GSError.jsp?REQ=Unknown";
                        } else {
                            rUrl="/GSView.jsp?page=GSError.jsp?REQ=Unknown";
                            mailUtil.sendMail_admin("Error In Creating  User for the Domain","While creating domain for "+user.getEmail()+" user could not be created due to following reason: <BR> "+response1+"<br>GoSync UserName:"+strEmailId+"<br>GoSync Password:"+strPassword+"<br>GoSync Domain :"+strSubDomain+".gosync.net and URl String was :"+strUrlUser+"");
                }

    if the problem is caching try setting the useChasses to false
    uc.setUseCaches(false);

  • Create users for my application

    Hi! I'd like to make an administrative page so I can create users for my application. Let's say that I have following fields: username, first name, lasta name, password, etc.
    Does anyone have an example? Or a short description about what I have to do.
    Thanks a lot!

    Thanks Jes. I looked at that thread. As it's said there, I created my custom table of users and a function with 2 parameters(username and password).
    I was thinking to make a process which calls my function and take as parametres the (:P101_USERNAME,:P101_PASSWORD). I wrote some code in my function. But when I want to create the process, I got the next error:
    <b>ORA-06550: line 3, column 1: PLS-00103: Encountered the symbol "END" when expecting one of the following: := . ( % ; The symbol ";" was substituted for "END" to continue.</b>
    My function is this:
    create or replace function "AUTENTIFICATION"
    (p_username in VARCHAR2,
    p_password in VARCHAR2)
    return BOOLEAN
    is
    if p_username IS NULL or
    p_password IS NULL then
    return false;
    end if;
    if p_username NOT IN
    (select username
    from users) then
    return false;
    end if;
    if p_password NOT IN
    (select passw
    from users
    where username = 'p_username') then
    return false;
    end if;
    And in the PL/SQL Page Process I'm trying to put the following:
    <b>AUTENTIFICATION(:P101_USERNAME,:P101_PASSWORD) </b>, when I get the error.

  • Create user for CPS in _ UPPER CASE LETTERS _ if using JSM on SolMan

    only create users for CPS in UPPER CASE LETTERS if using JSM on SolMan
    Dear CPS Admins,
    If you plan to use Job Scheduling Management (JSM) on SAP Solution Manager together with CPS by Redwood please always create any users in CPS only with upper case letters to avoid issues in the communication between SolMan and CPS.
    The user creation for CPS is done in the UME (Java user administration, alias /useradmin).
    Actually the CPS user itself is only created in CPS during the first logon.
    Both CPS and the Java UME are case sensitive. So you can create users in uppercase, lowercase or mixed letters. But of course the system does still not allow duplicate names. So you can either create MUELLERP, MuellerP or muellerp - but not multiple of them.
    Now, if the SolMan communicates with CPS for Job Scheduling, the actual user name is taken in some kind of a "trusted RFC like" way and checked on the CPS system connected to the SolMan. If the current SAP user does not exist on CPS no activities are possible, neither in read mode (read existing CPS jobs) nor in write mode (change existing jobs or create new ones).
    Unfortunately the Solution Manager transmits the current user name to CPS only in upper case letter. So if the CPS user was not created in UPPERCASE letters in CPS the communication will fail. Therefore, think about creating CPS users in UME only in UPPERCASE letters. Changing this later is difficult to impossible.
    Best regards,
    Peter

    hi,
    I tried to reproduce your issue but I was not able to create a UME user with lower case letters.
    UME automatically converted the user name into upper case after saving. So even if I enter "cps" as user name UME stored the user name as "CPS".
    (maybe that happend because of the existing SU01-UME integration in our SolMan system)
    If UME would be case sensitive I would expect that it is possible to create the user "CPS", "cPs" and "cps".
    Regarding the SolMan-CPS connectivity:
    Transaction SU01 allows only upper case letters (in user name and alias). Since you're starting from an ABAP system only user names with upper case letters are supported. It's a technical constraint of the ABAP user management that user names consist of upper case letters only.
    Kind regards,
    Martin

  • Create users for teradata in ADAM / Acitve Directory

    Hi
    I was wondering if you could help me with the ability to create a user in AD / Adam? I am trying to write the powershell code to create users for Teradata connectivity. the manual process is to use adsiedit and create the users through groupof names class.
    This is what I have that is NOT working and was looking where to go from here.
    $dom=[ADSI]"LDAP://OU=Users,OU=dev,OU=tdev,dc=acme,dc=com"
    $obj = $dom.Create('GroupOfNames', 'CN=ASmith')
    $obj.SetInfo()
    any help would be greatly appreciated.
    Thank you
    John R Remillard 

    Hello,
    You should ask in the
    Windows PowerShell forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Needed validation when creating user for employee in HRUSER transaction

    hi All,
    I wanted to put validation in HRUSER TCode  when we are creating user for an employee by selecting exit module for user name and password
    in my scenario I want to remove the first alphabet of user name that is P and with that I want to set a default password can anyone suggest me includes.
    Please find the attached snap.

    Solved it for myself
    refer the link:
    Dear all,
    Regards,
    Siva

  • How to move pre-delivered configuration for MRS 610 from client 000 to 010

    We have installed MRS 610 SP 5 in client 000. How do i move the pre-delivered sap configuration from client 000 to client 010.
    Your responses will be highly appreciated
    thanks
    Anjum.

    Hi
    Not sure may be local client copy will work in your scenario Tcode SCCL
    Regards
    Uday

  • Create folders for other users

    I have a process that automatically generates folders based on events in the database using Advanced Queues. This process will work if I am creating folders for the user I am currently connected as.
    What I can't seem to do is use the system admin account to create folders in other users home folders. I get insufficient privilege errors when I use findPublicObject to return the users home directory. This seems to happen because the users home folder has a private ACL, it works if I make the home folder public but I don't really want to do that.
    Does anyone have a solution for this?

    Sure, here are two suggestions.
    1. If you want to create the folders in response to the AQ messages, and you want to do so independently of your application's normal security policies, you can use the system admin user to perform the operations, as long as you enable administration mode. Use LibrarySession.setAdministrationMode(true) to do this. Security will be bypassed until you turn this mode off.
    2. If you want to make the changes within the concept of your application security model, then modify the model so that your system admin user has access to everything that it needs to be able to update or delete. You can do this by modifying the ACLs on the objects in question.

  • Create user fails when used from SOAP UI

    Hello,
    I am using SOAP UI to create users using the Web services available in EBS.
    I am using the following URL: http://<server>:<port>/webservices/SOAProvider/plsql/fnd_user_pkg/
    I am able to create user when I use <load:X_UNENCRYPTED_USER_PASSWORD>pa55w0rd</load:X_UNENCRYPTED_USER_PASSWORD> in the SOAP Request.
    However, when I use <load:X_ENCRYPTED_USER_PASSWORD>pa55w0rd</load:X_ENCRYPTED_USER_PASSWORD>, the user creation fails with the following error:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <env:Fault xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <faultcode>SOAP-ENV:Server</faultcode>
    <faultstring>ServiceExecutionError : Error occured while executing the service.:oracle.apps.fnd.soa.util.SOAException: ServiceExecutionError: Exception returned from JCA Service Runtime. file:/c:/EBS/VIS/inst/apps/VIS_vm-oebs/soa/PLSQL/1495/LOAD_ROW.wsdl [ LOAD_ROW_ptt::LOAD_ROW(InputParameters) ] - WSIF JCA Execute of operation 'LOAD_ROW' failed due to: Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    [Caused by: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    ; nested exception is:
         ORABPEL-11811
    Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    Check to ensure that the API is defined in the database and that the parameters match the signature of the API. Contact oracle support if error is not fixable.
         at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.handleRequest(JCAHandler.java:158)
         at oracle.apps.fnd.soa.provider.SOAProvider.processMessage(SOAProvider.java:272)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956)
         at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:358)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:396)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:355)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    org.collaxa.thirdparty.apache.wsif.WSIFException: file:/c:/EBS/VIS/inst/apps/VIS_vm-oebs/soa/PLSQL/1495/LOAD_ROW.wsdl [ LOAD_ROW_ptt::LOAD_ROW(InputParameters) ] - WSIF JCA Execute of operation 'LOAD_ROW' failed due to: Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    [Caused by: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    ; nested exception is:
         ORABPEL-11811
    Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    [Caused by: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    Check to ensure that the API is defined in the database and that the parameters match the signature of the API. Contact oracle support if error is not fixable.
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:620)
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeInputOnlyOperation(WSIFOperation_JCA.java:723)
         at oracle.tip.adapter.client.JCABindingOperation.invokeWsifProvider(JCABindingOperation.java:259)
         at oracle.tip.adapter.client.JCABindingOperation.executeInputOnlyOperation(JCABindingOperation.java:152)
         at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.invoke(JCAHandler.java:256)
         at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.handleRequest(JCAHandler.java:149)
         at oracle.apps.fnd.soa.provider.SOAProvider.processMessage(SOAProvider.java:272)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956)
         at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:358)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:396)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:355)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: ORABPEL-11811
    Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    [Caused by: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    Check to ensure that the API is defined in the database and that the parameters match the signature of the API. Contact oracle support if error is not fixable.
         at oracle.tip.adapter.db.exceptions.DBResourceException.createEISException(DBResourceException.java:469)
         at oracle.tip.adapter.db.sp.SPUtil.createResourceException(SPUtil.java:172)
         at oracle.tip.adapter.db.sp.AbstractStoredProcedure.execute(AbstractStoredProcedure.java:116)
         at oracle.tip.adapter.db.sp.SPInteraction.executeStoredProcedure(SPInteraction.java:134)
         at oracle.tip.adapter.db.DBInteraction.executeStoredProcedure(DBInteraction.java:1014)
         at oracle.tip.adapter.db.DBInteraction.execute(DBInteraction.java:232)
         at oracle.tip.adapter.apps.AppsInteraction.execute(AppsInteraction.java:176)
         at oracle_tip_adapter_apps_AppsInteraction_Proxy.execute()
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:472)
         ... 26 more
    Caused by: Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.4.0) (Build 080602)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    Error Code: 6510
         at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:282)
         at oracle.tip.adapter.db.sp.SPUtil.createResourceException(SPUtil.java:162)
         ... 33 more
    Caused by: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:184)
         at oracle.jdbc.driver.T4CCallableStatement.execute_for_rows(T4CCallableStatement.java:873)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1161)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3001)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3093)
         at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4286)
         at oracle.oc4j.sql.proxy.PreparedStatementBCELProxy.execute(PreparedStatementBCELProxy.java:333)
         at oracle.tip.adapter.db.sp.AbstractStoredProcedure.execute(AbstractStoredProcedure.java:108)
         ... 32 more</faultstring>
    </env:Fault>
    </env:Body>
    </env:Envelope>

    Hello,
    I am using SOAP UI to create users using the Web services available in EBS.
    I am using the following URL: http://<server>:<port>/webservices/SOAProvider/plsql/fnd_user_pkg/
    I am able to create user when I use <load:X_UNENCRYPTED_USER_PASSWORD>pa55w0rd</load:X_UNENCRYPTED_USER_PASSWORD> in the SOAP Request.
    However, when I use <load:X_ENCRYPTED_USER_PASSWORD>pa55w0rd</load:X_ENCRYPTED_USER_PASSWORD>, the user creation fails with the following error:
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <env:Fault xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
    <faultcode>SOAP-ENV:Server</faultcode>
    <faultstring>ServiceExecutionError : Error occured while executing the service.:oracle.apps.fnd.soa.util.SOAException: ServiceExecutionError: Exception returned from JCA Service Runtime. file:/c:/EBS/VIS/inst/apps/VIS_vm-oebs/soa/PLSQL/1495/LOAD_ROW.wsdl [ LOAD_ROW_ptt::LOAD_ROW(InputParameters) ] - WSIF JCA Execute of operation 'LOAD_ROW' failed due to: Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    [Caused by: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    ; nested exception is:
         ORABPEL-11811
    Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    Check to ensure that the API is defined in the database and that the parameters match the signature of the API. Contact oracle support if error is not fixable.
         at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.handleRequest(JCAHandler.java:158)
         at oracle.apps.fnd.soa.provider.SOAProvider.processMessage(SOAProvider.java:272)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956)
         at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:358)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:396)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:355)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    org.collaxa.thirdparty.apache.wsif.WSIFException: file:/c:/EBS/VIS/inst/apps/VIS_vm-oebs/soa/PLSQL/1495/LOAD_ROW.wsdl [ LOAD_ROW_ptt::LOAD_ROW(InputParameters) ] - WSIF JCA Execute of operation 'LOAD_ROW' failed due to: Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    [Caused by: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    ; nested exception is:
         ORABPEL-11811
    Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    [Caused by: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    Check to ensure that the API is defined in the database and that the parameters match the signature of the API. Contact oracle support if error is not fixable.
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:620)
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeInputOnlyOperation(WSIFOperation_JCA.java:723)
         at oracle.tip.adapter.client.JCABindingOperation.invokeWsifProvider(JCABindingOperation.java:259)
         at oracle.tip.adapter.client.JCABindingOperation.executeInputOnlyOperation(JCABindingOperation.java:152)
         at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.invoke(JCAHandler.java:256)
         at oracle.apps.fnd.soa.provider.services.jca.JCAHandler.handleRequest(JCAHandler.java:149)
         at oracle.apps.fnd.soa.provider.SOAProvider.processMessage(SOAProvider.java:272)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doEndpointProcessing(ProviderProcessor.java:956)
         at oracle.j2ee.ws.server.WebServiceProcessor$1.run(WebServiceProcessor.java:358)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:396)
         at oracle.j2ee.ws.server.WebServiceProcessor.invokeEndpointImplementation(WebServiceProcessor.java:355)
         at oracle.j2ee.ws.server.provider.ProviderProcessor.doRequestProcessing(ProviderProcessor.java:466)
         at oracle.j2ee.ws.server.WebServiceProcessor.processRequest(WebServiceProcessor.java:114)
         at oracle.j2ee.ws.server.WebServiceProcessor.doService(WebServiceProcessor.java:96)
         at oracle.j2ee.ws.server.WebServiceServlet.doPost(WebServiceServlet.java:194)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: ORABPEL-11811
    Error while trying to prepare and execute an API.
    An error occurred while preparing and executing the FND_USER_PKG.LOAD_ROW API. Cause: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    [Caused by: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    Check to ensure that the API is defined in the database and that the parameters match the signature of the API. Contact oracle support if error is not fixable.
         at oracle.tip.adapter.db.exceptions.DBResourceException.createEISException(DBResourceException.java:469)
         at oracle.tip.adapter.db.sp.SPUtil.createResourceException(SPUtil.java:172)
         at oracle.tip.adapter.db.sp.AbstractStoredProcedure.execute(AbstractStoredProcedure.java:116)
         at oracle.tip.adapter.db.sp.SPInteraction.executeStoredProcedure(SPInteraction.java:134)
         at oracle.tip.adapter.db.DBInteraction.executeStoredProcedure(DBInteraction.java:1014)
         at oracle.tip.adapter.db.DBInteraction.execute(DBInteraction.java:232)
         at oracle.tip.adapter.apps.AppsInteraction.execute(AppsInteraction.java:176)
         at oracle_tip_adapter_apps_AppsInteraction_Proxy.execute()
         at oracle.tip.adapter.fw.wsif.jca.WSIFOperation_JCA.executeRequestResponseOperation(WSIFOperation_JCA.java:472)
         ... 26 more
    Caused by: Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.4.0) (Build 080602)): oracle.toplink.exceptions.DatabaseException
    Internal Exception: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
    Error Code: 6510
         at oracle.toplink.exceptions.DatabaseException.sqlException(DatabaseException.java:282)
         at oracle.tip.adapter.db.sp.SPUtil.createResourceException(SPUtil.java:162)
         ... 33 more
    Caused by: java.sql.SQLException: ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "APPS.FND_SSO_MANAGER", line 248
    ORA-01403: no data found
    ORA-06512: at "APPS.FND_USER_PKG", line 525
    ORA-06512: at "APPS.FND_USER_PKG", line 663
    ORA-06512: at line 1
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.java:184)
         at oracle.jdbc.driver.T4CCallableStatement.execute_for_rows(T4CCallableStatement.java:873)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1161)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3001)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3093)
         at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4286)
         at oracle.oc4j.sql.proxy.PreparedStatementBCELProxy.execute(PreparedStatementBCELProxy.java:333)
         at oracle.tip.adapter.db.sp.AbstractStoredProcedure.execute(AbstractStoredProcedure.java:108)
         ... 32 more</faultstring>
    </env:Fault>
    </env:Body>
    </env:Envelope>

  • Error in creating user for solaris

    Hi.....
    I am using IDM 6.0 version and configured resource solaris in IDM...but when tried to assign a user to solaris....the user is getting created in solaris box and resource exit for that user...but when tried to click on user for display or to update getting the Error
    ERROR:Unresolved rule: getDefaultShell.
    I dont know what to do...can any one help me please.....

    I got solution to my question i had to import shellrule file from /sample directory to IDM.

  • How to create users for iFS9R2???

    On iFS9R1 and earlier it was possible to create users from the web GUI using an administrative user's account. On iFS9R2 it wasn't possible, I only could create groups or folders, there wasn't even a menu entry under "new".
    Or did I miss or faulty configured something?
    +Lutz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Matt,
    I'm using the iFS credential manager. And yes, I can create users using the iFS Manager tool. But with earlier releases it was also possible to create users from the iFS web GUI. Strange thing is that from the iFS Manager it is not possible (at least I didn't find one right now) to delete users, from the web GUI it is!
    Anyway, seems the best way would be OID as this is also be used by the new iAS and it might avoid the need for having two seperate user managements.
    Thanks for the hint!
    +Lutz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to create users for B2B console in SOA Suite 11g?

    Hi,
    I have installed SOA Suite 11g and created a new user in weblogic server and assigned groups Deployers, Monitors & Operators. On trying to login(http://hostname:port/b2bconsole) using this new user, im not able to login and the below error is logged.
    "There are no trading partners for this user".
    Can someone plesae guide me on how to create a new user for B2B as i dont want to grant adminstrators group to developers.
    Thanks,

    Hi,
    Please login as the weblogic server boot user into b2bconsole and then go to users tab of the host trading partner
    and search for the newly added user [ provide full username ]
    and then assign the role as administrator / monitor from there.
    once this is done.. the newly added user should be able to login to the b2bconsole..
    monitors have read only access and less priveledges..
    Regards,
    Vijay

  • Create file for export data from Essbase

    I wish to create dynamically CalcScript for an unloading of the data from Essbase.
    For this purpose I have created variables for each measurement.
    How to create procedure for generate a file with my variables?
    Thanks.

    Hi,
    There are a number of ways of doing this, you could use the odiOutFile tool and write your script into the text, replacing parts of the text with your ODI variables.
    Or you can hold the script in say a db table or file and then create an interface to write a file, it should replace the variable text with your ODI variables if you declare them in a package.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Why User Define Exception range from -20,000 to -20,999

    Hi,
    Can any one told me why we are using user define exception as ( -) 'Negative' range from -20,000 to -20,999. Why not Positive.
    Thanks

    Hi
    Oracle error codes are negatives.
    Ott Karesz
    http://www.trendo-kft.hu

  • Admin can create user for specific company

    Hi all,
    I have requirement to provide authoriaztion to 3 basis admin in the way that  they can use su01, pfcg or any basis related tcode but one should be restricted to one company say 'A' only... i.e. I have 3 basis admin A, B and C  on single system and 3 comanies say DEF, PQR and XYZ .  Now A can create use id for DEF company only...same for the rest of the user and company..
    Is it possible n what way ?
    Rgds
    D L

    Of course this can be done.
    Here you would be using the S_USER_GRP authorization object.
    Giving access this authorization will allow user A to only manage users in group DEF
    S_USER_GRP
    ACTVT 02
    GRP 'DEF'
    Giving access this authorization will allow user C to only manage users in group XYZ
    S_USER_GRP
    ACTVT 02
    GRP 'XYZ'
    Create user groups via transaction SUGR.
    Read more at:
    http://help.sap.com/saphelp_nw70/helpdata/EN/fa/f63f4222fab16be10000000a155106/frameset.htm
    Good luck
    Regards Fredrik

Maybe you are looking for

  • Pre-Approved Credit Check Problem

    Okay. This is really a god awful nightmare. I am from Washington D.C. and I bought my phone in Boise, ID. At the store the gentleman asked me if i wanted to do the credit check there to save me a trip if I didn't get approved. I agreed and was approv

  • Calling Oracle Stored Procedure through COBOL

    I am calling a Oracle Stored Procedure through COBOL program. Here is the procedure that is in Oracle. PROCEDURE sp_sel_m_event_subs_profile ( eventID IN EventIDTyp, subscribed IN NUMBER, v_profileRef OUT profileRefWithDSID_cv IS BEGIN sp_check_event

  • Airport Issues

    Hey all, I got a weird problem with my airport. I have a Aztech Wireless router HW550-3G, I have setup a home network with 2 PC's and my Macbook. The issue in my mac is that each time I stop using internet or the computer goes into sleep, I have to t

  • Where is the cheapest place to buy an iPad 1?

    I know that the first iPad is getting older  now, which means lower prices (hopefully). Does anyone know where I can buy a new and legit iPad 1 for cheap?

  • Problem with RPAD

    Hi friends i am having a problem with RPAD i had written a procedure for sending emails with the message body i am alligning teh columns using RPAD(Variable name,length(Variable_name)+5,' ') . For some particular columns it is working fine but for so