Problem calling web service: Error while getting the ORACLE user account

Hi All!
I was able to call the service EGO_ITEM_PUB-PROCESS_ITEM, but after implemented some patches, suddenly I get this error as result:
- <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
- <env:Body>
- <OutputParameters xmlns="http://xmlns.oracle.com/apps/ego/soaprovider/plsql/ego_item_pub/process_item__1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<X_INVENTORY_ITEM_ID xsi:nil="true" />
<X_ORGANIZATION_ID xsi:nil="true" />
<X_RETURN_STATUS>U</X_RETURN_STATUS>
<X_MSG_COUNT>1</X_MSG_COUNT>
<X_MSG_DATA>Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator.</X_MSG_DATA>
</OutputParameters>
</env:Body>
</env:Envelope>
Any ideas?
Thanks,
Konrad

hsawwan wrote:
Hi,
I was able to call the service EGO_ITEM_PUB-PROCESS_ITEM, but after implemented some patches, What are those patches?
# Patch 8407693:R12.TXK.B ISG: Service Generation Failure - Java Compiler Could Not be Found
# Patch 8459663:R12.OWF.B : Mandatory Consolidated One-Off Fixes for ISG on Top of 12.1.1
# Patch 8916358:R12.OWF.B : Service Timeout When Invoking Services Deployed to Integrated SOA Gateway
# Patch 9349321:R12.OWF.B : Issue with item Bulk Load in Oracle Product Hub PIP 2.4
# Patch 9446625:R12.FND.B : 1OFF:8995921:12.1.1:12.1.1:PERF : LoginModules Performance Issue
# Patch 9070077:R12.OWF.B : 1OFF:9045280:12.1.1:12.1.1:Invoking a Web Service Requires NLS Lang When It Should be Optional
# Patch 9153106:R12.OWF.B : IREP_Parser.PL Exits with GETPWUID Function IS Unimplemented in PARSER.PM -> Wichtig für ISG (für custom pl/sqls im ISG)
# Patch 9004712:R12.OWF.B : One-Off for IREP PARSER on Top of Oracle E-Business Suite Release 12.1.1 -> Wichtig für ISG (für custom pl/sqls im ISG)
IAS:
# Patch 8607523 for the AS version 10.1.3.4
Oracle Support told me that I need this patches because of some other problem (generating wsdl and deploy for BOM_BO_PUB package does not work in my environment) and since that, the process_item call stopped working!
btw: The EGO_ITEM_PUB-PROCESS_ITEM call for an existing item still works (I can modify the description), but creating a new item does not work anymore. Here are the parameters I send to the web service:
Header:
<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken>
<wsse:Username>sysadmin</wsse:Username>
<wsse:Password
Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">sysadmin</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
<q0:SOAHeader/>
Body:
<q1:InputParameters>
<q1:P_API_VERSION>1.0</q1:P_API_VERSION>
<q1:P_INIT_MSG_LIST>T</q1:P_INIT_MSG_LIST>
<q1:P_COMMIT>T</q1:P_COMMIT>
<q1:P_TRANSACTION_TYPE>CREATE</q1:P_TRANSACTION_TYPE>
<q1:P_ITEM_NUMBER>KHR_WS_05</q1:P_ITEM_NUMBER>
<q1:P_DESCRIPTION>desc2</q1:P_DESCRIPTION>
</q1:InputParameters>
Thanks,
Konrad

Similar Messages

  • ORA-20160: Encountered an error while getting the ORACLE user account.

    when users trying to apply for the leave . Once they apply for the leave and the respective manager approves it.
    They get an notification mail with the error message The changes were not applied because ORA-20160: Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator. ORA-06512: at "APPS.ALR_PER_ABSENCE__800_53447_IAR", line 3 ORA-04088: error during execution of trigger 'APPS.ALR_PER_ABSENCE__800_53447_IAR'
    EBS : 12.1.2
    Database : 11.2.0

    We are also facing the same issue , with the following error.
    The Changes were not applied because ORA-20160: Encountered an error while getting the ORACLE user account for your concurrent request, Contact your system administrator. ORA-06512: at “ APPS.ALR_PAY_ELEMENT_801_53338_IAR”, line 1 ORA-04088: error during execution of the trigger ‘APPS.ALR_PAY_ELEMENT_801_53338_IAR’
    Dear Hussein ,
    As per your suggestion , if we disable the trigger , does it workflow goes ahead without any problems ?
    By Disabling the trigger , what would be the impact ? I mean does we are going to loose the data that was supposed to be updated the trigger.
    And basically please educate me . what is the use of this APPS.ALR_PAY_ELEMENT_801_53338_IAR’ ?
    Regards
    Raghu

  • Error while getting the ORACLE user account for your concurrent request

    Hi ,
    When I am submitting the Concurrent Program from OAF page Iam getting
    Error
    Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator.
    When we will face this error.
    Not able to submit the Request
    Krishna

    Krishna
    Try like this
    public int submitCPRequest(String shipmentId) {
    System.out.println("into submitCPRequest");
    try {
    OAApplicationModule am = pageContext.getApplicationModule(webBean) ;
    OADBTransaction transaction = am.getOADBTransaction();
    Connection conn = transaction.getJdbcConnection();
    ConcurrentRequest cr = new ConcurrentRequest(conn);
    cr.setDeferred();
    String applnName = new String("XXAPL"); //Application that contains the concurrent program
    System.out.println("ApplName"+ applnName);
    String cpName = new String("SHIP_REQ"); //Concurrent program name
    System.out.println("Concc Name"+ cpName);
    // String cpDesc = new String("Shipping Request"); // concurrent Program description
    // Pass the Arguments using vector
    // Here i have added my parameter headerId to the vector and passed the
    //vector to the concurrent program
    Vector cpArgs = new Vector();
    cpArgs.addElement(shipmentId);
    System.out.println("Args"+ cpArgs);
    After this it is going into exception
    // Calling the Concurrent Program
    int requestId = cr.submitRequest(applnName, cpName, null, null, false, cpArgs);
    System.out.println("Req Id"+ requestId);
    tx.commit();
    return requestId;
    catch (SetDeferredException e)
    throw new OAException("SetDeferredException " + e.getMessage(),OAException.ERROR);
    catch (RequestSubmissionException e) {
    System.out.println("Into Exception");
    OAException oe = new OAException(e.getMessage());
    oe.setApplicationModule(this);
    throw oe;
    }Thanks
    AJ

  • Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator

    Dear Techies,
    We have registered an Extra Information Type as self service OAF page and did some validations using user hook which are working fine. But for some requests EIT creation page is throwing below errors.
    1. Encountered an error while getting the ORACLE user account for your concurrent request. Contact your system administrator.
    2. An unexpected situation occurred while executing routine FND_DATA_SECURITY.GET_SECURITY_PREDICATE_HELPER.The cause was: The parameter 'p_object_name' cannot be 'GLOBAL'.
    System throws these errors whenever user hook suppose to throw our customized validation messages.Since we are at UAT instance, we are bouncing apache and oacore to get rid of these errors every time they appear. But we cannot bounce once it is moved to production.
    Kindly share some ideas  to fix these errors as we are very close to Go-Live and we are facing this issue with all EIT's and SIT's.
    Thanks and Regards
    Dileep Kumar.

    Hi Mahesh,
    Thanks for reply.
    I have gone through the link that you have suggested. But our EIT user hook validations doesn't  have any code related to submission of concurrent programs. More over our error is not stable. If we bounce the apache and oacore, the system will work fine without unexpected errors for some time. We are not even able to replicate these errors.
    Thanks and Regards
    Dileep Kumar.

  • Error while starting the Oracle BI Server

    Hi ,
    I am getting the services.msc error while starting the Oracle BI Server as -
    Error handling the control request.
    Please help me out ..
    Thanks and Regards ,

    It is actually Windows services error that I am facing ....
    while starting the BI server after making any changes to NQS config file ..
    Could not start the Oracle BI Server service on Local Computer
    Error 1064: An exception occured in the service when handling the control request
    Message was edited by:
    user460211
    Message was edited by:
    user460211

  • SharePoint 2013 web service: Error while sending claim based authentication request (The corresponding SID in the domain is not part of the intended account type)

    We are using .asmx services for SharePoint features such as comments, and rating.
    Service
    Feature   used
    http://<<hostname>>/_vti_bin/socialdataservice.asmx
    Commenting, Rating
    http://<<hostname>>/_vti_bin/UserProfileService.asmx
    For out of box workflows
    In SharePoint 2013,
    SharePoint – 80  web application is on claims based mode and user is logging in with windows authentication. With logged-in client context used to call SharePoint's default web service, we are getting below error message from
    web service (Social data and user profile services).
    Server was unable to process request. ---> The corresponding SID in the domain is not part of the intended account type.
    When the service is accessed using console application with Visual Studio credentials (logged in user), we are able to access the service. Below is the code snippet
    using   (SocialDataService
    service = new  
    SocialDataService())
                      service.Credentials =
    CredentialCache.DefaultCredentials;
    SocialCommentDetail detail =   service.AddComment("<<url>>",
      "Test Comment",
    null,  
    null);
    Are SharePoint 2013 web services not supporting request coming with claim based authentication web application?
    Thanks, Pratik Agrawal (MAQ Software)

    While this applies to 2010, I believe the same is true with 2013:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/925e5f46-317f-46d3-bc55-c67f07eb2372/call-sharepoint-web-services-using-claimbased-authentication?forum=sharepointgeneralprevious
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Problem call Web Service SAML on PI 7.0

    Hi experts,
    I have a problem very estrange on one scenario and maybe somebody could help me:
    Our PI version is 7.0.
    The BPM has got the following steps:
    - Call WebService for get the SAML. Message Synchronous with request and response Authentification.
    - We add the Authentification Response on Envelope message.
    - Call web Service with Envelope, inside of this one there is the Authentification (step 1).
    The las Web Service always returns that the Authentification is error.
    We execute the same steps manually using SAOPGui program ( a free program for test WebService ) and the same steps works.. and the structures are the same, but on PI 7.0 never works.
    We researh on forums and we have seen that the SAML Authentification is soported only for PI 7.1.
    Could anybody confirm it? It is possible use SAML Authentification on PI 7.0? Are there other process to execute a SAML WebService using PI 7.0?
    Any response or any idea will be very appreciated.
    Thank you very much...
    Regards,
    Gemma

    It is possible use SAML Authentification on PI 7.0?
    at least the help section on 7.0 mentions the use of SAML...check this link
    http://help.sap.com/saphelp_nw70/helpdata/EN/47/2388909a1d2de9e10000000a1553f7/frameset.htm
    Regards,
    Abhishek.

  • Calling Web Service Error?

    Hello all,
    I've created an LDAP Query Process in LC Workbench and when calling it as a Web Service from my form I'm getting an "Error attempting to read from file" error.
    I did do a search, and disabled the security for this process. Which didn't help at all. Is there perhaps an option I need to change in the 'short-lived' process area, under 'transaction settings'?
    Any help would be appreciated.
    Thanks.

    By default security is set on for Web Services in LiveCycle. Depending on which client you are using will determine whether you can leave security on/off. Acrobat/Reader 9 added support for secure web services. Meaning when the web service is called a dialog wil appear to allow you to enter valid credentials. If you are using an earlier client they do not support secure web services so it will just sit there.
    You can disable security through the adminui. Look under Services/Applications and Services/Service Management and search for your particular service. Once it is located, click on the Security tab. There are two things you need to be concerned with. First is to disable security. Second, in the runAs area, check the box that says Specify RunAs then choose System in the dropdown. Don't forget to save. The RunAs parameter tells the system that when your service makes calls to other services to use the credentials specified; otherwise, you will have to turn security on all other services that your's is calling.

  • Problem calling web service from OIM

    Hello,
    We have a requirement to get the department name from a web service call and populate the department name on the usr form based on the deptid.
    We created the java web service client class (got the jar file and put it in the JavaTasks directory on OIM server). We unit tested this code successfully from our desktop.
    Then we created the process task in the design console to call the client class method to get the deptname based on the deptid.
    We got a value of "exception" returned from the web service call.
    When we telnet from OIM to the web server, we got "connected to..." followed by "Connection closed by foreign host".
    How can we verify that OIM can talk to the web server?
    Please help.
    Thanks
    Khanh
    Edited by: user12049102 on May 5, 2010 1:06 PM
    Edited by: user12049102 on May 5, 2010 1:49 PM

    We knew that we can make the web service call from the command line. So, we wrote a shell script that calls the web service jar file and it worked.
    It's not elegant but we couldn't figure out why we cannot make the web service call directly from OIM.

  • ADF page calling Web Service with multiple params the right way

    Hello,
    I am using JDev 11.1.1.4.0.
    I have an email notification web service that takes 4 parameters, from, to, subject and body. What I need to do is at the end of each 'Commit', call this web service to send notification to a group of audiences telling them a new record has been created. Following are steps I took to make it work:
    1. Created a web service data control using the email notification WSDL.
    2. Drag-and-Drop the data control on jspx page as ADF Parameter form.
    3. Set Panel Form Layout's Visible property to 'False' so the controls doesn't show.
    4. In a backingbean where method 'onSave()' is, I put the code to call the web service.
    // in onSave() method after successful commit
          ValueExpression veFrom =
              efactory.createValueExpression(elctx, "#{bindings.from.inputValue}", Object.class);
          veFrom.setValue(elctx, "[email protected]");
          ValueExpression veTo =
              efactory.createValueExpression(elctx, "#{bindings.to.inputValue}", Object.class);
          veTo.setValue(elctx, "[email protected]");
    // omitted rest of the params for brevity
          OperationBinding method = bindings.getOperationBinding("process");
          method.execute();This code works, but I am not sure if I am doing it right. For some reason, there is a better way of achieving what I need.
    Many thanks in advance for your candid comments and suggestions.
    Bones Jones
    Edited by: Bones Jones on Apr 29, 2011 6:44 AM

    Hi,
    As you have dropped a method in the JSPX page as a parameter form, it adds unnecessary UI components, that you will NOT be using.
    Instead of making the panelFormLayout visible property to false, delete it from the UI page.
    Thus, you would have only the required method binding and the parameters defined as attribute values in the pageDef - which is as expected.
    While deleting the panelFormLayout, delete it manually from the page source and doNOT delete thru the structure pane as it would delete the bindings as well.
    Thanks,
    Navaneeth

  • Problems with FL Studio: "Error while creating the ASIO driver."

    I'm trying to use ASIO with FL Studio with my SB Live 24-Bit USB sound card. However, whenever I select "Creative ASIO USB" as my output device, I get the message "Insufficient USB Bandwidth. This device will reset to its default ASIO settings.", followed by "Error while creating the ASIO driver."
    I've tried unplugging all other USB devices, switching USB ports, using a PCMIA USB 2.0 card, using Monster USB cables; all to no avail. It seems to me that there is plenty of USB bandwidth available but ASIO simply refuses to work.
    Here are my laptop's specs (it's ancient but still good enough to run FL Studio):
    P4 3.40GHz HT
    1024MB PC3200 DDR RAM
    SB Live 24-Bit USB sound card
    128MB ATI Mobility Radeon 9700
    Any suggestions?

    So I guess no one could help me then?
    It's OK, though, because I figured out the problem on my own. I had to change the "Device Control" settings in the Control Panel from 16 to 24-bit. Don't know why this would affect USB bandwidth, but whatever.

  • Plumtree ob dispatcher service error - while starting the service

    Could not start the plumtree job dispatcher service service on local computer
    Error 1069: The service did not stsrt due to a logon failure

    Hi Ray,
    I assuming you are on 5.0.2. If so, please refer to chapter 3(Pre-installation) of the install document, specifically the setup of the automation server user. The stated error indicates that the automation user info you entered into the installer does not match up with the entries in the pre-install steps.
    Hope that helps.
    Vasanth

  • Error while running the Oracle Text optimize index procedure (even as a dba user too)

    Hi Experts,
    I am on Oracle on 11.2.0.2  on Linux. I have implemented Oracle Text. My Oracle Text indexes are fragmented but I am getting an error while running the optimize_index error. Following is the error:
    begin
      ctx_ddl.optimize_index(idx_name=>'ACCESS_T1',optlevel=>'FULL');
    end;
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CTX_DDL", line 941
    ORA-06512: at line 1
    Now I tried then to run this as DBA user too and it failed the same way!
    begin
      ctx_ddl.optimize_index(idx_name=>'BVSCH1.ACCESS_T1',optlevel=>'FULL');
    end;
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CTX_DDL", line 941
    ORA-06512: at line 1
    Now CTXAPP role is granted to my schema and still I am getting this error. I will be thankful for the suggestions.
    Also one other important observation: We have this issue ONLY in one database and in the other two databases, I don't see any problem at all.
    I am unable to figure out what the issue is with this one database!
    Thanks,
    OrauserN

    How about check the following?
    Bug 10626728 - CTX_DDL.optimize_index "full" fails with an empty ORA-20000 since 11.2.0.2 upgrade (DOCID 10626728.8)

  • Error while doing the Oracle 9i Database Installation

    PROBLEM ONE
    While installing the Oracle Database 9i on Windows 2000 Server with 256 MB Ram, I got the following error
    Windows - Wrong Volume
    The wrong volume is in the drive. Please insert volume ORCL9011_1 into drive E:.
    This message occured when percentage done was 100%. It was copying visualsdo.exe
    PROBLEM TWO
    Then I deinstalled the Oracle 9i software and deleted the oracle folder from both the Windows Explorer as well as in the RegEdit.
    Again I started doing the installation...
    In Oracle Database Configuration Assistant, while it was installing "Adding Oracle JVM", I got the following error
    "Oracle Database Configuration Assistant: ERROR"
    "ORA-06576:not a valid function or procedure name"
    When I clicked Ignore I got the following error
    "Oracle Database Configuration Assistant: ERROR"
    "ORA-04021:timeout occured while waiting to lock object
    SYS.META-INF/MANIFEST.MF"
    Please let me know why this problem occured and what is the solution for this......
    If you need any information then please let me know
    With Regards
    Deepak

    You have too few RAM on your machine, even you could successfully create an instance, it's going to slow as hell.
    When you run DBCA to create database, instead of actually creating the database you could choose to dump the SQL scripts and files used for database creation to a directory. This way will give you a chance to modify pfile and reduce the SGA parameter. I believe the default SGA of instance created by DBCA is already beyond your RAM limit.

  • Fully_qualified_remote_host_name while Configuring the oracle User's Enviro

    Hello All,
    I am installing Oracle 11g R2 on HP-UX server.
    I am connected to the HP-UX server through putty.
    On the Quick Installation guide i reached the section "Configuring the oracle User’s Environment" and i have the below questions:
    In the below
    Enter the following command to ensure that X Window applications can display
    on this system:
    $ xhost fully_qualified_remote_host_name
    what is the fully_qualified_remote_host_name ? is it the IP address of the my own PC where i am connecting to the remote server? or the IP address of the server it self?
    and in the below example
    $ export DISPLAY=local_host:0.0 -- local host is the IP of the PC i am connecting from it to the server?
    Regards,

    Hi;
    In the below
    Enter the following command to ensure that X Window applications can display
    on this system:
    $ xhost fully_qualified_remote_host_name
    what is the fully_qualified_remote_host_name ? is it the IP address of the my own PC where i am connecting to the remote server? or the IP address of the server it self?
    and in the below example
    $ export DISPLAY=local_host:0.0 -- local host is the IP of the PC i am connecting from it to the server?If you use putty than you need to some program like VNCviwer or xming etc. to can see GUI screen on your desktop.Please check my previous post
    Re: 11gR2 Grid Infrastructure cannout launch installer OEL 5.5
    Still have some issue than update thread.
    Regard
    Helios

Maybe you are looking for

  • Connect MacBook to Mac Mini

    I bought my MacBook a year ago to replace my desktop PC and have been extremely satisfied with how easy it is to carry around campus. However, I've recently gotten more involved in gaming and the MacBook's graphics card is having a hard time keeping

  • ReturnListener doesn't work Jdev 11g

    Hi, I was testing the implementation of dialogs using jdeveloper 11g (window A launches window B). It appears that my returnListener code method (window A) doesn't fire after I close the dialog (window B). I'm launching the dialog from a link in a co

  • Why is Firefox running slow with version 17?

    Hello there I was wondering whether you could please assist me with an issue with version 17. I have recently updated to firefox 17 and i regret to advise that its running really really slow. I notice several other users have had similar issues as I

  • Provisioning Task Assignment

    There is a provisioning task say 'Provision Resource manually'. In the Assignment tab of the task the Target Type is 'Group User with Least Load'. There is a task assignment adapter attached and variables are mapped and in Ready status. Also there is

  • Modify the message in workflow emails

    Hello, I have a a criteria workflow that notifies an 'approver' whenever content is checked into Content Server. I want to customize the notification email that is sent to 'approver'. I talked to Oracle Support and they said they cannot provide suppo