Intermedia Status Invalid after 10.1.0.4 patchset

I just installed the 10.1.0.4 patche set 2. At the end of the 7.4.2 Upgrade the Release 10.1 Database it shows Oracle interMedia's status is INVALID. How can I find out what's causing the INVALID status and more importantly how can I fix it?
Thanks in advance
Brian
PS. Oracle Expression Filter is also INVALID.

Never mind....
I ran the @ORACLE_BASE\ORACLE_HOME\rdbms\admin\utlrp.sql and those database components are now VALID
Brian

Similar Messages

  • How to find out the projects with status "Invalid"?

    I'm new to Oracle Projects -OP. We are on 12.0.4. This' my new job.
    I have a task of "Remove projects with status 'Invalid' ".
    Questions:
    How to access the OP forms to verify the existent of the invalid projects?
    What are the PA tables having the status info -- I mean those showing the status with 'Invalid'?
    Thanks A lot.
    an apps dba

    I could not find a sample for the DELETE_PROJECT. I have coded the delete project by modifying the sample of the CREATE_PROJECT.
    -- delete a project with the status INVALID shown in pa_project_statuses.project_status_name
    --set serveroutput on size 20000
    DECLARE
      -- Variables needed for API standard parameters
      l_api_version_number          NUMBER := 1.0;
      l_commit               VARCHAR2(1) := 'F';
      l_return_status          VARCHAR2(1);
      l_init_msg_list          VARCHAR2(1) := 'F';
      l_msg_count               NUMBER;
      l_msg_index_out          NUMBER;
      l_msg_data               VARCHAR2(2000);
      l_data               VARCHAR2(2000);
      l_pm_product_code          VARCHAR2(10);
      l_responsibiity_id          NUMBER;
      l_user_id               NUMBER;
      l_pm_project_reference     PA_PROJECT_PUB.PROJECT_IN_REC_TYPE;
      l_pa_project_id          PA_PROJECT_PUB.PROJECT_IN_REC_TYPE;
      API_ERROR               EXCEPTION;
    BEGIN
    -- GET GLOBAL VALUES
      select user_id, responsibility_id
        into l_user_id, l_responsibiity_id
        from pa_user_resp_v
       where user_name = 'J23N';          -- need to get from Apps
    --SET GLOBAL VALUES
        pa_interface_utils_pub.set_global_info(
        p_api_version_number     => 1.0,
           p_responsibility_id     => l_responsibiity_id,
           p_user_id          => l_user_id,
        p_msg_count          => l_msg_count,
           p_msg_data          => l_msg_data,
           p_return_status          => l_return_status);
    -- PRODUCT RELATED DATA
      l_pm_product_code := 'R_INVALID';           -- can be user defined
    -- PRODUCT DATA (PROJECT_IN_REC_TYPE)
       l_pm_project_reference.pm_project_reference := null;
       l_pa_project_id.pa_project_id := 1001;
    --INIT_CREATE_PROJECT
      --pa_project_pub.init_project;
      dbms_output.put_line('Before delete_project');
    --DELETE_PROJECT
      pa_project_pub.delete_project(
         p_api_version_number => l_api_version_number,
         p_commit                    => l_commit,
         p_init_msg_list         => l_init_msg_list,
         p_msg_count                => l_msg_count,
         p_msg_data                  => l_msg_data,
         p_return_status         => l_return_status,
         p_pm_project_code       => l_pm_product_code,
      p_pm_project_reference => l_pm_project_reference,
      p_pa_project_id         => l_pa_project_id 
    -- Check for errors
      if l_return_status != 'S'
      then
        raise API_ERROR;
      end if;
      dbms_output.put_line('Deleted Project Id: ' || l_pa_project_id.pa_project_id);
      --dbms_output.put_line('Deleted Project Number: ' || l_project_out.pa_project_number);
      Commit;
    --HANDLE EXCEPTIONS
    -- Get the error message that were returned if it did not complete sucessfully
      EXCEPTION
      When API_ERROR then
        dbms_output.put_line('An API_ERROR occurred');
        if l_msg_count >= 1
        then
          for i in 1..l_msg_count loop
            pa_interface_utils_pub.get_messages(
              p_msg_data      => l_msg_data,
              p_encoded     => 'F',
              p_data           => l_data,
              p_msg_count      => l_msg_count,
              p_msg_index_out => l_msg_index_out);
            dbms_output.put_line('error message: ' || l_data);
          end loop;
          rollback;
        end if;
      When OTHERS then
        dbms_output.put_line('An error occured, sqlcode = ' || sqlcode);
        if l_msg_count >= 1
          then
          for i in 1..l_msg_count loop
            pa_interface_utils_pub.get_messages(
              p_msg_count      => l_msg_count,
              p_encoded     => 'F',
              p_msg_data      => l_msg_data,
              p_data           => l_data,
              p_msg_index_out => l_msg_index_out);
            dbms_output.put_line('error message: ' || l_data);
          end loop;
          rollback;
        end if;
    END;Can anyone with the experience of PA_PROJECT_PUB make comment on this Delete Project block? On the struncture level is it correct?
    I run it and get
      pa_project_pub.delete_project(
    ERROR at line 48:
    ORA-06550: line 48, column 3:
    PLS-00306: wrong number or types of arguments in call to 'DELETE_PROJECT'
    ORA-06550: line 48, column 3:
    PL/SQL: Statement ignored
    Please make your comment on the structure (the logic)  of the delete project before providing the advice on the debug.
    I would like to make sure the logic is correct first.
    TIA

  • Inbund IDOC error: Status records with status 51 after status 53

    Hi all,
    I'm looking to resolve an issue related to posting an inbound IDOC. when I process inbound IDOC created from report prg I'm getting a status message: "Status records with status 51 after 53" .
    Functionality: I'm creating an IDOC from flat file and processing it to post Customer master data into SAP. During this process creation of IDOC is successful but when I'm changing the existing data record (customer master data) IDOC is throwing this error.
    Changing data: For changing existing data I'm passing KUNNR field and overwriting the remaining data. Even though the idoc status is 51 the changed data is getting posted in to SAP. Here my concern is to see IDOC status as 53.
    Regards,
    Ganesh.
    Edited by: Ganesh Sunkara on Aug 1, 2009 3:45 AM

    Hi all,
    I solved this issue by myself. There is an error in the user exit code.
    regards,
    Ganesh.

  • Session state always invalid after login

    Hello community,
    i have a functional login process which uses my own login with username and password. After login i branch to application start page, but this session now is different from the start login session, so every login is invalid and will branch to authentication scheme invalid page.
    My login url is: f?p=100:100:123456
    After correct login (i have tested in the database with a lot of inserts into tmp_table)
    i want to branch with the standard login procedure wwv_flow_custom_auth_std.login() to page 1000.
    The correct url is shown in the browser, but the current page is the login page 100, because (i think) the session is invalid. In the authentication theme the invalid session page is set to page 100.
    I have tested several pages and always this page is branched.
    So im shure, that the session state is always invalid after login.
    But why ????
    Has anyone an idea ?
    Thank you for responding.
    Frank

    Hi Jari,
    problem was solved.
    The IE8 has cached an invalid site.
    I know now were it is come from.
    I have an after submit process which sets the cookie with following code:
    owa_util.mime_header('text/html; charset=UTF-8;', FALSE);
    owa_cookie.send(
    name=>'DHW_COOKIE',
    value=>utl_raw.cast_to_raw(dbms_obfuscation_toolkit.md5(input_string => ':P100_REGCODE' || :P100_USERNAME ))
    owa_util.http_header_close;
    But this results in display on the screen like html text without tags, so it looks like text on the screen header.
    It shows "content-type=text/html charset=WINDOWS 1252 .......
    The cookie is not set to the disk and now the IE8 explorer is dead.
    The described problem of this thread is shown.
    If you close all sessions and restart IE8 then the error is fixed.
    Also i have disabled the after submit process with setting the cookie.
    So i live now without having a cookie set.
    Do you have any idea for this behaviour ?
    Frank

  • Change status automaticaly after digital sign

    Hi
    I need to change document status automatically after digital sign,
    Can any body help me how to do this?
    The only way I can think of is by routine at the status customization.
    Thanks

    hi,
    1. last tread i absorbed it says authorization object and custamization of Digital signature.
    A. I need to change document status automatically after digital sign?
    procedure like this.
    1. Use TC -  DC10--define document type,
    .or u can navigate by SPRO> Crass application functions>document management>control data> difine document type.
    2.Here u select your document type, to whicch u need Automatic Status Networking.
    3.Select define document statuse folder in the same screen. u develop ur document network.
    note: when u develope statuse net work, it will always triggers next status. for this next statuse would be change or approve like.
    4.Here u will find assigne digital sign field. here acually u enter your digital signaure[name] which u created erliear.
    5.save entries.
    6.Automatic triggering means u have to set work flow. once a person enters the signature for appropriat status, the doc would triggers next person[inbox], whos is approver or releaser.......like this u have to develop stause with signature mandatory to set workflow for automatic triggering, Both options is available in same screen.
    Benakaraj
    ??P

  • Idoc status 51 after 53

    Hi,
       I have the following scenario, we are getting the file to sap and the file data needs to be updated in to sap. we had custom inbound idoc processing program which will load the data into sap. the problem is idoc should have status for each main segment of the idoc. lets take if we have 10 main segments then 10 status should be there in the idoc status so that user will varify which record in the file failed or errored out. The issue is if 9 records updated successfully and last record in the file failed while updating the idoc should have status like (53,53,53...(9 times) and at the end it should 51) when i debugged i found the same result but after this custom inbound fm standard process is replacing all the status messages with 'Status records with status 51 after status 53'.
       In reverse way if i have 9 failed and last one successful then i can see (9)...51s and 10th one as 53) but if last record failed then getting 'Status records with status 51 after status 53'. Could any one faced this kind of situation please let me know.
    Thanks in advance.

    No matter how many 53's you have, if you have one 51(order doesnt matter) the Final Idoc status will be 51. If you want the idoc to be successfully processed all messages should be 53.
    Or you have to develop the reproccessing logic to process only the failed entry and then make it 53.

  • Error  message B1 357-Status records with status 51 after status 53

    Hi All,
    somebody  knows  why  is  can  be  caused this  message:
    ''Error  message B1 357-Status records with status 51 after status 53''
    Thanks and  best  regards
    L

    Dear Luis,
    Please Check
    Status records with status 51 after status 53
    Best Regards,
    Amit

  • Dreamweaver CS4 serial number invalidated after 8 months of use

    In January 2nd 2014, I purchased an OEM version of Dreamweaver CS4 for Windows from a reseller called "Smart Shop" which looked like a serious outfit [emails from Jet Support were received with a link to "Access your order and customer support http://appscustomerscare.com"]. A serial number was obtained. I downloaded the program from their site  and installed it without any problem: When I launched the application, the serial number was inserted and the Adobe server validated it: the application worked seamlessly for more than 8 months.
    Yesterday, when I launched Dreamweaver CS4, a dialog box showed up stating the the serial number used was invalid! I used the serial number that I had been given to activate Dreamweaver but the form showed a red X at the end of the serial number meaning the the serial number was invalid.
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    Now, I'm back to the trial version (available for 29 more days)!
    Is there a licensing problem link with buying an OEM version of Dreamweaver from resellers?
    Why was the serial number considered valid on first run and all successive runs and then invalidated after 8 months?
    How can I be sure that my next "bona fide" purchase of Dreamweaver won't run into the same problem?
    Is there a way to recognize good from bad resellers?

    Sorry you got nailed - Next time try this
    http://www.adobe.com/cfusion/partnerportal/index.cfm
    Some info about appscustomerscare
    http://www.scamadviser.com/check-website/appscustomerscare.com

  • SELECT OBJECT_NAME FROM DBA_OBJECTS WHERE STATUS = 'INVALID'; = 39 rows .

    We just applied "SAP Bundle Patch 10.2.0.4.5 - 201010" in our development system.
    We completed all the post installation activities.
    In tail end - when we execute subjected command, 39 rows returned.
    Very First --- May we understand  What is the negative impact on Oracle system?
    Secondly -- Do we need to make these rows to "ZERO" is must ?
    Finally -  How to make them to "ZERO"
    2 lines expert advise...will enable us to move forward.
    Rgds
    ==========
    COMMAND
    ==========
    SQL> SELECT OBJECT_NAME FROM DBA_OBJECTS WHERE STATUS = 'INVALID';
    OBJECT_NAME
    LOGMNR_KRVRDLUID3
    DBMS_SQLTCB_INTERNAL
    DBMS_LOGMNR_FFVTOLOGMNRT
    DBMS_LOGMNR_OCTOLOGMNRT
    DBMS_RULE_EXP_UTL
    DBMS_LOGSTDBY
    DBMS_AW_EXP
    DBMS_SNAP_INTERNAL
    DBMSOBJG_DP
    DBMS_REPCAT_EXP
    DBMS_STREAMS_TBS_INT_INVOK
    DBMS_FILE_GROUP_UTL
    DBMS_FILE_GROUP_UTL_INVOK
    DBMS_STREAMS_MT
    DBMS_LOGREP_EXP
    DBMS_LOGREP_IMP
    DBMS_STREAMS_RPC
    DBMS_STREAMS_DATAPUMP
    DBMS_STREAMS_DATAPUMP_UTIL
    DBMS_STREAMS_TBS_INT
    DBMS_STREAMS_TBS_INT_INVOK
    DBMS_STREAMS_TABLESPACE_ADM
    DBMS_FILE_GROUP_UTL
    DBMS_FILE_GROUP_UTL_INVOK
    DBMS_FILE_GROUP
    DBMS_FILE_GROUP_INTERNAL_INVOK
    DBMS_FILE_GROUP_EXP
    DBMS_FILE_GROUP_IMP_INTERNAL
    DBMS_REDEFINITION
    DBMS_CDC_DPUTIL
    LOGMNR_KRVRDREPDICT3
    DBMS_CDC_DPUTIL
    DBMS_CDC_EXPDP
    DBMS_CDC_EXPVDP
    DBMS_CDC_IMPDP
    DBMS_SCHEMA_COPY
    UTL_RECOMP
    DBMS_SQLTUNE_INTERNAL
    DBMS_CDC_DPUTIL
    39 rows selected.
    SQL>
    ==========

    Hi,
    there has been an issue with an earlier set of bugfixes or an older CPU patch.
    It did invalidate the catproc component.
    Check:   select comp_id,status, version from dba_registry;
    if CATPROC is invalid, shutdown and startup your DB.
    run
    @?/rdbms/admin/catproc.sql
    it can run between 10 and 25 minutes depending on horse powers.
    Check again:   select comp_id,status, version from dba_registry;
    CATPROC should now be valid.
    If yes run utlrp.sql again and your errors will be gone.
    If not, your issue is something else.
    Volker

  • Why is EE showing in the status bar after update

    why is EE showing in the status bar after update and is it costing anything to have this on, can i remove it?

    Start with this article: iOS: Wi-Fi settings grayed out or dim - Apple Support
    If the steps here do not work, you probably have a hardware issue and will need to replace the device.

  • My serial # is invalid after 4 yrs of use.

    My serial # for CS4 Master Collection is invalid after 4 yrs of use. It's only been installed on one computer. I'm very upset that I have not been able to get any phone support or a responce on chat all day about this issue. I've done some reading about this, everyone that posts claims they bought an illegal product, I bought the program from Staples, what can be done? Please help!!

    This might help
    Trial Version — Reverts to

  • Problem with WCS Audit status missmatch after upgrade

    We had problem with wcs Audit status missmatch after upgrade to 7.0.164.3  WLC : 6.0.188.0.
    how I can fix the problem?

    Hi,
    Try pinging the WCS from the WLC and vice versa and then try again to refresh config from controllers.. then follow the below if its still not happening..
    Please forwrd the trace level logs from the WCS (Specifically WCS0.0.TXT logs) while recreating the issue!!
    Regards
    Surendra

  • EE in status bar after update what dose it mean

    EE is showing in the status bar after update how do I get rid of it and what dose it mean

    It's simply showing the carrier identification.

  • Sys.dba_objects where status = 'INVALID' ?

    I've run a quick sql looking for invalid objects within the sys.dba_objects table, My question is, I have a lot of IAL View/Tables that are invalid (in the status column it states 'INVALID').. But I’m able to query over these tables/views? So why is it stating 'INVAILD' what's making it invalid...

    Pl post the output of your SQL statement (select owner,object_type,substr(object_name,1,30) object_name from sys.dba_objects where status='INVALID')
    The synonyms may be invalid because the target objects they reference may have been dropped - in that case utlrp.sql will not fix your issue
    HTH
    Srini

  • Document SIgnature Status becomes invalid after resigning

    Hi all,
    I  have a form with two Document Signature.
    When i clear and resign one of the Document Signature it status is invalid.
    Please suggest me a solution.
    Regards,
    S.V.Satish Kumar

    I tested the form you posted.  Here is what I found, but I am not completely clear on what all your script is supposed to be doing.
    Steps
    1)  I filled in the first "comment line"
    2)  I signed the first signature field
    3)  Results:  The signature was valid, the document status (see screen shot 1signature_docstatus.gif) reported the signature was valid.  The signature staus was valid as displayed in the signature panel (see screen shot 1signature_detail.gif)
    4)  I added and filled in a second "comment line"
    5)  I signed the second signature field
    6)  Results:  The first signature was valid, the second signature was valid, and the document status repored that ther were "unsigned changes" since the last signature was applied (see screen shot 2signature_docstatus.gif) The signature statuses were valid with subsequent changes made to the document as displayed in the signature panel (see screen shot 2signature_detail.gif)
    Don't confuse the "exclamation" mark icon with "Invalid", it is only a warning to inform you that changes have been made that are not "digitally signed", I suspect your some part of your script is causing this. If you want to have Acrobat\Reader display a green check mark icon, then you cannot make any changes to the document after the final signature has been applied.
    If you haven't done so, take a look at the sample I posted on your duplicate post in this forum ( http://forums.adobe.com/thread/492773?tstart=0 ).
    If a signature is "invalid" it will display a red "X" icon.
    Regards
    Steve

Maybe you are looking for

  • One time 2 free of charge item in an order

    Hi Gurus I am working on an sd pricing role that that has a requirement in place for pharmaceutical companies to offer (one time only) 2 free vials of Soliris to every new patient free of charge  and a discount from the list price on the rest of the

  • IDoc to SOAP Receiver Fault Message Handling?

    Hi, I am working on IDoc to SOAP Scenario (IDoc -> PI -> SOAP). It is in async mode without BPM. This works fine as long as there is no error on the SOAP receiver side. How to handle the falut message raised by the SOAP receiver and send it back the

  • 24" Audio Issues

    I'm about to pick up another 24" imac off of Craigslist for peanuts, I was told there is a boot chime through the internal speakers, but no audio after that... it just gives a "NO" symbol when using the volume keys (circle with a line through it) and

  • How to set Dynamic variant  for a program

    Hello experts, I want to set variants dynamically on a selection screen. Please help me. Thanks, Ashwani.

  • 401 Unauthorized

    I want to open the admin. area from my router, but I can't access the router via 192.168.1.1 401 Unauthorized Authorization required. Somebody knows the solution? P.s. Via explorer is it not a problem