ORA-20001: Invalid action DELETE on this object. (U)

What does this mean? When I hit the DELETE button, the row I want deleted from two different tables is being deleted like it's supposed to -- but I get this error message.
I have:
DELETE button: SQL delete action
Process row from TABLE1: Allowed operations: update, delete
Process row from TABLE2: Allowed operations: delete When button pressed: DELETE
Do I have extranneous information?

These are not "error messages", its more of an optional confirmation message that an event occurred from a specific process. Check out the Process Messaging section in automatic row process or the process that you created to handle the delete. You can customize the message when the delete is unsuccessful and a success message when it commits. Or you can leave them blank. It looks like you could have combined the delete statements in one process rather than have them separate.

Similar Messages

  • "ORA-20001: Invalid action CREATE on this object. (U)"

    I have a page where data are inserted in my procedure.
    <br>This procedure assign "PXX_ID" which is a key from that table.
    After that I use "Automatic Row Processing (DML)" with check only on UPDATE", to fill other fields that are not filled in my INSERT procedure. This process is defined with "PXX_ID" which is reassigned (not as it was when page was submitted - before my insert).
    <br>SAVE process, which is only calling this DML is working perfectly. My procedure is inserting new record also. But together they are not working. What I want is to use this process for changing data (SAVE button) and for INSERT part also.
    <br>Now I get this error "ORA-20001: Invalid action CREATE on this object. (U)"...any help on this?
    <br>If problem is that I'm reassigning value of "PXX_ID" then please let me give some hint how to make this if possible using DML processes...
    <br>If the solution is to put all fields in INSERT part and use this DML only for changes, let me know. All I need is some hints to understand more this error!
    <br>P.S.
    <br>I have tried to recreate new process ... but no help.
    <br>P.S. II
    <br>I cannot sent app on WORKSPACE (too much work to do)...but I can send page export.
    <br>THX!

    This is caused because you have only checked the UPDATE option in the Automatic Row Processing(DML). By unselected the other options you are basically saying they aren't allowed. In order to get around this you need to put a conditional clause on the process. I would use something like if rowid = null then use my insert process. If rowid is not null then use the Automatic Row Processing(DML).

  • Error ORA-20512: Invalid action CREATE on this object. (UD)???

    Actually, I have two questions:
    1.
    I can't figure out why I have this error. I have a simple interactive report with form. On this form are 3 fields (a hidden ID field, a message_code field and a message_text field). I have a custom stored procedure to insert a message in the message table. I made a PL/SQL block for this in the page processes and made it conditional when the create button is pressed (process is the first page process). I unchecked the "insert" from Allowed Options in the ARP(DML) process, since I like to use it for the update and delete actions. The stored procedure is actually called, because when I input invalid data (exisiting error code, for example) the custom raise_application_error from the stored procedure is shown in Apex, as it should be.
    What could be the problem here?
    2.
    Actually, what is the function of the "Allowed Operations" option in a DML process? What actually changes when checking or unchecking operations there? If I uncheck the "delete option", I would expect the delete button to dissapear, or at least the delete option would not work anymore, but this is not the case. Even when I uncheck "delete", I can still us the delete button and it still deletes the record. What use is this option then?

    Those checkboxes tell you what the permitted operation are for the Data Manipulation Process against that table.
    When you create a dml process using the wizard, if by default created the buttons for you. After it has been created, if you remove them, the button will not dissappear. As do they not appear if you didnt select a permitted operation in the wizard and later want to add the operation, so you will have to delete the buttons yourself (or create).
    If you for example uncheck 'Delete' as a valid operation, despite the buttons remaining on the page, clicking on the button will not do anything, because you have not permitted that operation.
    If you look in the the DML process, you will see:
    Valid Update Request Values:     SAVE, APPLY CHANGES, UPDATE, UPDATE ROW, CHANGE, APPLY, APPLY%CHANGES%, GET_NEXT%, GET_PREV%
    Valid Insert Request Values:     INSERT, CREATE, CREATE_AGAIN, CREATEAGAIN
    Valid Delete Request Values:     DELETE, REMOVE, DELETE ROW, DROPSo, if you didn't un-check 'Delete' from permitted operation, but did delete the page button, I could just go into the address bar and type and of the follwing: javascript:apex.submit('DELETE'); javascript:apex.submit('REMOVE'); javascript:apex.submit('DELETE ROW'); javascript:apex.submit('DROP'); and that current row that I am looking at would be deleted. So it is important, if you don't want users to be able to remove rows, that uncheck that permitted operation as someone with a clue could just do what I have said.
    Of course, you could also add conditions to the process that request is contained in: SAVE,CREATE ; and it wouldnt matter if I did do what I suggested above, the condition of the process would not be met, so it would run the delete operation anyway.
    Ta,
    Trent
    Edited by: trent on Dec 10, 2010 4:31 PM

  • ORA-20001: Invalid parsing schema for current workspace ID

    I recently upgraded Apex version from 4.0 to 4.2 successfully. Everything looks good except in one of the applications, I am running into
    ORA-20001: Invalid parsing schema for current workspace ID ( see below for detailed debug info). It seems this page region code is still looking at
    old apex scehma APEX_040000 instead of APEX_040200 somehow. Any ideas.
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -20001
    ora_sqlerrm: ORA-20001: Invalid parsing schema for current workspace ID
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 21560330709310725
    component.name: Calendar
    error_backtrace:
    ORA-06512: at "APEX_040000.WWV_FLOW_ASSERT", line 377
    ORA-06512: at "APEX_040000.WWV_FLOW_ASSERT", line 386
    ORA-06512: at "APEX_040000.WWV_RENDER_CALENDAR2", line 462
    ORA-06512: at line 27
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 1926
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1064
    ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613
    ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    OK

    Thanks Patrick. Just wanted to make you're referring to the below code. what package I would be using instead of 'wwv_render_calendar2.show'
    wwv_render_calendar2.show (
    p_query => q,
    p_max_rows => '5',
    p_heading_bgcolor => '#CCCC99',
    p_table_bgcolor => 'WHITE',
    p_monday_friday_only => 'NO',
    p_non_curr_month_attr => 'bgcolor="#F7F7E7"',
    p_month_font_face => 'Arial',
    p_month_font_size => '+1',
    p_month_font_color => 'BLUE',
    p_day_font_face => 'Arial',
    p_day_font_size => '+1',
    p_day_font_color => 'BLACK',
    p_cell_font_face => 'Arial',
    p_cell_font_size => '-2',
    p_cell_font_color => 'BLACK',
    p_page_width => '95%',
    p_show_month_above_tab => 'YES',
    p_min_blank_cell_height => '45',
    p_calendar_day_date_fmt => 'MM/DD/YYYY',
    p_cur_local_date => '');
    end;

  • ORA-20001: INVALID USER: ACCESS DENIED!! - TIVOLI

    version 10.2.0.2
    SQL> connect tivoli
    Enter password:
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-20001: INVALID USER: ACCESS DENIED!! - TIVOLI
    ORA-06512: at line 77
    Edited by: DBA2008 on Feb 12, 2010 11:59 AM

    DBA2008 wrote:
    i disable the trigger messing up tivoli user,& i am able to login fine, wondering if i enable it back it will do the same?If you keep doing the same thing, you can expect the same results.
    Perhaps you should analyze the trigger to figure out
    1) what it was supposed to be doing that is not being done since you disabled it
    2) why it was throwing the error . . .

  • UPGCUST (Action Delete on Delivered Objects)

    We are doing an Application Upgrade from 8.9 to 91 FSCM FP2.
    On the step where we copy UPGCUST on Higher tools from COP to Higher VERSION DEMO,post copy i am reviewing the copy logs.
    I am seeing for some field and some record field which had status as Absent(COP) to Changed(Higher Version),Oracle is selecing a flag as DELETE .
    Now that my copy has completed it has deleted the fields from Higher Version DEMO.
    Why is Oracle making us delete its own delivered objects?

    >
    Why is Oracle making us delete its own delivered objects?
    >
    It is not Oracle that is making the vanilla object to be deleted, it is you...
    The UPGCUST project is a project with your customizations you want to reapply to the new version from the previous version.
    If you have customized a record and that record in the new release has for example additional fields, your compare will show these fields as absent in your current env and therefor will delete it from the new env.
    See following doc on the correct compare flags to select.
    E-UPG: Upgcust - Custom Added Objects Removed From Project Running Compare in Change Assistant [ID 1274829.1]
    Two more docs with additional info on the UPGCUST project that may help you understand the process
    How does UPGCUST project work? [ID 1266647.1]
    E-UPG: Preserving Customizations with the UPGCUST Project [ID 645829.1]
    Regards,
    Hakan

  • Trying to produce report but have ERROR ORA-00900: invalid SQL statement

    Hi,
    I am new to Oracle so have been experimenting with a few things to get the hang of it. I have been trying to produce a report, but keep getting the error: ORA-00900: invalid SQL statement.
    This happens at my first line of code where I have COLUMN <column_name> HEADING <Heading_name>
    So I am a bit confused - is there a command that I am supposed to issue that indicates to SQL*Plus that I am trying to create a report?
    Also, if I just delete the COLUMN <column_name> HEADING <Heading_name> rows and just start at BREAK ON <column_name> SKIP 1, it produces the same error.
    I am using Oracle 8.0.6 - does this make a difference?
    Here is my code:
    COLUMN a.p_ctryid HEADING 'Country'
    COLUMN s.p_animid HEADING 'Stallion ID'
    COLUMN s.p_uname HEADING 'Stallion Name'
    COLUMN a.p_animid HEADING 'Horse ID'
    COLUMN d.p_careertp HEADING 'Career'
    BREAK ON s.p_animid SKIP 1
    BREAK ON d.p_careertp SKIP 2
    COMPUTE SUM LABEL 'Total' OF d.p_careertp ON REPORT
    SELECT DISTINCT a.p_ctryid, s.p_animid, s.p_uname, a.p_animid, d.p_careertp
    FROM p_owby.p_animal a, p_owby.p_animal s, p_owby.p_mating m, p_owby.p_anim_dtl d
    WHERE m.p_mateyr = 2001
    AND a.p_animid = d.p_animid
    AND a.p_animid = m.p_animid
    AND a.p_animid > 0
    AND s.p_animid = a.p_sire
    AND a.p_ctryid IN('GB','IRE')
    GROUP BY a.p_ctryid, s.p_animid, s.p_uname, d.p_careertp, a.p_animid
    ORDER BY a.p_ctryid, s.p_animid, d.p_careertp
    Any help would be greatly appreciated!
    Thanks in advance!

    You are trying to do COMPUTE SUM ... ON REPORT but there is no BREAK ON REPORT specified. The computed sum will not be shown unless you also break on report. see below demonstration. first select has no sum even though we have specified COMPUTE. The second select shows the sum since now we have done break on report.
    SQL> compute sum of sal on report
    SQL> select * from scott.emp order by empno ;
         EMPNO ENAME      JOB              MGR HIREDATE           SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-1981        950                    30
          7902 FORD       ANALYST         7566 03-DEC-1981       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-1982       1300                    10
    14 rows selected.
    SQL> break on report
    SQL> select * from scott.emp order by empno ;
         EMPNO ENAME      JOB              MGR HIREDATE           SAL       COMM     DEPTNO
          7369 SMITH      CLERK           7902 17-DEC-1980        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-1981       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-1981       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-1981       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-1981       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-1981       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-1981       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-1987       3000                    20
          7839 KING       PRESIDENT            17-NOV-1981       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-1981       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-1987       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-1981        950                    30
          7902 FORD       ANALYST         7566 03-DEC-1981       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-1982       1300                    10
    sum                                                         29025
    14 rows selected.
    SQL>

  • Turn off optimistic locking to prevent ORA-20001

    Hi there,
    Is it possible to turn-off optimistic locking for tabular forms generated by wizard?
    I am using APEX 2.2.0.
    I am having ORA-20001 update errors, the only person who is using the form is me. I have read in this forum the solutions some of you have posted to resolve ora-20001 update or delete failures but they all do not work.
    I have also read that a turn on and off future will be available in APEX 3.0
    Do maybe know how I can turn-off the optimistic locking for my table.
    Regards
    RobH

    I think that the checksum is calculated from the values in the editable fields (hidden or otherwise) when the query is done. If you disable a field later on then it is not included in the checksum for the multi-record update, so you'll get an error when you submit changes.
    This isn't anything to do with whether fields are shown or not, but I've just encountered this problem and found there's nothing about it on the forums. Since your problem is also not on the forums I thought it might be the same thing.

  • Error Message - ORA-01722 Invalid Number

    Hello:
    I have the following situation. When I create an organization, a record is inserted into the following table, AGREEMENTS, and populates four fields.
    I have an update form which selects the organization from the AGREEMENTS table so the user can populate the rest of the table. In addition, on this form, there is a drop-down box which allows the user to select the name of a legal document along with the version of the document in which the user needs to select. This select list is created via an LOV joining three tables. The item name for this select list is :P6_DOCUMENT.
    The code for the LOV is:
    SELECT S.DOC_NAME||' - '|| O.VERSION_NO AS DOC, O.ORG_DOC_CURR_KEY
    FROM SUPPORTING_DOCS S,
         ORG_DOC_CURR_VER O,
         AGREEMENTS H
    WHERE
        S.DOC_TYPE = 'HISA'
    AND S.SUPPORTING_DOC_KEY = O.SUPPORTING_DOC_KEY
    AND H.ORG_KEY_LE = O.ORG_KEY
    AND O.ORG_KEY=:P6_ORG_KEY_LEWhen the user completes the form, the SUBMIT process is a PL/SQL block consisting of an UPDATE statement to update the AGREEMENTS table based on the selected organization and an INSERT statement to insert a record into the AGREEMENTS_DOC table to store the value stored in :P7_DOCUMENT.
    Ok, now here is where my problem starts.
    When I first bring up the form and I select the organization I want to update, I click the Search button to find the organization and I receive the following error message: ORA-01722 Invalid Number.
    At this point all I'm doing is a basic search. There is no insert/update or anything going on. I'm not understanding why I would be receiving this error message.
    The search is based on the database column ORG_KEY_LE whose datatype is NUMBER.
    In my application, the item assigned to ORG_KEY_LE is P6_ORG_KEY_LE.
    I have a PL/SQL block process created (On Load-Before Header) in the Page Rendering area of my page definition. The PL/SQL code that is written is:
    BEGIN
    IF :P6_SEARCH_ORG != '0' THEN
    :P6_ORG_KEY_LE := :P6_SEARCH_ORG;
    END IF;
    END;I then have an Item created, :P6_SEARCH_ORG, which is a Select List. In the LOV portion of the page for this item, I have the following:
    select ORG_KEY_LE display_value, ORG_KEY_LE return_value
    from AGREEMENTS
    order by 1The reason for using this table is because this table contains the newly created organization which needs to be updated with the remaining columns of data.
    I then have a Search button in the Button area which has the following settings:
    Button Position: Region Template Position #CHANGE#.
    Condition Type: Value of Item in Express 1 is NULL.
    Expression 1: :P6_ORG_KEY_LE.
    To troubleshoot this problem, I created two pages, one page to do the UPDATE and the second page to do the INSERT.
    The SEARCH functionality in both pages are identical.
    When I run my UPDATE page, which only involves updating the missing fields, the process works. I have my search box, I'm able to search for the organization, make my updates, and I'm good.
    When I run my INSERT page, which involves inserting the record with the assigned document, I receive the error message after I click the SEARCH button. In order to INSERT the record into this table, I first need to SELECT the organization that was UPDATED in the AGREEMENTS table (using the UPDATE page described in above paragraph). When I select the organization, the user can then assign the appropriate legal document to the organization and insert the record into the AGREEMENTS_DOC table.
    Can someone help me with this error message? I'm not sure why I am able to perform my SEARCH on a page with the UPDATE statement, not able to perform the SEARCH on the page with my INSERT statement, and not be able to perform the SEARCH on the page that combines the UPDATE and INSERT statements.
    I did some more troubleshooting and I do believe my SUBMIT process which contains the INSERT statement is the issue. I created a fourth page which doesn't have a SUBMIT process. I brought up the form, searched for my organization and the information for that organization appeared. The problem is definately with my UPDATE/INSERT process.
    The PL/SQL block for the Submit process is the following:
    BEGIN
    update
        MDD.HISA_AGREEMENTS
         set
           LAST_UPDATED_BY=V('APP_USER'),
           APPROVER_SALUTATION=:P6_APPROVER_SALUTATION,
           APPROVER_FIRST_NAME=:P6_APPROVER_FIRST_NAME,
           APPROVER_MIDDLE_INITIAL=:P6_APPROVER_MIDDLE_INITIAL,
           APPROVER_LAST_NAME=:P6_APPROVER_LAST_NAME,
           APPROVER_NAME_SUFFIX=:P6_APPROVER_NAME_SUFFIX,
           APPROVER_EMAIL_ADDR=:P6_APPROVER_EMAIL_ADDR,
           SPONSOR_EMAIL_ADDR=:P6_SPONSOR_EMAIL_ADDR,
           APPROVER_TITLE=:P6_APPROVER_TITLE
    where
          ORG_KEY_LE=:P6_ORG_KEY_LE
    INSERT INTO
        HISA_AGREEMENT_DOCS
          (HISA_AGREEMENT_DOC_KEY,
           ORG_KEY_LE,
           APPLICATION_KEY,
           STATUS,
           STATUS_DATE,
           CREATED_BY,
           ORG_DOC_CURR_KEY)
    VALUES
          (HISA_AGREEMENT_DOC_KEY_SEQ.NEXTVAL,
           :P6_ORG_KEY_LE,
           :P6_APPLICATION_KEY,
           'C',
           SYSDATE,
           V('APP_USER'),
           :P6_DOCUMENT)
    END;There is something wrong with the above statement and I do not understand what it could be. Can someone help?
    Thanks for the help.

    Hi,
    I believe you are on to something.
    The select list for item :P6_DOCUMENT appears when I first bring up the form. When I select my organization and receive the error message, I clicked on the Session in the Developer's bar. The value in item/field :P6_DOCUMENT shows %null%.
    This is the path in which my user would like to accomplish her task:
    1. Select an organization
    2. Display the information for that organization from the AGREEMENTS table
    3. Enter the data for the remaining fields in the AGREEMENTS table
    4. Select the document (:P6_DOCUMENT) from the drop-down.
    5. Click Submit
    6. Update the AGREEMENTS table with data entered in #3.
    7. Insert a record into the AGREEMENTS_DOC table with the selection from #4.
    Somehow I need the :P6_DOCUMENT field not to show the %null% during the SEARCH functionality. I think that is causing the problem.
    How do I fix this?

  • Interface not running: ORA-01722: invalid number

    Hi,
    I have migrated my ODI master&work repositories from my development-machine to my local laptop and now I get this error when executing one of my Interfaces:
    ORA-01722 Invalid number (I translated this because I get this error in Dutch!!).
    On my development-machine, I do not get this error, and IF I get errors, I get them in English (which I prefer).
    So, my questions are:
    1) how do I change my errors on my local machine from Dutch to English?
    does that depend on the database? or on java? or on ....?
    2) can I make changes in ODI to get this Interface running?
    Thanks in advance!
    Steffen
    ps. I already tried
    a) to set in 'odiparams.bat'
    ODI_ADDITIONAL_JAVA_OPTIONS='-Duser.language=en -Duser.country=US"
    but this didn't help...
    and
    b: set my Oracle database run in AMERICAN_AMERICA.
    set my Locale Settings to English [US]
    .. still no luck.. ;-((

    I think to change the language of the error message of oracle you got to change the value of the variable NLS_LANG
    you can change it only for a session if you want to try
    alter session set NLS_LANGUAGE='AMERICAN'
    and you can verify your language with this script
    SELECT USERENV ('language') FROM DUAL
    then you can see if the problem come from here
    And for your interface this message could come from a character which is not valid in Dutch.
    execute this to see which numeric delimiter is allowed:
    SELECT * from NLS_SESSION_PARAMETERS where
    PARAMETER='NLS_NUMERIC_CHARACTERS'
    which this I hope you to find your error

  • Why do I get a "DATE1 : ORA-00904 Invalid identifier" error ?

    Hi,
    Despite my efforts, I can't see why I get a "DATE1 : ORA-00904 Invalid identifier' error whith this request.
    {code}With S1 as (
    SELECT TRUNC(DATE1, 'MM'),
    ROUND(SUM(VALEUR), 2)
    FROM EVV_E036
    GROUP BY TRUNC(DATE1, 'MM')
    ORDER BY TRUNC(DATE1, 'MM'))
    SELECT n,
    NVL(ROUND(SUM(Valeur),2), 0)
    FROM (select add_months(to_date('01/01/2006', 'dd/mm/yyyy'), level - 1) n FROM dual connect by level <= 12) months
    LEFT JOIN S1
    ON months.n = TRUNC(DATE1, 'MM')
    GROUP BY n
    ORDER BY n{code}
    The line in error is this one : {code}ON months.n = TRUNC(DATE1, 'MM'){code}
    Any idea much appreciated !
    Regards,
    Christian

    hi,
    I have done this and get no more errors. Now I see that the values I get are equal to 0. Or, I do get values different from 0 in my table ! I can't see why the left join gives 0. I have to dig this and come back tomorrow.
    With S1 as (
    SELECT TRUNC(DATE1, 'MM') Date1,
           ROUND(SUM(VALEUR), 2) Debit
    FROM   EVV_E036
    WHERE  CLEF_VAR = (SELECT CLEF_VAR FROM SITE_ECHELLE WHERE SITE = 'E036')
    AND    DATE1 BETWEEN TO_DATE ('01/01/2007000000', 'DD/MM/YYYYHH24MISS') AND TO_DATE ('31/12/2007235959', 'DD/MM/YYYYHH24MISS')
    GROUP  BY TRUNC(DATE1, 'MM')
    ORDER  BY TRUNC(DATE1, 'MM'))
    SELECT n,
           NVL(ROUND(SUM(Debit),2), 0)
    FROM   (select add_months(to_date('01/01/2006', 'dd/mm/yyyy'), level - 1) n FROM dual connect by level <= 12) months
    LEFT JOIN S1
         ON months.n = date1
    GROUP BY n
    ORDER BY n

  • ORA -20001 : FND_CANT_INSERT_USER_ROLE

    Hi
    ORA -20001 : FND_CANT_INSERT_USER_ROLE
    I am getting this error while creating new user and assigning responsibilities through sysadmin .When I create new user with other user then sysadmin.It is working .
    Can anybody suggest how to resolve it.
    Tinku
    Edited by: Tinku on Oct 14, 2008 11:00 PM

    Hi hsawwan
    Thanks for reply."Metalink Note: 559347.1 - Error ORA-20001: FND_CANT_INSERT_USER_ROLE When Assiging A Responsibility To A User On R12 Upgraded From 11i" gives information about changed behaviour after upgrade application to R12.In my case application has not been upgraded . Cause section of Metalnk note "Note: 731851.1 - Cannot Remove Enddate On A Responsibility For A User" given that query
    CAUSE
    select subscription_rule_function from wf_active_subscriptions_v where event_name in ( 'oracle.apps.fnd.wf.ds.userRole.updated', 'oracle.apps.fnd.wf.ds.userRole.updated');
    Retruns no Values
    but
    while I run forllowing query .
    select subscription_rule_function from wf_active_subscriptions_v where event_name in ( 'oracle.apps.fnd.wf.ds.userRole.updated', 'oracle.apps.fnd.wf.ds.userRole.updated');
    I got following result.
    SUBSCRIPTION_RULE_FUNCTION
    WF_ROLE_HIERARCHY.Cascade_RF
    fnd_bes_proc.process_event
    java://oracle.apps.jtf.cache.DBEventSubscription
    WF_ROLE_HIERARCHY.Aggregate_User_Roles_RF
    wf_rule.success
    So I think my case is different from these case.Please suggest me ,How can I resolve this issue.
    Tinku

  • Acrobat 8 Standard: "There was an error opening this document. Invalid action object."

    Hi,
    Acrobat 8 had been working on my computer previously, up until this morning. Now any time I try to open a pdf, I get the error, "There was an error opening this document. Invalid action object." I can't get any pdfs on my computer to open, including pdfs that I know work as they opened fine last week. I don't think I've had any updates done to my computer over the weekend. Any ideas why it now doesn't work?

    Open Acrobat and go to HELP>Repair and see if that helps. After the repair, you may also want to do HELP>Updates.

  • IR: ORA-20001: get_dbms_sql_cursor error ORA-00904: : invalid identifier

    Hi everyone,
    has anyone else had this error which has been driving me round the bend during the last three days?
    I have an interactive report which used to work fine.
    Now it happens (when the page loads/a filter is en- or disabled) that - from time to time, but unpredictable - I receive
    ORA-20001: get_dbms_sql_cursor error ORA-00904: : invalid identifier
    The report is based on a table function.
    I will try to set up a testcase and post the link here, but so far I haven't managed to force the error to occur.
    But maybe someone else has already bumped into this kind of error? I would be grateful for any hints!
    Best regards,
    Sabine
    Application Express 4.1.0.00.32
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production

    Hi Jari,
    I changed the type definition (the return type of the table function) and extended the select list in the source of the IR.
    I do not use 'select *' but reference every column explicitly. So APEX easked me whether to add the new column.
    I also tried deleting in recreating the region, but no luck.
    Any more ideas?
    Best regards,
    Sabine

  • TO_NUMBER and ORA-01722 invalid number pls delete

    I cannot see where to delete a post I made. I found out my problem. It was in my NLS settings. Decimals were set to be commas instead of periods.
    please disregard this post, and delete if you are a moderator
    I recently tried to bring in lat/long coordinates from a VARCHAR2 field (and even as a flat file) into a NUMBER field with a setup of NUMBER(20,13) to ensure I'd capture all of the signifigant digits.
    I even ran this through a procedure to check if the data is a number first, and update only. I've found however that I keep getting the ORA-01722 invalid number error.
    So I started testing out some points, and came across this:
    select to_number('-79.662965387') from dual;
    this query results in the invalid number error. I don't want to have to load these as an SDO GEOMETRY object, has anyone encountered this scenario before?
    Or is my choice of 13 decimal places too high for Oracle?

    I just ran that code in my database (10g) and it returned this
    select to_number('-79.662965387') from dual;
    TO_NUMBER('-79.662965387')
                    -79.662965
    1 row selected.Message was edited by:
    Tridith

Maybe you are looking for

  • Lack of Migration support for 6.0 & 10g users

    Hi, One of the 1st things we wanted to do with the beta as an existing customer is to validate migrating a project from our existing Production version (6.0) to 11g. While the import appears to work, opening any imported diagram throws an XML parsing

  • How to hide account photo in mail

    How to I get Mail to not show my account picture? I like my account picture, I just don't want it to print out or be seen in the upper right hand corner of my emails. How do I turn this off? I've looked and looked, but still can't figure it out. I st

  • CIN Capabilities

    Hi All, I've been searching postings related to CIN but couldn't find an appropriate answer to my requirement. Here's our company's business process overview, pl provide the capabilities/feasibility of CIN to map these scenarios. Based on your questi

  • Indesign cc 2014crashes at startup while loading Trackers? What to do?

    Indesign cc 2014 crashes at startup while loading Trackers? What to do? I've a windows 8 64bit system all other adobe product work fine.

  • Publish a project in a managed servers

    How to publish a project, through OEPE, in a managed servers? I am using OEPE 11.1.1.6.1.