Oracle ADF application run while debuging but gives error while running

Hi,
I created application in oracle ADF, which accesses database from SQL server 2008. I changed database names to different database having same tables. When I debug it by using breakpoint in EOIMPL class, it runs perfectly. But when run it by removing brakpoint it gives error (invalid object). Please Help.
Thanks.

can u paste the complete invalid objects error..
I rember i have seen this case before which possibly got resolved by removing the system folder.. especially the systemfolder/o.j2ee/drs/ folder..
may be some synching problem..

Similar Messages

  • Run an Oracle ADF application on a tablet pc?

    I've been asked if an Oracle ADF application can run on a tablet pc. (I'm assuming XP Tablet PC Edition) . Does anyone know? If so, can I develop using JDev 10.1.3?

    User,
    Can you please be more specific? If you are talking about an ADF Faces application, those types of apps are web applications, and can be accessed just fine as long as you have a supported browser. However, your question isn't quite clear - do you mean you want to use JDeveloper 10.1.3 on this tablet PC to develop an application?
    John

  • Workshop Building Oracle ADF Applications

    Hi all
    i tried the Building Oracle ADF Applications: Workshop and still have a problem:
    If i navigate from BrowserCustomers.do to eg. EditCustomers this works fine. In the EditCustomers i have my Cancel Button that implements the event_rollback. If i run the application in the IE navigate to EditCustomers an click on Cancel button a go back to the BroseCustomers view. But although i see the context of the BrowseCusomers view the url-adresslist gives me /CustomerMaintenace-ViewController-context-root/EditCustomers.do.
    So if i click on Button NextSet in BrowseCustomers view i am again in the EditCustomers.
    I checked several times the code with the one in the workshop but didnot find anything wrong.
    Any ideas ??

    I got the same problem.
    I think its related to the Edit link, wich is :
    a href="index.jsp.do?event=setCurrentRowWithKey&Arg0=<c:out value='${Row.rowKeyStr}' />&event=Edit"
    The probleme come from the fact that there's two parameter name event.
    Anyone knows a right way to select a row and forward to the edit page in the same link ??
    thx for your help
    Jeff
    Message was edited by:
    user536516

  • Building Oracle ADF Applications Workshop

    I have finished going through the "Building Oracle ADF Applications: Workshop"
    from the following link:
    http://www.oracle.com/technology/obe/obe9051jdev/ide1012/adfworkshop/buildingadfapplicationsworkshop.htm
    Hopefully that is sufficient for the doc writer to locate the context of my
    comments. If not, let me know and I'll provide additional information.
    I grouped all of these together as one big comment. If you want it in a
    different format, again, let me know.
    Prior starting the workshop I printed out the entire document which resulted in
    51 pages of output. In each comment, except for the first general comment, I
    list the section name, step number and my page number which should be enough to
    uniquely identify the area that the comment relates to. My suggestions start
    out with "It would be nice...". I numbered the comments so I could have
    comments refer to each other.
    (1) One of the things I really liked was the "If you want to see a
    demonstration of these steps, click here" links. Sometimes the discussion
    was not precise so being able to see the actual usage worked well. It would
    be nice if there were more of these in the workshop.
    (2) "Building the Basic Page Flow", step 2, page 13.
    I had some trouble with this because it wasn't clear how one changes the
    DataPage's name. I used the property sheet and did it wrong, resulting in
    an error. I had to consult the "If you what to see..." link to determine
    how to do this correctly.
    It would be nice if there were a paragraph before "When you are done"
    saying something like:
    To change the name of a DataPage just click on the icon's label and
    enter the new value, starting with the leading slash.
    (3) "Connecting the Pages", step 9, page 21.
    This step has one switch to the Source editor view to make a change. This
    change can also be made in the Design view.
    It would be nice to stay in the Design view. The suggested wording for this
    is:
    In the Design view you can change the Edit button link by clicking on
    the Edit button and pressing the left arrow (<--) key once on the
    keyboard. The Property Inspector will be in an <A> element. Edit the
    href property by appending the following:
    &event=Edit
    (4) "Connecting the Pages", step 10, page 22.
    The first time I had trouble drawing the links. A bit more discussion on
    how to draw the links with corners would be nice. One of the troubles was
    that I would edit one link and another (or all of them) would suddenly
    change to simple vertical links (no corners). The link lines were
    separated, but the link names were displayed making it more difficult than
    necessary to tell which link line went with which link name.
    (5) "Adding a Create Function", step 4, page 24.
    I have the same comment on this step as I did in comment (3).
    (6) "Creating Session Variables with onEvent() methods", step 2, page 27.
    The last paragraph describes how JDeveloper will prompt you to enter an
    import statement. The comment I wrote on that page was:
    Cool!
    It's nice that JDeveloper handles this booking task.
    (7) "Building a Message Stack with a findForward() method", step 1, page 28.
    In the second paragraph it's not clear what the context is. It would be
    nice if the second paragraph would start out with:
    In struts-config.xml, right-click ...
    (8) "Building a Message Stack with a findForward() method", step 6, page 30.
    This code fragment at the end of this step has all lines starting in column
    1. It would be nice if this was indented so it could be followed with less
    effort. The same is true for the other code fragments in this section.
    (9) "Building a Message Stack with a findForward() method", step 12, page 32.
    I wrote a simple Java program that compared a String variable to a string
    literal. In all cases using == to compare returned false, while .equals()
    worked correctly. I was using Java 1.4.2_06_b03. Even if Java 1.5 supports
    converting the == between strings to equals(), it would be nice if the
    comparisons to the "type" variable used the .equals() method instead of ==,
    so that those of us still using Java 1.4 would have properly working code.
    Note that == in 1.4 compares the hash values while equals() looks at the
    contents.
    (10) "Enabling the Delete Confirmation Page", step 5, page 36.
    The last sentence of the first paragraph contains the phrase:
    if there are errors, build the ActionMessage object.
    It would be nice if this contained an extra word as in:
    if there are no errors, build the ActionMessage object.
    (11) "Enabling the Delete Confirmation Page", step 6, page 36.
    Line 12 (or 13 if you count blank lines) is storing a value in the request
    object. It would be nice to have a discussion in this step instead of
    having to wait until section "Intercepting the Middle-Tier Message", step
    8, page 42 before we know what this is all about.
    (12) "Overriding the findForward() Method", step 1, page 44.
    It appears that the call to the super.findForward method is missing. It
    would be nice if the following were inserted before the closing curly
    brace:
    super.findForward(actionContext);
    (13) "Overriding the findForward() Method", step 9, page 46.
    Near the end of this step it mentions the imports that are added. It
    appears that there is a missing import statement. If this is correct, it
    would be nice to also include the following import:
    import oracle.adf.controller.struts.actions.DataActionContext;
    (14) "Overriding the findForward() Method", step 10, page 46.
    My diagram doesn't look like this. The "Edit" link between /browseCustomers
    and /editCustomers should be "Commit". The "Cancel" link from
    /editCustomers back to itself shouldn't be there. The "Commit" link from
    /sure to /browseCustomers should be "Cancel". Compare this with the diagram
    in section "Creating a Delete Confirmation Page and a Forward", step 5,
    page 25.
    (15) "Internationalizing Field Labels", step 3, page 48.
    This is another case where the context is not clear. It would be nice if
    the following was added to the first paragraph:
    In the browseCustomers page,
    (16) "Internationalizing Field Labels", step 10+, page 49.
    Everything is internationalized except for the buttons. How does one
    internationalize them?
    (17) "Conditionally Displaying a Field", step 1, page 49.
    The last sentence says "The result should look like the following:". If one
    were following this workshop from front to back then what should be shown
    is the internationalized version of this page.
    (18) "Conditionally Displaying a Field", step 5, page 50. Bug?
    When I look at the Source view of editCustomers.jsp the <INPUT> element has
    a property setting of disabled="true". When I run the application and look
    at the HTML source used by the browser, that same <INPUT> element has a
    property setting of disabled="disabled". It works, but isn't that somewhat
    redundant? I recommend that the source code should have the disabled
    property setting as it appears in the Source view.

    Hi Jean,
    Can you please provide the document part number and book title where you have seen this errors? This way I can forward this to the doc writer.
    If this is not a document issue, please try the Members Feedback Forum. Community Feedback (No Product Questions)
    Thanks

  • Configuring Multiple Schemas in Oracle ADF application

    Hi,
    Thanks all for the replies for my previous posts :-)
    We have a requirement in which we need to configure our application for multiple Database schema. At runtime based upon the logged in user we need to get data from the schema related to that user.
    These schema may be on same Database instance/server or may be on different DB servers.
    The requirement is like this
    Logged in User DB schema configured
    "A" ASchema @ 127.0.0.1
    "B" BSchema @ 127.0.0.2
    "C" ASchema @  127.0.0.1
    "D" Dschema @ 127.0.0.2
    based on the User login (which is happening through one OID system), I need to fetch data from different schema (configured for different application).
    These schema have different set of tables but set of table we require for our application are of same structure.
    Same structure means same Table names with same relations.
    Please let me know can we do the same in Oracle ADF application and How?_
    One more requirement is that if i add a user at runtime and configure the DB schema for this user, All data related to this users will be loaded from this Schema which is configured for this user.
    Thanks in Advance,
    Amit
    newbie to Oracle ADF
    Edited by: ur.amit on May 10, 2010 3:17 PM

    You can try the below example to change database at run time.
    in the filter change the connection and not the credentials
    http://www.oracle.com/technetwork/developer-tools/jdev/dynamicjdbchowto-101755.html#03.
    Most of the other part is done to handle state management tables, which you might also have to do unless you use a file passivation store or if its ok to passivate to a single database always.
    If its ok to passivate to a single db always. Hard code the jbo.server.internal_connection in the AM configurations to a DB jndi name.
    Adf allows you to activate and passivate to a different database other than what you are connected to get and put data.

  • My application is running in localhost but it is not running in static ipad

    Hi all i have developed a web application which is running in localhost
    but it is not running in static ip address.I mean to say we have server
    which is exposed to internet ,if we deploy our web application in weblogic 8.1 which is running in our server and if try to access our web application from other pc which is having internet,is not accessing.
    Plz give me tho solution for this, it is very urgenttt ..

    Hi Sibaram3274,
    Thank you for posting in MSDN forum.
    Based on your issue, if you want to do coded UI test you install local machine to automate customization Epicor ERP( the Epicor ERP on the Vmware). I think that there have no way to test this Epicor ERP application using coded UI test.
    Since if we want to do coded UI test for an application, we will need to ensure the application and coded UI etst on same machine. You can be run on the coded UI test on your local machine or you can also install the VS on the VMware.
    So I suggest you can install the VS on the VMware or you can also copy this application and then run the application on your local machine.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • New Oracle ADF Application.

    Hi
    I installed wls1035_oepe111172_win32.exe on my local machine in new directory.
    Next I created base_domain and admin console works OK. WebLogic Server Version: 10.3.5.0
    In “Oracle Enterprise Pack for Eclipse” I try to create New -> Oracle ADF Application.
    During this process I had to create “New Runtime”.
    After this I received message :
    ” Target runtime is not valid; must be WLS 11gR1 PS3 (or greater) with ADF extension.”
    Separately I installed ADF and result is the same.
    I am afraid that in wls1035_oepe111172_win32.exe installation “Oracle Enterprise Pack for Eclipse” doesn’t recognize that WebLogic Server Version: 10.3.5.0 is greater than WLS 11gR1 PS3.
    How I can solve this problem?
    Is this my fault or instalation inconsistence ?
    Please help.

    Hi,
    I just realized that the installer you were referring to is not the same as the one I used in my test.
    The error message you are seeing is due to the fact that the Application Development Runtime is not installed as part of the wls1035_oepe111172_win32.exe.
    In order to workaround the issue please download the 11.1.1.5 Application Development Runtime from http://www.oracle.com/technetwork/developer-tools/adf/downloads/index.html and install into the wls home where you installed wls1035_oepe111172_win32.exe.
    Once this is complete, you should be able to create an ADF application without any issues.
    Thanks
    Raj

  • INTEGRATION ORACLE ADF APPLICATION TO SAP

    Dear SDN Member,
    We have a requirement wherein we are supposed to connect ORACLE ADF application to SAP Application.
    Please advice if there is any cook-book to accomplish this task.
    Thanks in anticipation.
    ~ Syed.
    <email removed by moderator>
    Message was edited by: Manish Kumar

    Hello Nikolay,
    So nice of you to have spared your time on this.
    Will review the doc and let you know further.
    Many thanks again.
    ~ Syed.
    <email removed by moderator>
    Message was edited by: Manish Kumar

  • Oracle ADF application with Teradata as Database

    JDeveloper PS5.
    Is it possible to integrate Oracle ADF application with Teradata as Database?
    If yes, can you please provide some information with respect to the same?
    Thanks,
    Navaneeth

    Does teradata have a JDBC driver ? and can it understand SQL92 falvor SQL ?
    If yes, then maybe you can do ADF on it.
    Take a look at this :
    http://www.oracle.com/technetwork/developer-tools/jdev/multidatabaseapp-085183.html
    A bunch of ADF features will not be available, primary key generation will be a bit sketchy(all keys for all tables will come from a single sequence of numbers) and you'll have to implement some stuff like the persistence collection manager.
    The one thing that doc does not mention is that you also have to make sure your adf-config.xml is set with the correct 'jbo.SQLBuilder' property (SQL92) in the <amconfig-overrrides> section.
    Happy hacking !

  • Application Manager gives back error (EX11) while installing InDesign CS6 (error while extracting in

    Hello, I need help regarding the Application Manager
    Application Manager gives back the error (EX11) while installing InDesign CS6 (error while extracting in temporary folders).
    I don´t have problems installing PS, Acrobat etc.
    Any idea?
    Thanks

    I would have never figured that out myself. Thank you so much! On behalf on my dad a big thanks as well, because he is going to use Adobe InDesign CC (2014).
    Here, a local, standard user account worked for me. However, the password of an Administrator account was required once.
    Here, any username longer than 13 created that error code, for example I tried "AInDesignCC14" unsuccessfully. Usernames with 12 or less characters worked, for example "InDesignCC14" worked.
    Just renaming an existing account did not work, because the personal folders did not change in name. Therefore, I was forced to create a new account.
    Windows 7 Ultimate (32bit, German), Apple Boot Camp; a vanilla installation

  • When i run my executable it gives error 7

    when i run my executable it gives error 7
    and this is the error messege:
    Error 7 occurred at Invoke Node in PRC_Deploy.vi->Deploy Library.vi->Deploy SV2.vi->WSfrontpanel.vi
    and can any one tell me how to deploy the shared variable libraries on my executable file
    m.shair
    Mahmoud Alshair
    Intelligent Systems Integrator ( ISI )
    System Developer
    Solved!
    Go to Solution.

    Hi Mahmoud,
    What are you doing at the Invoke Node? Are you calling a vi? If you are check this KnowledgeBase.
    For deploying shared variables from your executable, check this KnowledgeBase.
    Regards,
    Hillary E
    National Instruments

  • While uploading material give error

    hi friends !!!!!
    while uploading material give error
    item categary is not assign to g/l a/c and chart of a/c
    thanks in advance

    Dear hanumant
    Go to OMS2, select the material type and double click on "Quantity/Value Update" button on your left screen.
    Here for the combination of valuation area and material type, choose the two boxes "Qty.updating" and "Value updating".
    Thanks
    G. Lakshmipathi

  • DACExecutionPlan: Error while loading nodes. Error while loading nodes.null

    Hi There,
    One of my DAC Execution Plan is giving following error: Error while loading nodes. Error while loading nodes.null
    We have restarted DAC services.
    I have reassembled subject area, generated execution plan parameters, and rebuilt execution plan.
    But still its is giving same error.
    Any thoughts pls?
    Thanks,
    Raghu

    Actually while the EP is in a failed state, I added few tasks and assembled subject area and built EP.
    Later when I restarted the failed EP, it was giving below error.
    Sol: I maked EP as completed and ran the EP, it went fine.
    Thanks for yor help,
    Raghu

  • Run  oracle ADF application by client

    witch software needs the client to run oracle ADF application

    hi user,
    welcome to otn
    witch software needs the client to run oracle ADF applicationbrowser which supports
    http://www.oracle.com/technetwork/developer-tools/jdev/index-091111.html
    a little bit question?. little bit answer ;)
    please give enough info.

  • WIS 10901 error while running WEBI Report but no error in the DESKI report

    Hi,
    Can anyone please help me to resolve this issue.
    we have recently migrated BOXIR2 - BOXI3.1. many of the reports are from SQL Server and Oracle databases.
    Oracle Database connection universe reports error:
    i'm getting WIS 10901 error while running WEBI report for some particular objects not for all the objects but the same time i could able to pull the same object in the DESKI.
    those particular objects having lenthy data's for ex:100 bytes. but i tried same 100bytes some other objects refreshing fine and displaying results.
    i don't know where we ar missing.
    SQL Server Connection universe reports:
    These reports are giving mismatched results from the original but the callculation are done by the reporter side by creating variables. other than that there are no issues with these reports.
    Please we are struggling lot on these issues, can anyone please help us.

    Hi,
    For your issue 2 check whether any filters used in XI  R2 are missing in XI R3. As during migration some filetrs might be missed. To check this in  slice and dice panel in both bo versions.
    Cheers,
    Suresh Aluri.

Maybe you are looking for