FlexContext.getFlexClient () returns an invalid object

I have this Flex client application that I am trying to implement the logout function. This customer has HTTP and RTMP connections on the server. When the user press the logout button in the client, so I try to invalidate sessions HTTP and RTMP on MSDS so the FlexClient would become invalid.
The behavior on the client, it's the login screen is displayed so that the user can connect again if they want. The problem is that if they do, the following happens on the side of the SDS:

-connection through the HTTP channel will result in the call to FlexContext.getFlexClient () returns a new FlexClient object (which is correct), with the newly created flex Http session

-aftarwards, try to connect via the RTMP channel, will result in FlexContext.getFlexClient () FlexClient object reference call to the former (i.e. those used on the previous session until the user pressed the disconnection), which is in an invalid State and has no session related. Everything would fail using this FlexClient. More, FlexContext.getFlexSession () returns the new RTMPFlexSession object (which is correct), but this session has no associated objects FlexClient (the getFlexClients() call returns an empty list)!

My question is why the FDS who'd? Why FlexContext.getFlexClient () returns an old, invalid FlexClient object? It seems strange to me. I am using LiveCycle Data Services ES 2.5.1 on the backend, deployed on Tomcat 5.5

Thank you.
Robert

Not sure it's a bug or not. I'll discuss it with dev, but I agree with you invalidate the flexclient destroy also.

William Chan

Tags: Adobe LiveCycle

Similar Questions

  • Houston-25036: an invalid object operation was drawn to the View object type.

    Hi all

    I use version jdev 11.1.2.2

    I have an application module impl in which I have a method to call a pl/sql that calls an external API.
      public String create(String productId, String component)
    {
        String createMessage=null;
        DBTransaction dbtransaction = (DBTransaction)getTransaction();
        StringBuffer str = new StringBuffer();
           str.append(" BEGIN ");
        str.append(" api.database@test ( ");
        str.append(" p_number                    => :1,   ");
        str.append(" p_product_id               => :2,   ");
        str.append(" p_component                => :3   ");
        str.append("    ); ");
        str.append(" END; ");
    
        CallableStatement callablestatement = dbtransaction.createCallableStatement(str.toString(), 1);
    
        try {
          callablestatement.registerOutParameter(1, Types.INTEGER);
          callablestatement.setInt(2, Integer.parseInt(productId));
          callablestatement.setString(3, component);
          callablestatement.executeUpdate();
          dbtransaction.commit();
          createMessage = callablestatement.getObject(1).toString();
          if (callablestatement != null) {
            callablestatement.close();
          }
          if (dbtransaction != null) {
            dbtransaction.closeTransaction();// closing connection
          }
    } catch (Exception e) {
          e.printStackTrace();
        }
    
        return createMessage;
    }
    I returns a value of this class of impl. I call this form of method a bean customer interface through. Then, I want to display another page passing the return as a variable binding value to another object to display grace to perform with the workflow setting.
      public void callCreate(ActionEvent actionEvent){
        BindingContext bctx = BindingContext.getCurrent();
        DCBindingContainer bindings = (DCBindingContainer)bctx.getCurrentBindingsEntry();
        DCDataControl dataControl = bindings.findDataControl("ReportAMDataControl");
        ReportAM ReportAM = (ReportAM)dataControl.getApplicationModule();
        createMessage =
            ReportAM.createBug(product, component);
          FacesContext context = FacesContext.getCurrentInstance();
          context.getApplication().getNavigationHandler().handleNavigation(context, null, "goExecute");//navigate to next page
    }
    Everything is going very well when I'm not closing the db connection in the impl.

    but when I close the db connection is showing the following error.

    Houston-25036: an invalid object operation was drawn to the View object type.
    <MethodExpressionActionListener> <processAction> Received 'oracle.jbo.InvalidObjAccessException' when invoking action listener '#{invokeImplMethodBean.callCreate}' for component 'cb1'
    <MethodExpressionActionListener> <processAction> oracle.jbo.InvalidObjAccessException: JBO-25036: An invalid object operation was invoked on type View Object with name RVO
         at oracle.jbo.server.QueryCollection.getPCollManager(QueryCollection.java:505)
         at oracle.jbo.server.QueryCollection.initPCollRows(QueryCollection.java:337)
         at oracle.jbo.server.QueryCollection.initQC(QueryCollection.java:367)
         at oracle.jbo.server.QueryCollection.<init>(QueryCollection.java:271)
         at oracle.jbo.server.ViewRowSetImpl.initQueryCollection(ViewRowSetImpl.java:876)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1140)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1413)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:1319)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:1304)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:7211)
         at view.InvokeImplMethod.call(InvokeImplMethod.java:206)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:105)
         at javax.faces.event.MethodExpressionActionListener.processAction(MethodExpressionActionListener.java:148)
         at javax.faces.event.ActionEvent.processListener(ActionEvent.java:88)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:824)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:179)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:112)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:106)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1134)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:358)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:207)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:508)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:173)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:125)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    No idea why this is happening?

    Can someone help me with this problem? :(

    Thank you
    Vignesh

    like I said with ADF BC, we never explicitly close the DB connection (framework takes care for this).

  • Invalid objects found in the repository

    I want to install to redhat 5.2 11.1 grid control, with 11.2 repository database located on the same host. In step 7 of 13 to connect to the database, I have provided the host, port, the service and sys password and click Next, and I had a simple error message
    Invalid objects found in Repository. Re-compile the objects using:
    $ORACLE_HOME/sysman/admin/emdrep/sql/core/latest/admin/admin_recompile_invalid.sql
    <EM_REPOS_USER>.
    There no other clues given. I checked the script admin_recompile_invalid.sql, it's pretty simple, however simply object and dba_synonyms for any object invalid user < EM_REPOS_USER >. If find, recompile. I don't know what the user is < EM_REPOS_USER > but both queries return nothing in my database for all users. The script should just pass and do nothing.

    What could be wrong?
    Where can I find more information?

    Have you tried recompiling invalid objects using utlrp.sql

    Also check the objects using the invalid:

    Select count (*) in the dba_objects where status<>"VALID."

    Concerning
    Rajesh

  • Unable to return the Contact object!

    Nice day

    In trying to return to a contact in the address book, I get a runtime error that States "push modal screen is called from a thread not event," I know very well off the coast. In this case, I decided to use the trick of invokeAndWait update a screen on the thread of the Main Event. But now, even if the address book is displayed, he refuses to return to a contact. To return to my application, the only way is by the "ESC" key, which, of course, does not return a contact object.

    Does anyone know of a work around that? It's confusing me now,

    1) tap address book to the queue of the event.
    (2) turning a contact to the application without entering the key "ESC".

    See you soon,.
    Nik

            UiApplication.getApplication().invokeAndWait
            (
                new Runnable ()
                {
                    public synchronized void run()
                    {
                        try
                        {
                            final BlackBerryContactList list = (BlackBerryContactList)
                                PIM.getInstance().openPIMList(PIM.CONTACT_LIST,PIM.READ_WRITE);
    
                            Contact contact = list.choose(null, BlackBerryContactList.AddressTypes.EMAIL,false);
    
                            if (contact != null)
                            {
                                String email = contact.getString(Contact.EMAIL, 0);
                                System.out.println ("Name is : "+email);
                            }
                        }
                        catch (PIMException pe){}
                    }
                }
            );
    

    AW... Is not serious... think about it...

    If the contact does not have an e-mail address, it selects it, rather than the contact does is display.

    Use the method BlackBerryContactList.choose (No params).

    See you soon,.

    Nik.

  • [ADF, JDev12.1.3] Method in AM that returns a ViewRowImpl object. How...?

    Hallo,

    I need to create a method in the Module of the Application that returns a ViewRowImpl object.

    I want to call this method to a bean that will consume the returned line.

    I ask if this is possible, since in the AM configuration I don't see my method to expose it to the customer.

    What's wrong?

    Thank you

    Federico

    What's wrong?

    Documentation: https://docs.oracle.com/middleware/1213/adf/api-reference-model/oracle/jbo/server/ViewRowImpl.html

    "Client applications should not access this class on the client tier of an application. Instead, the Row interface must be used for access to the client tier. »

    In general, if you can use the class interface or application in a certain part of the code, always use interface.

    Dario

  • "Invalid object" visible layer error

    Hi all

    I get the error message "Invalid object" for code below. Please check and suggest me, where is the error occurred in my code.

    myDoc var = app.activeDocument;

    myLayer var = myDoc.layers;

    for (var i = 0; i < myLayer.length; i ++)

    {

    If (myLayer [i] .name == "WEBPDF" & & myLayer [i] .visible == true)

    {

    Try

    {

    myDoc.revert ();

    myLayer [i] .visible = false;

    myDoc.save ();

    }

    {catch (e)}

    Alert (e);

    }

    }

    }

    Hello

    myLayer [i] is no longer valid object after myDoc.revert)

    Change it as below and try:

    var
      myDoc = app.activeDocument,
      myLayer = myDoc.layers.item("WEBPDF");
    
    if(myLayer.isValid && myLayer.visible) {
      myDoc.revert();
      myDoc = app.activeDocument;
      myDoc.layers.item("WEBPDF").visible = false;
      myDoc.save();
      }
    

    Jarek

  • Should I return the JSON object or object java SOA?

    Hi gurus,

    A question that I hope makes sense - can SOA return a JSON object JAVA object, not XML?

    Thank you

    Anatoliy


    First "SOA" is not a thing, so it's difficult to give a Yes or no

    This is a technical product feature if it will be possible to expose data in xml/json/etc. formats

    When we look at the Oracle portfolio, we have a preview for example Oracle SOA Suite and Oracle Service Bus (other Oracle products can do the same thing).

    With these two products, you will be able to represent your data in other formats in addition to XML.

    some links to help you get started.

    https://blogs.Oracle.com/jeffdavies/entry/using_json_with_oracle_service

    http://Biemond.blogspot.nl/2010/05/HTTP-binding-in-SOA-Suite-11g-PS2.html

    http://javaoraclesoa.blogspot.nl/2012/12/receiving-JSON-requests-in-Oracle-BPEL.html

    Oracle Service Bus can also store Java objects in jms queues, so, like, that you can carry your data too.

    http://www.xenta.nl/Blog/2011/09/01/Oracle-service-bus-processing-Java-object-messages-with-JMS-transport/

    Hope it will be a little helpful

  • Invalid objects in EBS R12.1.1 SCREWS

    I ' v just installed EBS R12.1.1 SCREWS, having found invalid objects in its database that cannot be compiled by running rdbms/admin/utlrp.sql


    SQL > @?/rdbms/admin/utlrp.sql

    ......

    ITEMS WITH ERRORS
    -------------------
    4

    ......

    ERRORS DURING THE RECOMPILATION
    ---------------------------
    4

    PL/SQL procedure successfully completed.

    Invoking the procedure validation Ultra Search Install/Upgrade VALIDATE_WK
    Ultra VALIDATE_WK of research done without error

    PL/SQL procedure successfully completed.


    SQL > SELECT COUNT (*) FROM obj$ State WHERE (4, 5, 6);

    COUNT (*)
    ----------
    12


    SQL > SELECT master, count (*) amount FROM dba_objects WHERE the group status <>'VALID' by the owner;

    SUM OF OWNER
    ------------------------------ ----------
    RE                    1
    CA                    2
    PUBLIC 4
    HERMAN 1
    APPS                    5
    FLOWS_010500 2

    6 selected lines.


    SQL > select * from sys. UTL_RECOMP_ERRORS;

    OBJ # ERROR_AT COMPILE_ERR
    ------------- ----------------------------------------------------- ---------------------------------------------------------------------------
    1006661 28 March 13 07.43.15.505723000 AM "ORA-04045: errors during recompilation/revalidation of the PUBLIC." WWV_FLOW_LIST_OF_VALUES_DATA
    "ORA-00980: synonym translation is no longer valid.
    1006663 28 March 13 07.43.15.507741000 AM "ORA-04045: errors during recompilation/revalidation of the PUBLIC." WWV_FLOW_LISTS_OF_VALUES$
    "ORA-00980: synonym translation is no longer valid.
    1006687 28 March 13 07.43.15.509455000 AM "ORA-04045: errors during recompilation/revalidation of the PUBLIC." WWV_FLOW_GENERIC
    "ORA-00980: synonym translation is no longer valid.
    1006699 28 March 13 07.43.15.511259000 AM "ORA-04045: errors during recompilation/revalidation of the PUBLIC." WWV_FLOW_FIELD_TEMPLATES
    "ORA-00980: synonym translation is no longer valid.

    Question:
    How to solve this problem? Can I just remove these invalid objects from SYS. DBA_OBJECTS?

    How to solve this problem? Can I just remove these invalid objects from SYS. DBA_OBJECTS?

    Simply ignore these invalid objects because they should not affect the functionality of your application.

    Thank you
    Hussein

  • Get the invalid objects recompile errors

    HY @ all,

    at an Oracle 11 G R2 instance, 11.2.0.3.0, I'm trying to recompile invalid objects as explained here:

    [http://www.oracle-base.com/articles/misc/recompiling-invalid-schema-objects.php]

    I have a few invalic objects in "XDB" and "SYS" schema.

    When I try to correct with 'utlprp.sql' at level 1 I get this output:
    FAILED CHECK FOR PACKAGE BODY CTX_DOC
    Warning: XDB now invalid, invalid objects found:
    object_name                                 object_type
    -------------------------------------------------------
    DBMS_XMLDOM                                PACKAGE BODY
    DBMS_XMLPARSER                             PACKAGE BODY
    DBMS_XSLPROCESSOR                          PACKAGE BODY
    DBMS_XDBRESOURCE                           PACKAGE BODY
    DBMS_XDB                                   PACKAGE BODY
    DBMS_XDBUTIL_INT                           PACKAGE BODY
    DBMS_CSX_INT                               PACKAGE BODY
    DBMS_XMLSCHEMA                             PACKAGE BODY
    PATH_VIEW                                          VIEW
    XDB_PV_TRIG                                     TRIGGER
    XIMETADATA_PKG                             PACKAGE BODY
    DBMS_XDBT                                  PACKAGE BODY
    
    PL/SQL-Prozedur erfolgreich abgeschlossen.
    and when I select the invalid objects with:
    SELECT owner, object_type, object_name, status
    FROM   dba_objects
    WHERE  status = 'INVALID'
    ORDER BY owner, object_type, object_name;
    The number of invalid objects is always the same that before running the script 'utlprp.sql '. I have tried manually by:
    ALTER PACKAGE my_package COMPILE;
    ALTER PACKAGE my_package COMPILE BODY;
    ALTER PROCEDURE my_procedure COMPILE;
    ALTER FUNCTION my_function COMPILE;
    ALTER TRIGGER my_trigger COMPILE;
    ALTER VIEW my_view COMPILE;
    or with:
    EXEC DBMS_DDL.alter_compile('PACKAGE', 'MY_SCHEMA', 'MY_PACKAGE');
    EXEC DBMS_DDL.alter_compile('PACKAGE BODY', 'MY_SCHEMA', 'MY_PACKAGE');
    EXEC DBMS_DDL.alter_compile('PROCEDURE', 'MY_SCHEMA', 'MY_PROCEDURE');
    EXEC DBMS_DDL.alter_compile('FUNCTION', 'MY_SCHEMA', 'MY_FUNCTION');
    EXEC DBMS_DDL.alter_compile('TRIGGER', 'MY_SCHEMA', 'MY_TRIGGER');
    but whenever Oracle print me, that objects has been recompiled with compile errors.

    Does anyone know, how I fix this?

    Thank you very much and best regards,
    David

    Select ComputerName, State of dba_registry;

    Check status of the XDB component, if its not VALID. Fix it.

    http://www.iselfschooling.com/Board/index.php?topic=810.0

  • INVALID objects after the upgrade of 12.1.1 12.1.3

    Hello
    Recently I applied a 9239090, 13984450, 10627841 patches to upgrade 12.1.1 12.1.3, but now there are a number of invalid objects in the comic book.

    I tried to compile them with utility "adadmin" and even ran "utlirp.sql" with "utlrp.sql". Tried to bounce all db, level apps, apache but they still "invalid." What kind of objects are they, and if they will affect applications? How to compile them?

    Any help will be really appreciated. Thank you.

    As a test, I tried to compile an object and get the following errors:

    APPS package body. FFP55370_01011990@EBS12
    Error (347,1): PL/SQL: statement ignored
    Error (347,5): PLS-00306: wrong number or types of arguments in the call to "ARREARS".
    Error (382,1): PL/SQL: statement ignored
    Error (382,5): PLS-00306: wrong number or types of arguments in the call to "ARREARS".

    List of invalid objects
    ----------------------
    FFP55370_01011990
    FFP50529_01011900
    FFP50775_01011900
    FFP52090_01011990
    FFP50576_01011900
    FFP54520_01011995
    ImportExport
    FFP58914_01010001
    FFP60324_01010001
    FFP56324_01011990
    FFP50523_01011900
    FFP54824_01012000
    FFP59200_01011990
    FFP55331_01011998
    FFP55359_01011990
    FFP58907_01010001
    FFP55328_01011998
    FFP55356_01011990
    FFP58908_01010001
    FFP59176_01012004
    FFP57126_01011995
    FFP60588_01011990
    FFP61138_01010001
    FFP61170_01010001
    FFP61884_01010001
    FFP61867_01010001
    FFP62357_01012000
    FFP62358_01012000
    FFP62376_01012000
    FFP51848_01011990
    FFP50533_01011900
    FFP50531_01011900
    FFP54413_01011995
    FFP54409_01011995
    FFP52683_01071999
    WWV_FLOW_LIST_OF_VALUES_DATA
    WWV_FLOW_LISTS_OF_VALUES$
    FFP58919_01010001
    FFP58887_01042004
    FFP51846_01011990
    FFP59110_01011990
    FFP57215_01011999
    FFP56739_01011999
    FFP56325_01011990
    FFP59192_01011990
    FFP1915_01010001
    FFP56596_01012001
    FFP1918_01010001
    FFP57217_01012000
    FFP59113_01011990
    FFP55243_26121999
    FFP56327_01011990
    FFP54521_01011995
    FFP60587_01011990
    FFP60593_01011990
    FFP60793_01012004
    FSAH_DUPLICATE_PKG
    FFP61920_01010001
    FFP55366_01011990
    FFP52681_01071999
    FFP51840_01011990
    FFP52621_01011996
    FFP55065_01011990
    FFP53477_01012001
    FFP59131_01011990
    FFP51850_01011990
    FFP51838_01011990
    FFP59273_01012004
    FFP51849_01011990
    FFP55077_01011990
    FFP59251_01012004
    FFP55240_26121999
    FFP54414_01011995
    FFP54393_01011995
    FFP58912_01010001
    FFP54823_01012000
    FFP57196_01012000
    FFP55362_01011990
    FFP57216_01012000
    FFP57125_01011995
    FFP60833_01012000
    FFP60943_01011990
    FFP60964_01012000
    FFP61532_01011990
    XLA_00707_AAD_C_000026_PKG
    FFP61919_01010001
    FFP62359_01012000
    FFP55060_01011990
    FFP50510_01011900
    FFP55355_01011990
    FFP55058_01011990
    FFP54406_01011995
    FFP51867_01011990
    FFP54474_01011995
    FFP55361_01011990
    FFP58885_01042004
    FFP51844_01011990
    FFP56716_01012001
    FFP59175_01012004
    FFP54525_01011995
    FFP54909_01011990
    FFP56329_01011990
    FFP54407_01011995
    FFP56052_01012000
    FFP54524_01011995
    FFP56056_01012000
    FFP54404_01011995
    FFP54523_01011995
    FFP58913_01010001
    FFP55306_01011995
    FFP50525_01011900
    FFP55333_01011998
    FFP1916_01010001
    FFP58911_01010001
    FFP60555_01010001
    FFP61156_01010001
    FFP61152_01010001
    FFP52982_01010001
    FFP61511_01012000
    FFP62356_01012000
    FFP62378_01012000
    FFP62379_01012000
    FFP51404_01011997
    FFP55358_01011990
    FFP55067_01011990
    FFP52115_01011990
    FFP51887_01011990
    FFP54398_01011995
    FFP54411_01011995
    WWV_FLOW_GENERIC
    WWV_FLOW_FIELD_TEMPLATES
    FFP53720_01011990
    FFP54827_01012000
    FFP50522_01011900
    FFP55330_01011998
    FFP54912_01011990
    FFP59116_01011990
    FFP59115_01011990
    FFP54394_01011995
    FFP56330_01011990
    FFP56434_01012001
    FFP58163_01011951
    FFP59114_01011990
    FFP56328_01011990
    FFP58910_01010001
    FFP60606_01011990
    FFP61440_01011990
    XLA_20065_AAD_C_000030_PKG
    FFP55069_01011990
    FFP53540_01012001
    FFP55364_01011990
    FFP55375_01011990
    FFP50577_01011900
    FFP52481_01010001
    RE_PROFILER
    FFP58915_01010001
    FFP58920_01010001
    FFP51888_01011990
    FFP50928_01011997
    FFP56333_01011990
    FFP55063_01011990
    FFP55367_01011990
    FFP51068_01011997
    FFP59111_01011990
    FFP56332_01011990
    FFP56323_01011990
    FFP57190_01012000
    FFP1919_01010001
    FFP59191_01011990
    FFP51966_01011998
    FFP54403_01011995
    FFP55368_01011990
    FFP1917_01010001
    FFP60592_01011990
    FFP60607_01011990
    FFP61277_01011951
    FFP61871_01010001
    FFP61926_01010001
    FFP61897_01010001
    FFP62377_01012000
    FFP51837_01011990
    FFP50512_01011900
    FFP52744_01071999
    FFP52724_01071999
    FFP51411_01011999
    FFP50527_01011900
    FFP58888_01042004
    FFP58870_01042004
    FFP59117_01011990
    FFP56331_01011990
    FFP55080_01011990
    FFP59112_01011990
    FFP50583_01011900
    FFP54518_01011995
    FFP55079_01011990
    FFP59195_01011990
    FFP56053_01012000
    FFP56322_01011990
    FFP55373_01011990
    FFP54449_01011995
    FFP54522_01011995
    FFP54948_01011990
    FFP58918_01010001
    FFP60591_01011990
    RDT_1
    FFP60944_01011990
    FFP60963_01012000
    FFP61124_01010001
    FFP61912_01010001
    MSD_DEM_OBI_DEMANTRA_MV
    FFP55372_01011990
    FFP50773_01011900
    FFP53497_01012001
    FFP51406_01011997
    FFP50506_01011900
    FFP50508_01011900
    FFP51843_01011990
    FFP55062_01011990
    FFP55078_01011990
    FFP55070_01011990
    FFP57220_01012000
    FFP56326_01011990
    FFP51906_01011990
    FFP53224_01011999
    FFP56337_01011995
    FFP58909_01010001
    FFP58906_01010001
    FFP58861_01042004
    FFP51841_01011990
    FFP50581_01011900
    FFP56321_01011990
    FFP50524_01011900
    FFP60589_01011990
    FFP61924_01010001
    XLA_00707_AAD_C_000044_PKG
    F
    G

    PL see the solution in this Doc MOS

    Invalid objects FFP [ID 1331911.1]

    HTH
    Srini

  • HOWTO return a new object of a script object

    Hello

    I wonder about the fact that it is not able to return a new object from an existing script object in a field of LiveCycle Designer.

    Let's say we have follwing situation:

    1. a Script object named 'LcdObjects' with a 'field': object

    function Field(som) {
     this.som = som;
     
     this.hideField = function() {
      som.presence = "hidden";
     }
    }
    

    2. now I want to create a new instance of the object of 'field' in a text field (in the case of 'click'):

    f = new LcdObjects.Field(this);
    f.hideField();
    

    3. the code above doesn't work with the text field. It seems that there is no new object created.

    4. it seems that I must create an auxiliary function for each object in the script object to get a successful return of a new object:

    function newField(som) { 
        return new Field(som); 
    }
    

    5. with the auxiliary function, I can create a new instance of the Field object in my text field:

    f = LcdObjects.newField(this);
    f.hideField();
    

    But I'm not very happy with this solution, because with this workaround, I have to create an auxiliary function to return for every single object which does not seem to be very smart to me.

    Are there any general solution to return an instance of an object without using this kind of workaround?

    Thank you.

    Hello

    You can add a function to a script object that returns your "Field" object with the method hideField. So, as a function;

    function Field (field)

    {

    var that = {'field': field};

    that.hideField = function()

    {

    This.Field.Presence = 'hidden ';

    }

    Back to this;

    }

    Could be called by

    LcdObjects.Field (TextField1) .hideField ();

    Concerning

    Bruce

  • Invalid objects after the upgrade to GR 11, 2

    EBS - 12.1.2
    SLES SP10 - Linux x 86-64

    DB - 11.2.0.3
    zVM/OS

    After our upgrade to 11.2.0.3, I see that the number of invalid objects is passed about 35 to about 92. I ran adadmin to compile the drawing APPS - and there are still some 79.

    What strikes me as strange is that most of the invalid objects is in the scheme applications - and is prefixed with EDW_ or FII_

    This isn't the business environment in the PRODUCTION (yet to be upgraded).

    Is there something that I am missing in the upgrade process?

    What is the importance of the link DB EDW_APPS_TO_WH? This could be the reason why the EDW_ objects are not compiled?

    After our upgrade to 11.2.0.3, I see that the number of invalid objects is passed about 35 to about 92. I ran adadmin to compile the drawing APPS - and there are still some 79.

    What strikes me as strange is that most of the invalid objects is in the scheme applications - and is prefixed with EDW_ or FII_

    This isn't the business environment in the PRODUCTION (yet to be upgraded).

    Is there something that I am missing in the upgrade process?

    What is the importance of the link DB EDW_APPS_TO_WH? This could be the reason why the EDW_ objects are not compiled?

    You must ensure that these database links are valid for disabled to validate objects.

    Invalid objects for Modules EDW and IFI [412032.1 ID]
    EDW Associates invalid objects [554036.1 ID]
    Interoperability note EBS R12 with Database 11 g 2 [ID 1058763.1]

    https://forums.Oracle.com/forums/search.jspa?threadID=&q=EDW+and+invalid&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    Thank you
    Hussein

  • compile the invalid objects

    Hello

    I have a few invalid objects. During opening hours, should I run @/$ORACLE_HOME/rdbms/admin/utlrp.sql in the production database?

    Oracle 10g / UNIX.

    Gowin_dba wrote:
    Hello

    I have a few invalid objects. During opening hours, should I run @/$ORACLE_HOME/rdbms/admin/utlrp.sql in the production database?

    Oracle 10g / UNIX.

    default behavior is that they get auto-magiquement compiled the next time they are referenced.

    So why exactly you want to do it manually?

  • XLA_00555_AAD_C_011117_PKG Invalid Object is not compile

    Hi guru,.


    I have an invalid object XLA_00555_AAD_C_011117_PKG.

    I've compiled several types, but it is not compiled.

    I tried through adadmin utility,@utlrp.sql and collected through the command

    change the package compilation XLA_00555_AAD_C_011117_PKG body;

    but this isn't the compilation.

    Please guide me to compile the invalid object above... .package body

    Kind regards
    SBJ *.

    Please see this link - http://www.orafaq.com/node/2608

    Thank you
    Hussein

  • Invalid objects after the discharge of the export is refreshed. How to fix?

    I made a pattern only export dump and then imported into a test environment. Now, there are about 40 invalid objects. I used utlrp.sql to make them disappear.

    All are deleted except a procedure owned by a user of the app.

    I want to recreate it, but fear there are some permissions, grants associated with this procedure.

    How be sure all connected with this procedure, such as subsidies, permissions, links will be recreated?

    Thank you in advance for help.

    846422 wrote:
    I see. You are right. Thanks for solving this problem. Any good suggestion on how to fix the invalid objects? and what is the workaround for these grants on system/sys objects? How to avoid this problem?

    someone has explicitly issued GRANT on DB exported; previously.

    The SQL statements must be under the control of application source code; like the rest of application.

    After the import run only SQL file containing all the commands necessary to produce 100% valid objects

Maybe you are looking for