Update procedure on form

I have a form built on a view. Instead of using the automatic row processing for updates (which won't really work on this view) I want to have a procedure handle the updates. This is my standard way of working in Forms 9i.
Anyway when the procedure executes I get a flow.accept error. looking in the logs I found this
[Tue Aug 01 09:31:26 2006] [error] [client 199.82.243.71] [ecid: 1154442686:192.168.15.101:2364:2632:280,0] mod_plsql: /pls/htmldb/wwv_flow.accept HTTP-404 \nwwv_flow.accept: SIGNATURE (parameter names) MISMATCH\nVARIABLES IN FORM NOT IN PROCEDURE: P_T101,P_T102,P_T103,P_T104,P_T105,P_T106,P_T107,P_T108,P_T109,P_T110,P_T111,P_T112,P_T113,P_T114,P_T115,P_T116,P_T117,P_T118,P_T119,P_T120,P_T121,P_T122,P_T123,P_T124,P_T125,P_T126,P_T127,P_T128,P_T129,P_T130,P_T131,P_T132,P_T133,P_T134,P_T135,P_T136,P_T137,P_T138,P_T139,P_T140,P_T141,P_T142,P_T143,P_T144,P_T145,P_T146,P_T147,P_T148,P_T149,P_T150,P_T151,P_T152,P_T153,P_T154,P_T155,P_T156,P_T157,P_T158,P_T159,P_T160,P_T161,P_T162,P_T163,P_T164,P_T165,P_T166,P_T167,P_T168,P_T169,P_T170,P_T171,P_T172,P_T173,P_T174,P_T175,P_T176,P_T177,P_T178,P_T179,P_T180,P_T181,P_T182,P_T183,P_T184,P_T185,P_T186,P_T187,P_T188,P_T189\nNON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM: \n
There are items shown on the form which don't get passed into the procedure.
here's the call
write_people_addresses(
:P11_PEOPLE_ID,
'1',
:P11_ADDRESS_FROM_DATE,
:P11_ADDRESS_TO_DATE,
:P11_BAD_ADDRESS_FLAG,
:P11_ADDRESS_LINE_ONE,
:P11_ADDRESS_LINE_TWO,
:P11_ZIP_CODE,
:P11_CITY_NAME,
:P11_STATE_CODE,
:P11_RES_CODE,
:P11_COUNTRY_NAME,
:P11_PREF_ADDRESS_FLAG,
:P11_ALT_ADDRESS_FROM_DATE,
:P11_ALT_ADDRESS_TO_DATE,
:P11_ALT_BAD_ADDRESS_FLAG,
:P11_ALT_ADDRESS_LINE_ONE,
:P11_ALT_ADDRESS_LINE_TWO,
:P11_ALT_ZIP_CODE,
:P11_ALT_CITY_NAME,
:P11_ALT_STATE_CODE,
:P11_ALT_RES_CODE,
:P11_ALT_COUNTRY_NAME,
:P11_ALT_PREF_ADDRESS_FLAG);

Hello,
If I understand your problem, you are posting a form and getting a 404 error with wwv_flow.accept. APEX uses the following procedure specification for posting pages:
procedure accept (
p_request in varchar2 default null,
p_instance in varchar2 default null,
p_flow_id in varchar2 default null,
p_company in number default null,
p_flow_step_id in varchar2 default null,
p_arg_names in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_arg_values in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_accept_processing in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_v01 in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_v02 in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_v99 in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_v100 in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_t01 in varchar2 default null,
p_t02 in varchar2 default null,
p_t99 in varchar2 default null,
p_t100 in varchar2 default null,
f01 in wwv_flow_global.vc_arr2 default empty_vc_arr,
f02 in wwv_flow_global.vc_arr2 default empty_vc_arr,
f49 in wwv_flow_global.vc_arr2 default empty_vc_arr,
f50 in wwv_flow_global.vc_arr2 default empty_vc_arr,
fcs in wwv_flow_global.vc_arr2 default empty_vc_arr,
x01 in varchar2 default null,
x19 in varchar2 default null,
x20 in varchar2 default null,
p_map1 in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_map2 in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_map3 in wwv_flow_global.vc_arr2 default empty_vc_arr,
p_survey_map in varchar2 default null,
p_flow_current_min_row in varchar2 default '1',
p_flow_current_max_rows in varchar2 default '10',
p_flow_current_rows_fetched in varchar2 default '0',
p_debug in varchar2 default 'NO',
p_trace in varchar2 default 'NO',
p_md5_checksum in varchar2 default '0',
p_page_submission_id in varchar2 default null)
Looks like your items are not in the arguments in the procedure. It is my guess based on the numbers that you created a form on a view with more then 100 columns. At this time (including APEX 2.2) you are limited to 100 items per page. My recommendation is to break up your form over multiple pages; you may find it works faster as well.
Hope this helps,
Mike

Similar Messages

  • How Do I Make Updated Procedure in the Program Unit of the Form to Work?

    I have updated a procedure in the Program Unit of the Form that I modified. I am not sure what are the proper ways to compile or load the changed procedure in my form to make sure the changes work. Please help me with the following questions:
    Do I have to use Oracle Procedure Builder to compile the updated procedure in order to have the form work properly? If so, how do I make the list of procedures in the program unit of my form to come up after I have the Oracle Procedure Builder opened and connected to our database?
    Couldn't I just compile the form after the changes are made to the procedure (Body) in the Program Unit of the form in the Forms Builder?
    Any thoughts and/or suggestions on this are welcome.
    FYI, we are in Oracle Forms 6.i with Oracle database version 10.2.0.2.
    Thanks.

    There was no errors what so ever, no triggers and other module errors, when I compiled and created an executable for my form.
    If the database is not connected, Forms Builder would not allow me to compile/execute any forms so I am pretty sure that the database was connected when I did 'CTRL' + 't' to create an executable.
    FYI, the following is an excerpt from Oracle Procedure Builder Help:
    A procedure is a subprogram that performs a specific action. ...
    A procedure has two parts:
    *     specification (spec for short)
    *     the body
    Specification
    The procedure spec begins with the keyword PROCEDURE and ends with the procedure name or a parameter list. Parameter declarations are optional. Procedures that take no parameters are written without parentheses. For example, the specification of procedure proc1 is displayed below:
    PROCEDURE proc1 (param CHAR);
    Body
    The procedure body begins with the keyword IS and ends with the keyword END followed by an optional procedure name. The procedure body has three parts: a declarative part, an executable part, and an optional exception-handling part.
    and all of other procedures, that do not have an '*' next to the procedure name in the Program Units of my form, contain both Spec and Body.
    p.s. I remember the '*' next to the procedure name means the procedure has been changed, and ... (sorry, I don't remember the rest...)
    Thanks.

  • Block with more than one table type agurment -  Update Procedure for Block

    Hi,
    I have one form with 3 Block. First Block is single row block, and other 2 are details block . The details balocks are based on the Procedure datasource, because of the complex query conditions. Now my requirement is When Inserting / Updating the Master Block (Single Row Block), I need to get the values in the two details block , because I need to update some other tables also based on these values. I created a procedure with two Table Type parameters (for each details block) , but when I using this procedure as the Update Procedure Name in the block, I am getting the error Only One table type arguement is allowed. Is there any other method to implement this.
    Thanks in advance.

    Rizly,
    A quick summary to make sure I understand your requirements. You have a single row base table master block with two detail blocks that are based on Procedures. When you update the single row base table master block, you need all of the data in the two procedure based detail blocks as there are updates that you have to perform to other tables that use this data. You have created a stored procedure that take two PL/SQL tables as parameters, but you are getting the error that only 1 table parameter is allowed.
    I need to ask you a few questions first. What is your Forms version? The stored procedure you created; are you using this procedure in the "On-Insert, On-Update, On-Delete" triggers or do you call the procedure in one of the Base Table block ("Key-Commit, When-Button-Pressed" or other trigger)? When you modify or add a new Master block record are you adding values to the detail blocks or using values from the previous Master block record?
    If you are using your procedure in the On-Insert, On-Update or On-Delete trigger(s), then based on your description, the error you are receiving is correct. The "On-..." triggers are constrained in that their procedures expect only a single PL/SQL table, Table of Records or Ref Cursor as a parameter. This is a Forms constraint - not a PL/SQL constraint as Forms is expecting you to only perform actions on the block where the "On-..." Trigger is located.
    Perhaps you should consider creating a database Package that has two package specification constructs (Ref Cursor, Table of Records, etc) you can populate from Forms and then simply call the package procedure that will use the Ref Cursors to perform the needed update or inserts.
    Hope this helps.
    Craig...
    If mine or someone elses response was helpful, please mark it accordingly

  • How to call Pl/sql procedure from form ?

    Hi all,
    I need to call a procedure from form after the user has pressed the button to invoke the sql procedure, can anyone please advise me on how to do it ?
    Thanks.
    Lim

    Hi,
    Thanks for your reply.
    yes, I have include in when-button-pressed trigger as
    AIC_PROC_AR_CCID_UPD;
    Below is my procedure :-
    CREATE OR REPLACE PROCEDURE AIC_PROC_AR_CCID_UPD(errbuf out Varchar2,
              retcode out Number ) is
    VAR_BUF VARCHAR2(240);
    Cursor C1 is
    SELECT CONCATENATED_SEGMENTS ACCT,
    SEGMENT5 SEG5
    FROM AIC_GL_COA AGC
    WHERE AGC.CODE_COMBINATION_ID IS NULL;
    Rec1 C1%RowType;
    BEGIN
    FOR Rec1 IN C1 LOOP
         BEGIN
         UPDATE AIC_GL_COA A SET ( DESCRIPTION, CODE_COMBINATION_ID, SEGMENT5 )=
         ( SELECT FFVT.DESCRIPTION, GLA.CODE_COMBINATION_ID, GLA.SEGMENT5
         FROM GL_CODE_COMBINATIONS_KFV GLA,
         FND_FLEX_VALUES_TL FFVT,
         FND_FLEX_VALUES FFV
         WHERE GLA.CONCATENATED_SEGMENTS = REC1.ACCT
         AND FFV.FLEX_VALUE = REC1.SEG5
         AND FFV.FLEX_VALUE_ID = FFVT.FLEX_VALUE_ID
         AND FFV.FLEX_VALUE_SET_ID = 1002673 )
         WHERE A.SEGMENT5 = REC1.SEG5 ;
         EXCEPTION
         WHEN NO_DATA_FOUND THEN
         FND_FILE.PUT_LINE(FND_FILE.OUTPUT, 'NO RECORD UPDATE !!');     
         END;
    END LOOP;
    COMMIT;
    RETURN;
    END;
    However, when I try to compile it, error prompt :-
    Error 306 at line 1, column 1
    wrong number or types of arguments in call to 'AIC_PROC_AR_CCID_UPD'
    Error 0 at line 1, column 1
    statement ignored.
    By the way, my form 6i is running at client site and connection to procedure in unix server. Will this is ok ?
    Thanks
    Rgds
    Lim

  • Different session used when calling stored procedure from form

    after commiting data in a form to a table, a stored procedure is called that inserts the data written to the table into several other tables. Some columns in the original table are updated - no commit is issued in the procedure. On returning from the procedure the form is re-queried but the updated columns don't contain the updates. This seems to imply that the stored procedure is running as a different session to the one of the form.
    Is this the case? Can we make the form and the stored procedure use the same session so that the data is available in both without having to commit in the procedure?

    No. They should be within one session unless you explicitly open a new session.
    The reason why you dont see updates of the data block when you requery is probably the changes on the form never go to the back end. I think first you have to make sure data changes go to db table. You can do a commit_form before calling the stored procedure and open up another session (e.g. sqlplus) to check the data in the table changed or not.

  • Execute procedure from forms

    Dear all,
    i want to execute a procedure from forms. my code is below for calling procedure, this code is working fine from the SQLPLUS, but not working from forms.
    forms_ddl('execute audit_sessions('||''''||'et20'||''''||',sysdate,'||''''||'HELP'||''''||')');my procedure is below
    CREATE OR REPLACE PROCEDURE audit_sessions(uname varchar2,logon_date date,APP_USER VARCHAR2) is
    begin
    insert into admin.session_audit values(uname,logon_date,APP_USER);
    commit;
    end;my table is below
    SQL> desc session_audit
    Name                    Null?    Type
    ACTIVE_DIRECTORY_USER            VARCHAR2(30)
    LOGON_TIME              NOT NULL DATE
    APPLICATION_USER        NOT NULL VARCHAR2(30)kindly help. i am using oracle 10g database and forms version 9.0.4.0.19
    Regards.
    Edited by: Maahjoor on 09-Feb-2013 19:34
    Edited by: Maahjoor on 09-Feb-2013 19:35
    Edited by: Maahjoor on 09-Feb-2013 20:18

    Wa Alaikum Salam,
    Dear Ahmad Rafiq,
    it is compiled without error, so i think it should work, but now currently the forms is opened by some user,
    as soon as i am able to delete the old one and paste the current one, i will update you and will mark the answer correct accordingly.
    thank you so much dear.

  • Procedures in Forms

    Hi,
    I created a package and a procedure in Forms 10g to do DML operations in the forms window. All DML has to be done only through this package instead of the DML allowed in the Forms application - hence, I've diabled the Insert Allowed, Delete Allowed and Update Allowed options.
    I want this package.procedure to be called when the Insert/Delete button in the runtime toolbar is clicked or the user tends to update the fields in the form page.
    Kindly let me know, how to access the Oracle provided toolbar and enable this.
    Thanks,
    Mukunthan L

    Mukunthan Iyer wrote:
    I created a package and a procedure in Forms 10g to do DML operations in the forms window. All DML has to be done only through this package instead of the DML allowed in the Forms application - hence, I've diabled the Insert Allowed, Delete Allowed and Update Allowed options.You DO NOT_ want to do that!!!
    What you are trying to do is to disable all the automatic processing that Oracle Forms provides. And there is far more going on behind the scene that you are ever aware of.
    If you continue down that path, you are in for loads of problems, and eventual failure at the end.
    Learn to use Forms they way they are intended first, or you will not succeed.

  • Batch procedure in Forms 10g, calling rdf and send by mail

    Hi all,
    I need your advice regarding my task: i have a table with invoices of some clients. I have created a report in Oracle Reports 10g R2, so to have a pdf with all the data from this table.
    I have created a form in Forms 10g R2, displaying in a screen one field, where the user can choose the date of invoice. Then i will query by that date all my invoices in that table, and then i want to create a procedure in Forms, so that for every line in that table with the invoice date just chosen i will run HOST(rwrun ... all my parameters).
    My questions:
    1. I need to read some more about how to create a custom xml so to pass to my rwrun, and depending on the records fetched in my cursors in Forms 10g, i will pass a xml variable to my reports, so i will get the data from Forms 10g in the report created in Oracle Reports 10g. Is there any way that i can grep the errors? I need to create some insertions based on succes on failure, how can i accomplish this?
    2. Is the above described scenario way to complicated to loop throuh a cursor, create a pdf, and mail the pdf until the cursor is totally fetched? Do you recommend me a simpler way to accomplish this task?
    Thank you so much,
    Michael.

    Hello,
    I have a report with all my clients, with their email addresses in the same report. Each client as unique account number or invoice number.
    So i want to burst and distribute each invoice to the corresponding client:
    1. I have set REPEAT ON: INVOICE in oracle reports.
    2. From Oracle Reports, i click on Distribution list, and in the DESNAME i type email_address (which is the column from the table with the invoices).
    3. Then, File >> Distribute. Says: distribution completed succesfully, but nothing happens.
    Question:
    1. Where am i mistaking?
    2. Is there any log activity file that i could see what the application is doing, step by step?
    Thank you,
    Michael

  • Table update in a Form

    I created a Form based on a table (created in Portal) which contains fields that cannot be null.
    Then I modified the table so that the fields have changed (I have more fields that can be null). But these changes aren't updated in my form! It still asks me to fill the fields that are now set to "allow to null".I hope I don't have to built my Form again...
    thank you for your help
    Bertrand
    Bertrand

    Although you modified the table properties, the respective changes now need to be made in the forms design time, you'll have to make sure that "mandatory" checkbox is unchecked for those columns which now allow null values.

  • How to run procedure in forms

    hi to all
    How to run the database procedure in Forms while the program Unit in forms is also having the same name of the database procedure.

    Please address this question to the Portal Applications Forum at http://forums.oracle.com/forums/forum.jsp?forum=7

  • U430 BIOS Update Procedure (fixes wake from sleep issue on Windows 8.1)

    Hopefully this will make the BIOS update process a bit easier.  The following steps address two common questions (Failed BIOS Update and the Windows message about improperly configured Secure Boot).  NOTE: After a successful BIOS update you will want to check additional items in the BIOS not directly covered in the steps below (e.g. Intel Virtualization.... the update disabled this for me.)
    U430 BIOS Update Procedure:
    1. Download the BIOS update from Lenovo (it will be in .exe format... the program will install new BIOS).
    2. Shut down computer.
    3. Use the "Novo" button (tiny button on left side near Power button).
    4. Enter BIOS setup.
    5. Under "Security" select "Secure Boot" and choose "DISABLED" (this allows the BIOS update program to work properly).
    6. Under "Exit" select "Exit Saving Changes".
    7. Computer will reboot. Log in to Windows (it will have a message stating "Secure Boot not configured properly" this is expected).
    8. Run the Lenovo BIOS program (this will reboot the computer and you should see an update status screen). Once finished, the computer will reboot. Log in to Windows (the "Secure Boot" message will still be there) and then turn the computer OFF (I've found that turning off the computer from the log-in screen doesn't completely shut down the computer. If that's the case then hold the Power button until it does shut down).
    9. Use the "Novo" button and enter BIOS setup.
    10. Under "Security" make sure "Secure Boot" is ENABLED.
    11. Also under "Security" select "Restore Factory Keys" and hit Enter. Select "YES" (this step along with our previous step will make Windows happy).
    12. Under "Exit" select "Exit Saving Changes" (computer reboots and all should be fine!)

    Hi,
    Generally speaking, this problem should be caused by hardware driver problem. Such as Graphic driver, NIC driver, etc. Please check computer driver edition, make sure  they are compatibility with Windows 8.1.
    Actually, I made a search on Acer official site, the model of your computer doesn't have all hardware driver provided for Windows 8.1. Such as Graphic driver. You can refer to the link below for more details.
    http://us.acer.com/ac/en/US/content/drivers
    In my opinion, it would be better to contact ACER, to check whether this serial computer had the same problem with yours. 
    Roger Lu
    TechNet Community Support

  • IPhoto version 9.4.3 update procedure is not responding.

    Hi,
    I have a problem concerning a normal software update. I have a MacBook Pro runnig OS X 10.8.3 (12D78).
    Two days ago i got a normal message telling that there is an update available for a new verson of iPhoto (9.4.3)
    Everything went as normal to the point when it had downloaded 1,12 GT / 1,12Gt. Since then has nothing happened. The update procedure has been frozen and now i don't have any access to my iPhoto because it says that IPhoto can not be opened while updating...
    This has been going on now for two days and i wonder if there are any information available of this problem and if there are any solution to solve the problem.
    For me it seems that there is a bug in the update procedure which courses the program freeze..
    I would appreciate any information to solve the problem...

    Ok. Now I finally succeeded to update the iPhoto from a testaccount which i made for this purpose.
    The updated iPhoto works fine also from my own account...
    But the Launchpad on my own account still thinks that iPhoto must be udated. The size of the package on my side is bigger (1,12Gt) when it was on the testaccount side something about 750Mb..
    I followed the instructions of Launchpad and it started to download the package. I interrupted the download and decited to ask your opinion... Should i continue the download or is there a way to reset the update..
    What if it freezes again at the same point...
    I checked the iPhoto version of my account and it is the latest and the same which was allready updated from the testaccount.

  • How to out Dynamic ref cursor from Procedure to Forms

    Hi
    I am trying to out Dynamic ref cursor from Procedure to Forms, But I am unable to do so. however cursor return the value within procedure but I am failed to capture the same in Forms
    Pl advice suggestion if any, Here I am attaching full procedure for reference
    CREATE PACKAGE winepkg
    IS
    TYPE wine IS RECORD ( mynumber number);
    /* Define the REF CURSOR type. */
    TYPE wine_type IS REF CURSOR RETURN wine;
    END winepkg;
    CREATE procedure find_wine
    (col1_in in number,
    c1 out winepkg.wine_type) as
    vsql varchar2(1000);
    cur sys_refcursor;
    x number;
    BEGIN
    vsql:='select bo_id from bo_details where bo_details.bo_id = '||col1_in ;
    open cur for vsql;
    c1:=cur;
    --fetch c1 into x;
    --dbms_output.put_line(x);
    END find_wine;
    In front end forms
    Declare
    TYPE F is REF CURSOR;
    CUR_F F;
    rec number;
    Begin
    break;
    find_wine( 1601480000011078,cur_f ) ;
    Loop
    fetch cur_f into rec ;
    Message(rec ) ;pause;
    exit when cur_f%notfound ;
    End loop ;
    exception
    when others then
    Message(sqlerrm) ;pause;
    End ;

    yo can use
    declare
    c_cursor EXEC_SQL.CursType;
    v_stmt varchar2(2000) = 'select a, b, c from mytab where cond1'; -- you can create this value dynamically
    begin
    c_cursor := Exec_SQL.Open_cursor;
    EXEC_SQL.PARSE(c_articulos, v_stmt);
    EXEC_SQL.DEFINE_COLUMN(c_articulos,1, v_colchar1, 30);
    EXEC_SQL.DEFINE_COLUMN(c_articulos,2, v_colchar2, 15);
    EXEC_SQL.DEFINE_COLUMN(c_articulos,3, v_colchar3, 30);
    v_exec := EXEC_SQL.EXECUTE(c_cursor);
    WHILE EXEC_SQL.FETCH_ROWS(c_cursor) > 0 LOOP
    EXEC_SQL.COLUMN_VALUE(c_cursor,1,v_colchar1);
    EXEC_SQL.COLUMN_VALUE(c_c_cursor,2,v_colchar2);
    EXEC_SQL.COLUMN_VALUE(c_c_cursor,3,v_colchar3);
    assign_values_to_block;
    END LOOP;
    EXEC_SQL.CLOSE_CURSOR(c_cursor);
    end;
    and WORKS IN FORMS 6

  • Update a system form using XML

    Hi all,
    I'm trying to update a system form by adding a tab (folder). The form is Customer Equipment Card (nb 60150), in the service menu.
    I just want to add a folder called Counter.
    When I load the XML file below, I get the following error :
    System.Runtime.InteropServices.COMException (0xFFFFFFFE): Function not supported on current SBO Version - upgrade is required
    If I want to add a button, it's working, but not a folder.
    Something's false in this XML file (I add the good uid before I load it) ?
    Thanks for your help
    Sébastien

    > - Drop the datasource section
    > The error is gone, but I don't see the folder in
    > in the form
    You could try and check wether it's there but invisible (access it in your code and wait for an exception).
    > - Linkto Objet
    > If you look at the XML code of the form, you can
    > can see that all the folder are links to this item.
    > Moreover, when I add the form using VB (it's working
    > that way), the XML result will show linkto = "54"
    I believe. I analyzed another system form and my own forms: None of the tabs are linked to anything. Is this documented? What does it mean?
    > - the data source is SYS_71 for all the folder of the
    > form. I don't understand what you mean when you want
    > me to set the val_on to this datasource
    I looked at the XML source of another system form and the tabs had val_on="SYS_whatever". With my own forms I set val_off="N" and val_on="Y". I remember having had some problems there, but I can't put my finger on it now.
    > - item group
    > I'm using SBO 6.5, I can't find help on that, maybe
    > it's only on 2004.
    No, it's 6.5. It's not in the documentation but you will find it somewhere inside the guts of this forum. As I said, I once had trouble adding tabs cleanly to a custom form using XML.
    Of course, all this is just blindly stabbing into the dark. What else can we do?

  • Update procedure from APEX 3.1 to 3.1.2 on Oracle XE database

    Hello,
    how to make an update of APEX 3.1 to 3.1.2 on an Oracle XE database with the full installation pack (which you get normally at OTN)? I mean the patchset 7313609 from Metalink wont work on a XE database because it doesn't have the opatch feature integrated.
    Can it be the normal update procedure which I would have to use for it:
    @apexins password SYSAUX SYSAUX TEMP /i/
    Thanks ahead,
    Tobias

    Tobias,
    The 3.1.2 patch doesn't use opatch since it's not patching the Oracle binaries etc, it is simply a SQL script that you run that updates the PLSQL packages, code, etc inside the database (plus the new images, javascript etc).
    As such, there's no reason the patch couldn't be run on XE (assuming you are entitled to download the patch etc).
    John.
    http://jes.blogs.shellprompt.net
    http://www.apex-evangelists.com

Maybe you are looking for

  • How to calculate First Date of Posting Period in BEx Query

    Hi,          I have  2 reporting requirements as follows: 1) User will either enter a single posting period in a fiscal year or can enter a range of posting periods. Based on user selection I need to display three key figures in a report. Key figure

  • Printer said incompatible print cartridge

    I was printing some forms from my E-Mail. I printed the first form with no problem  . When i try to print the second form it came up incompatible print cartridge. I try everything I could think out. Can anyone help??? Lisa59

  • I can't use numbers in an Event title in iCal

    I have to use numbers in event titles and when I enter them, they disappear.  I have to go back and edit the event and put them back in. Example:  Show Name - Episode Number - Meeting                    CSI:NY 801 Production Meeting     (As typed)   

  • ORA-36695: The length of GID dimension status is 2. The length of LEVEL dim

    I am using AWM 11.2.2.0.A. I am compiling one of the dimension I created. The following error message i got: An error has occurred on the server Error class: Express Failure Server error descriptions: INI: error creating a definition manager, Generic

  • Webcenter Spaces PS2 - links query

    Hi, Is it possible to link to a document residing in a different group space in PS2? For example, group space 'A'is a Knowledge Center (KB) and contains lots of docs. Group Space 'B' is a project group space, and Group Space 'B' would like to link to