JBO-28006. Error message parameters are {0=PS_TXN_seq}

When we run ADF program then error message display in log file.
reproduce step is below.>>
1.Create user sales_user, sales_runuser
2.create db object in sales_user
3.grant select, insert, update, delete on object to sales_runuser
4.deploy ADF program
5.run ADF program in sales_runuser
6.check log
Error Message is below.>>
cause error code is JBO-28006. Error message parameters are {0=PS_TXN_seq}
at oracle.jbo.PCollException.throwException(PCollException.java:36)
at oracle.jbo.pcoll.OraclePersistManager.createTable(OraclePersistManager.java:889)
at oracle.jbo.pcoll.OraclePersistManager.queryNextCollectionId(OraclePersistManager.java:1424)
Caused By: java.sql.SQLSyntaxErrorException: ORA-01031: Insufficient Privilege
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
I already research this reason and I found note.
ORA-01031: insufficient privileges JBO-28006: Could not create persistence table PS_TXN_seq [ID 1245894.1]
This Note's solution - add privileges (create table, create index, create sequence) to sales_runuser.
sales_runuser is ADF runtime user.
But we already have database object (ps_txn, ps_txn_seq) in sales_user.
sales_user is database object owner.
Our DBA don't want to add privileges (create table, create index, create sequence) to sales_runuser.
SO we tried grant db object and created synonym.
Script is below.>>
1.connect sales_ser
2.grant all on ps_txn, ps_txn_seq.
3.create synonym sales_runuser.ps_txn, sales_runuser.ps_txn_seq for sales_user.ps_txn, sales_user.ps_txn_seq.
restart Middleware Server.
But Error message still display.
We want to access synonym in ADF run user.
Is it possible or impossible?
Pls, Let me know correct answer.

You can set the configuration property jbo.server.internal_connection to direct the state management to use a different database connection than your application. Maybe this helps?
Documentation: http://docs.oracle.com/cd/E12839_01/web.1111/b31974/bcstatemgmt.htm#ADFFD1307
- Joonas

Similar Messages

  • Oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

    Dear Guru's,
    I am not able to solve the above issue for last couple of days.
    I am newbie to the webservice
    My Issue...
    I am using Jdeveloper 11.1.2.4.0 Release 2
    1. Using Jdev I built one small Web Service with two methods.
            While testing the Webservice...
                   I passed User Id as Parameter and it successfully return the values (user id, user name and description) from fnd_user table
    2. I created another application to consume the web service i created.
                   1. I added the webservice SOAP and added the method.
                   2. Created a jsf page and drag and drop the parameter and return values to the jsf page.
    3. While executing the created jsf page I received the error message as below
    "oracle.jbo.NoDefException: JBO-29114 ADFContext is not setup to process messages for this exception. Use the exception stack trace and error code to investigate the root cause of this exception. Root cause error code is JBO-25058. Error message parameters are {0=Attribute, 1=UserName, 2=UserName}"
    Even I know that this issue is repeated one in our forum, I was not able to solve this issue.
    Can anybody help to solve this issue.
    Thanks and Regards,
    Durai S E

  • Crystal Report: ERROR - Some parameters are missing values

              mine report it possesses a single parameter ....
              this is the example of like tries of to change the value set up in the report...
              ERROR: Some parameters are missing values
              thanks help...
              EXAMPLE:
              <%@ page import="com.crystaldecisions.report.web.viewer.*"%>
              <%@ page import="com.crystaldecisions.report.htmlrender.*"%>
              <%@ page import="com.crystaldecisions.reports.reportengineinterface.*"%>
              <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.*"%>
              <%@ page import="com.crystaldecisions.sdk.occa.report.data.*"%>
              <%@ page import="com.crystaldecisions.common.keycode.*"%>
              <%@ page import="java.util.*"%>
              <%
              try {
              IReportSourceFactory2 rptSrcFactory = new JPEReportSourceFactory();
              String report = "report/ReportParametro1.rpt";
              IReportSource reportSource = (IReportSource) rptSrcFactory.createReportSource(report,
              request.getLocale());
              Fields fields = new Fields();
              ParameterField pfield1 = new ParameterField();
              Values vals1 = new Values();
              ParameterFieldDiscreteValue pfieldDV1 = new ParameterFieldDiscreteValue();
              pfield1.setName("CICCIA");
              pfieldDV1.setValue("SELECT descrizione, validoDa, validoA FROM tariffari");
              pfieldDV1.setDescription("Query Dinamica....");
              vals1.add(pfieldDV1);
              pfield1.setCurrentValues(vals1);
              fields.add(pfield1);
              CrystalReportViewer viewer = new CrystalReportViewer();
              viewer.setReportSource(reportSource);
              // layout
              viewer.setOwnPage(true);
              viewer.setBestFitPage(true);
              viewer.setHasLogo(false);
              viewer.setHasRefreshButton(true);
              // group navigation
              viewer.setHasToggleGroupTreeButton(false);
              viewer.setDisplayGroupTree(false);
              // page navigation:
              viewer.setHasGotoPageButton(false);
              // print/export
              viewer.setHasExportButton(true);
              //viewer.setPrintMode(CrPrintMode.PDF);
              viewer.setPrintMode(CrPrintMode.ACTIVEX);
              viewer.setIgnoreViewStateOnLoad(true);
              viewer.setParameterFields(fields);
              viewer.setEnableParameterPrompt(false);
              viewer.refresh();
              viewer.processHttpRequest(request, response, getServletConfig().getServletContext(),
              out);
              viewer.dispose();
              }catch(Exception e){
              out.println("Errore " + e.getMessage());
              %>
              

    I am facing the same problem. After selecting an export option (PDF/RTF), the same error message is coming up.
              Also, what needs to be done for displaying export option of EXCEL?
              Thanks,
              Farzal

  • I'm running Mac OS X version 10.6.8 How come I get this error message "You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms." When I Try to download a FREE trail?

    I'm running Mac OS X version 10.6.8 How come I get this error message "You are running an operating system that Photoshop no longer supports. Refer to the system requirements for a full list of supported platforms." When I Try to download a FREE trail?

    Hi Brizill,
    Please refer to the help document below to understand the technical specifications for the same:
    System requirements | Photoshop
    Regards,
    Sheena

  • Getting error message " You are not authorized to access the migration tool "

    One of the users is noticed with error message " You are not authorized to access the migration tool " in SAP Cloud for Customer tenant. thanks

    Hello Raj,
    It seems that this user does not have proper authorization to perform Data Migration.
    You need to go to the WorkCenter View Assignment for this user under his access rights & need to assign him the workcenter "Business Configuration" & under it, also assign him relevant access to Data Migration.
    This shall fix the issue & the user shall not get this error while trying to perform Data Migration.
    Steps:
    1. Go to Workcneter: "Application and User Management => Business Users => Seerach for the suer who gets this error => Edit-> Access Rights => Click on Workcenter view Assignment tab & assign the above mentioned worokcenter access and save."
    Let me know for any further queries.
    BR
    Ankur

  • TS3274 I am getting the error message "you are not a part of the administrator group". How do I get rid of this

    I am getting the error message "you are not a part of the administrator group" when I try and set up my ipad and log in with my apple id. How can I bypass this error message?

    Firstly, I recommend to go to Central Administration > Security > Manage the farm administrators group > make sure that your account is listed.
    Yes, the account that I log into the server is a Farm Admin account
    Secondly, did you do the backup or restore operations with PowerShell command or through Central Administration?
    Used to be able to do it thru the CA, now I'm running PowerShell and using the scheduled tasks to run it when needed.
    If you are using PowerShell, I recommend to run SharePoint Management Shell as administrator.
    I'm able to run the backup with the account that is in the Farm Admin group.  as I have that setup as the PowerShell account to run under.
    If you are using Central Administration, I recommend to run Internet Explorer as administrator.
    I still get this error when I run IE as the log in to the server who is in the build in and the SPS Farm Admin Security group:
    You are not a local administrator. You must be a member of the Administrators group on the server that is running Central Administration to perform most backup and restore operations.

  • I keep getting the error message 'We are having trouble verifying your membership', though I've just renewed my license

    I keep getting the error message 'We are having trouble verifying your membership', though I've just renewed my license

    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )

  • Are you waiting to get error message, or are you toggling back and forth?

    Just curious of the 'technique' you are using. Are you waiting to get the "network connection was reset" error message or are you just quickly hitting the "i" and "m" keys back and forth?
    I've been doing a little bit of both with NO success.

    I clicked back and forth a couple of times and after the 7th or 8th time I would wait. It finally worked after 30 minutes of doing this. Hope you are up and runnung soon.:)

  • Error Message :Valuation area 1000 not yet productive with material ledger

    Dear Floks,
    I need some clarification to get rid of this error message and move further.
    While saving the PGI I am facing the follwoing error message: "Valuation area 1000 not yet productive with material ledger----
    The material ledger has been activated for the valuation area but
    material data has not yet been converted in theis valuation area."
    Plese respond with the solutions ASAP.
    Thanks in advance.
    Regards
    ANGKS

    Hello Padmaja,
    You will to check the following before activation the Val.area
    1) OMX1: Check if ML is active against the plant IF NOT
    2) Use tcode CKMSTART - Enter Val area - EXECUTE.
    Regards,
    Manoj Reddy

  • I received an oline fax, error message "You are not signed up for an appropriate enhanced pdf delivery option required for this request" How do I fix this?

    I received an oline fax, error message "You are not signed up for an appropriate enhanced pdf delivery option required for this request" How do I fix this?

    Hi howardw93055634,
    Please tell me where you are seeing this error message. It's not one that I'm familiar with as being related to Acrobat or Reader. Is it coming from your online fax service, or does it appear when you try to open the PDF file that you received in Acrobat or Reader?
    Best,
    Sara

  • TO JDEV TEAM: JBO-28020/JBO-28006 ERRORS

    Hi,
    I deploy a BC4J application (made with Jdev official) on an OC4J container 9.0.2. the application use a 9i data base.
    frequently, when we try to insert or update rows in viewObject, we have the following error :
    Application Error
    Return
    Error Message: JBO-28020: Erreur de passivation pour l'objet collection GrandeurView, ID de noeud 45
    Error Message: JBO-28006: Criation impossible de la table de persistance PS_Bdcorrel_BC4JModule_1
    oracle.jbo.PCollException: JBO-28020: Erreur de passivation pour l'objet collection GrandeurView, ID de noeud 45
    <>
    ## Detail 0 ##
    oracle.jbo.PCollException: JBO-28006: Criation impossible de la table de persistance PS_Bdcorrel_BC4JModule_1
    <>
    ## Detail 0 ##
    java.sql.SQLException: ORA-00955: Ce nom d'objet existe dij`
    <>
    This is a pressing issue, and I'd need an answer asap. Could anyone from the JDEV team please help me on this?
    Thanks a lot!

    Stephane:
    Could you send me the entire stack trace?
    It would also help if you can translate some of the "important" exception messages into English for me (sorry).
    Thanks.
    Sung

  • JBO-28020 / JBO-28006 ERRORS

    Hello,
    I deploy a BC4J application (made with Jdev official) on an OC4J container 9.0.2. the application use a 9i data base.
    frequently, when we try to insert or update rows in viewObject, we have the following error :
    Application Error
    Return
    Error Message: JBO-28020: Erreur de passivation pour l'objet collection GrandeurView, ID de noeud 45
    Error Message: JBO-28006: Criation impossible de la table de persistance PS_Bdcorrel_BC4JModule_1
    oracle.jbo.PCollException: JBO-28020: Erreur de passivation pour l'objet collection GrandeurView, ID de noeud 45
         <>
    ## Detail 0 ##
    oracle.jbo.PCollException: JBO-28006: Criation impossible de la table de persistance PS_Bdcorrel_BC4JModule_1
         <>
    ## Detail 0 ##
    java.sql.SQLException: ORA-00955: Ce nom d'objet existe dij`
         <>
    Can someone help me ?

    This is a pressing issue, and I'd need an answer asap. Could anyone from the JDEV team please help me on this?
    Thanks a lot! http://otn.oracle.com/products/jdev/htdocs/bc4j/bc4j_temp_tables.html
    This is a document describing the tables which is causing this error. It looks like you might want to change the location where these tables get created.
    Hope this helps,
    Rob

  • Error: Control parameters are not maintained in the current client

    Hi,
    We have recently installed IDES IS-H 6.04 - HEALTH CARE. In the SAP easy access menu when I go to Hospital>>Basic data administration>>Hospital structure>>Organizational Structure>>Organizational Unit>>Create it throws the following error message
    "Control parameters are not maintained in the current client"
    Any help on this would be greatly appreciated. I can't move ahead without getting to create an OU.
    Warm Regards,
    Prasoon Singh

    Hi Prasoon
    Are you starting from scratch?
    Was the client created after the activation of IS-H?
    For new installation I always recommend to activate the industry solution in client 000 and then to create the new clients as copy of 000.  It will bring you the configuration of the Institution 0001. If not, it's very hard to do all the customizing, specially the SD ones.
    It seams that you have nothing configured, try to do the copy, if not, probably an entry in transaction ON05 is missing.
    I hope it helps
    With best regards
    Matías

  • Error messages!  area(double, double) cannot be applied to ( )

    I keep getting these error messages:
    area(double,double) in Rectangle cannot be applied to ()
              return "Area: " + Rectangle.area() + "\tCircumference: " + Rectangle.perimeter(); ^
    perimeter(double,double) in Rectangle cannot be applied to ()
              return "Area: " + Rectangle.area() + "\tCircumference: " + Rectangle.perimeter();
    ^
    setSides(double,double) in Rectangle cannot be applied to (double)
              R.setSides(input.nextDouble());
    ^
    3 errors
    Tool completed with exit code 1
    Can anybody tell me why it is doing this? Thanks in advance!
    import java.util.Scanner;
    public class Rectangle
         public double length;
         public double width;
         public Rectangle()
              length = 0;
              width = 0;
         public double getSides()
              return length;
              return width;
         public void setSides(double length, double width)
              this.length = length;
              this.width = width;
         public double area(double length, double width)
              double area = length * width;
              return area;
         public double perimeter(double length, double width)
              double perimeter = (length * 2) + (width * 2);
              return perimeter;
         public String toString()
              return "Area: " + Rectangle.area() + "\tCircumference: " + Rectangle.perimeter();
         public static void main(String [] args)
              Rectangle R = new Rectangle();
              Scanner input = new Scanner(System.in);
              System.out.println("Enter radius: ");
              R.setSides(input.nextDouble());
              System.out.println(R.toString());
    }

    Looking at your code more, it looks like what you want to do when you call area is get the area of the Rectangle based on the length and width it already has stored, not what you pass it. So if you take out the parameters like this:
    public double area() {
         double area = length * width;
         return area;
    }It will use the member variables length and width to calculate area.

  • "Error Message" "There are currently no logon servers available to service the logon request"

    Full Error Message
    "(shared network name)is not accessible. you might not have permission to use this network resource. contact the administrator of this server to find out if you have access permissions. There are currently no logon servers available to service the logon
    request"
    When trying to enter via "Map Network Drive" and click "Connect using different credentials", once entering the credentials, error
    "The Network folder specified is currently mapped using a different user name and password. To connect using a different user name and password, first disconnect any existing mappings to this network share."
    As I am not particularly tech savvy, am not the one who set up this network drive, I dont want to interfere with it too much. I simply want to be able to get a basic understanding of the issue. We had set up a previous share, since deleted, that allowed
    us to have a shared folder to work on documents between the US and Ireland. This new share has been working fine up until yesterday, when we got the above error messages when trying to access the share. Later in the day, it just worked again. Today, I go to
    open the folder and the same error messages turned up, what could be going on??

    Hi Tomas,
    Did your computer join the domain? How did you access that shared resource?
    Please turn off your firewall temporarily and type the correct UNC address to access for test:
    \\servername\sharename \file_path
    If it doesn't work, use the IP address of the remote server when you try to connect to the network share.
    Meanwhile, please read this reference:
    Resolving Network Issues-You Might Not Have Permission To Use This Network Resource
    http://blogs.technet.com/b/danstolts/archive/2011/06/21/resolving-network-issues-you-might-not-have-permission-to-use-this-network-resource.aspx
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • SQL SELECT Query Help   ..Please its very Urgent!!

    Hi All, I am having Oracle Database whice is storing 1000's of records daily. I need to select some information based on date and time. I am having two coloumns for Date and time. The first column(testDate) of type Date stores date as MM/DD/YY format

  • Sending texts instead of iMessages

    My husband used to have an iphone, now he does not. I still do.  When I text him my phone attempts to send him an iMessage and not a text message. I have changed his contact to be a "mobile" contact and not "iphone" contact. I have deleted all old iM

  • SBO-Common error when Using oRecordSet = oCompany.GetCompanyList

    Good Day Experts: I am having a bit of trouble running the code in the COM DI\05.OrderAndInvoice sample.  On the line --> oRecordSet = oCompany.GetCompanyList An error appears "Connection to SBO-Common has failed".  I would like to do the same thing

  • Phone error during restore

    Hello, Today my phone got stuck on "Searching for Signal." After talking with Verizon, I decided to do a restore.  It took several tries to get it to go, and now it keeps getting an error 1669 during "Restoring iPhone firmware."  I haven't dropped it

  • Can't retrieve Recurrence Rule from recurring Appointment

    Hey, I'm trying to retrieve the recurrence rule from a recurring appointment in GW. However it is always null. I'm using GW 8.0.2 and passing in '1.04' as the version number. Here is the SOAP request: <soap:Envelope xmlns:soap="http://schemas.xmlsoap