FRM 40738 - Argument 2 to builtin CREATE_TIMER

Recently I migrated from forms 4.5 to forms6i (6.0.8.17.1). Everything worked fine until a few weeks ago. Every new fmx-file I create, gives a very strange error when the user moves his mouse over the icons in the toolbar: 'FRM 40738 - Argument 2 to builtin CREATE_TIMER'. The developers cannot reproduce this bug because it only occurs on the PC's of the users.
Can somebody help me?

-- BEGIN WHEN_MOUSE_ENTER
BEGIN
IF SUBSTR(NAME_IN('SYSTEM.MOUSE_ITEM'),1,INSTR(NAME_IN('SYSTEM.MOUSE_ITEM'),'.')-1) = 'TOOLBAR'
THEN
HINT.ShowButtonHelp;
END IF;
EXCEPTION
WHEN VALUE_ERROR THEN
null;
WHEN OTHERS THEN
null;
END;
-- END WHEN_MOUSE_ENTER
-- ShowButtonHelp is a procedure in a PL\SQL library
PROCEDURE ShowButtonHelp( timedelay NUMBER := 500) IS
t Timer := Find_Timer(BUTTONHELPTIMER);
BEGIN
IF NOT on_windows THEN
RETURN;
END IF;
IF NOT Id_Null(t) THEN
Delete_Timer(t);
END IF;
sync_mouse_info;
IF mouse_item IS NOT NULL AND
mouse_item_is_iconic_button THEN
IF mouse_item_label IS NOT NULL THEN
t := Create_Timer(BUTTONHELPTIMER,timedelay,NO_REPEAT);
END IF;
ELSE
HideButtonHelp;
END IF;
END;
-- sync_mouse_info is a procedure in a PL\SQL library
PROCEDURE sync_mouse_info IS
BEGIN
mouse_item := Name_In('SYSTEM.MOUSE_ITEM');
mouse_canvas := Name_In('SYSTEM.MOUSE_CANVAS');
appInst := TO_NUMBER(
Get_Application_Property(APPLICATION_INSTANCE));
IF mouse_item IS NOT NULL THEN
hWind := TO_NUMBER(
Get_Item_Property(mouse_item,WINDOW_HANDLE));
mouse_item_hint := Get_Item_Property(mouse_item,HINT_TEXT);
IF SUBSTR(mouse_item_hint,1,1) = CHR(0) THEN
mouse_item_hint := NULL;
END IF;
ELSE
hWind := NULL;
END IF;
END;

Similar Messages

  • FRM-40738 cant identify the problem

    Hi Guys i am getting this error again and again :
    FRM-40738 Argument 1 to builtin Report_Object_Status cannot be null.
    I have check the code and to my understanding it is ok, this is the code:
    DECLARE
         report_id Report_Object;
         report_job_id VARCHAR2(100);
         v_rep VARCHAR2(200);
         rep_status VARCHAR2(100);
    BEGIN
         report_id := FIND_REPORT_OBJECT('REPORT1');
         set_report_object_property(report_id,REPORT_FILENAME,'EMP_ALLOW_DET.RDF');
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
         SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESFORMAT,'html');
         --SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_other,' p_prov_id='||V_PROVINCE
         v_rep := RUN_REPORT_OBJECT(report_id);
         rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    --WEB.SHOW_DOCUMENT('http://'||ltrim(rtrim(v_host_name))||'.sct.gov.sa:8888/reports/rwservlet/getjobid'||
    --substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=mas1','_blank');
    WEB.SHOW_DOCUMENT('http://BSS-DC1:9000/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=mas1','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    Please help me out with this problem.
    Regards, Imran

    Hi,
    print out the value of "v_rep" to see if this has a valid Reports ID. In cases where a Reports crashes (see queuemanager for details about the Reports run) it happens that a null value is returned instead of a job ID. This is a bug and should be fixed soon.
    Also, since you are using REPORT_COMM_MODE being SYNCHRONOUS you don't need the LOOP in the while statement. Forms waits for the Reports call to return.
    I know that the while loop is in the example code in the Forms / Reports integration Whitepaper too, but this is not needed. I'll remove it from this paper for its next release.
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    Just use
    rep_status := report_object_status(v_rep);
    Frank

  • Export error :- FRM-40738

    Hi All:
    I've created a custom form based on PO Summary form. When try to export, system gives me following error (while export works fine for PO Summary):
    "FRM-40738: Argument 1 to builtin FND_VIEW cannot be null."
    Any idea what am I missing?
    Thanks,
    -Manish

    Are referring to Oracle Applications? If so, then you should ask this question on one of the Oracle Applications forums.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • FRM-40738 error.

    Hello,
    when tryiing to switch between the tab canvases iam encountreing the below error.
    1) FRM-40738: Argument 1 to builtin FIND_VIEW cannot be null.
    2) FRM-41053: Cannot find canvas: invalid ID.
    Any suggestion Please.

    Can you give us a code sample? More than likely, you have misspelled the Canvas name in your call to Find_View.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Forms 9i FRM-40738 Hyperlink Bean problem

    Hello,
    I've this error coming please help me.
    I needed to see, how a bean is integerated in Forms 9i. I was
    searching through the example at metalink and it gave me a
    paper
    "How to Integerate HyplerLink Bean in forms 9i", what steps
    i followed are given in that paper.
    Now when i run the form, it gaves me the error
    FRM-40738 Argument to Built in SET_CUSTOM_PROPERTY CANNOT BE NULL.
    the steps i followed are
    1- I created a form called hyperlink.fmb
    2- Then i created a ON LOGON trigger at this form
    3- I opened the canvas and draw a Bean Area on it
    4- Then i renamed that Item to Hyperlink by Property Plattelete
    5- I named the canvas CONTROL
    6- Then at module level i created a TRIGGER WHEN_NEW_FORM_INSTANCE and put following PL.SQL code in it
    DECLARE
    hHyperlink ITEM := FIND_ITEM('CONTROL.HYPERLINK');
    BEGIN
    FBEAN.Register_Bean( hHyperlink, 1, 'oracle.forms.demos.beans.Hyperlink');
    FBean.Invoke( hHyperlink, 1, 'setURL', 'http://otn.oracle.com/products/forms');
    FBean.Invoke( hHyperlink, 1, 'setLabel', 'Forms on OTN');
    FBean.Enable_Event( hHyperlink, 1, 'actionListener', true );
    END;
    7-Then i created a Trigger at CONTROL.HYPERLINK, that was
    WHEN_CUSTOM_ITEM_EVENT and put the following code in it
    DECLARE
    vcEventData varchar2(256);
    BEGIN
    vcEventData := Fbean.Invoke_Char('CONTROL.HYPERLINK', 1, 'getURL');
    WEB.SHOW_DOCUMENT(vcEventData, '_blank');
    END;
    Then did the following steps of the locating the bean by the
    JAR method.
    Method 1 - The JAR Method:
    a. Locate the hyperlink.jar file located in D:\9iDS\forms90\demos\hyperlink\classes.
    b. Move the hyperlink.jar file to 9iDS_HOME\forms90\java.
    c. Find the formsweb.cfg file in 9iDS_HOME\forms90\server.
    d. Add the following configuration section to the file:
    [hyperlink]
    archive_jini=f90all_jinit.jar,hyperlink.jar
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    The archive_jini parameter pointing to hyperlink.jar is the most important part
    of this configuration.
    e. Now go into Form Builder and accomplish the following:
    Edit->Preferences->Runtime Tab
    Add the config parameter to your "Application Server URL". It should look
    something like this:
    http://machine.domain:port/forms90/f90servlet?config=hyperlink
    Then i compiled it and ran it, Now it gives this error
    FRM-40738 Argument 1 to built in SET_CUSTOM_PROPERTY cannot
    be null.
    P.S I have set the implementation class property but, still i don't know
    whats the problem, and where i am making mistake, please help me.
    Please any help will be appreaciated.
    Sincerely
    Tensed Beginner

    Hello Frank,
    Thanks for your reply back to me. Frank, i am
    currently
    new to Forms 9i even the Oracle world. In my compan
    basically i was hired a J2EE resource, but they put
    me
    on oracle, and i feel like, i am not performing to
    the level i should.
    Can you please tell me, how should i verify that, it
    is not returning
    a Null? Can you tell me the statement Syntax, yea my
    BLock
    name is CONTROL and Item name is HYPLERLINk, please
    do
    tell me how to verfiy it, i will be highly obliged.
    Sincerely,
    Ben ( Tensed Beginner )
    Hello Frank,
    Thanks for your reply back to me. Frank, i am
    currently
    new to Forms 9i even the Oracle world. In my compan
    basically i was hired a J2EE resource, but they put
    me
    on oracle, and i feel like, i am not performing to
    the level i should.
    Can you please tell me, how should i verify that, it
    is not returning
    a Null? Can you tell me the statement Syntax, yea my
    BLock
    name is CONTROL and Item name is HYPLERLINk, please
    do
    tell me how to verfiy it, i will be highly obliged.
    Sincerely,
    Ben ( Tensed Beginner )Hi Ben
    Please check the path that u have given. Think the mistake is in the path.
    FBEAN.Register_Bean( hHyperlink, 1, 'oracle.forms.demos.beans.Hyperlink');
    If the problem still persist will let u know how to resoleve it.
    feel free to get in touch....
    Regards
    Aravind

  • Error : FRM-40738

    I am getting following error while first time running the form.
    FRM-40738 : Argument 1 to built-in find_form can not be null.
    But interesting thing is if I close this form without saving and again open it and run it then it does not give this error.
    Any solution ?
    I am using Oracle 8i and Forms 6i.
    Kiran

    Do you mean you get this error at build-time or runtime? If it's at build-time, try forcing a compile all.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Empty Error box raising FRM-40738

    Hi all
    While migrating to HSD6i/Dev6i, encountered following situation
    - Open any form (e.g. HSD0022F)
    - Query any record
    - Use F6 and F4 to force duplicate value for an UK
    - Press X in windowtitle-bar to close window
    - Message QMS-00158('Do you want to save your changes')
    - Pressing No, all is ok
    - Pressing Yes, causes alert with message for UK-violation to popup (is OK) (e.g. HSD-00016)
    - Press OK-button and an empty 'error and warning box in this transaction'-window apears
    - Press OK-button and alert with FRM-40738 appears
    - Pressing OK-button returns you to named window
    Only way to close this window is via the menu-option 'File->Close Form' or 'File-Close all)
    Has anyone encountered this behaviour and a fix or WA ??
    rgrds
    Jan

    This is a new one. I have recorded a bug against Headstart for this.
    I did discover one thing.
    After the empty Errors and Warnings in this Transaction window opens, you can click back on the original window instead of pressing OK.
    If you do that, you can close the window by pressing the 'X' in the upper right hand corner.
    You will again see the message 'Do you want to save your changes?'. This time, select 'No'.
    Now that one form will close and you won't have to exit your whole application.
    Regards,
    Lauri

  • FRM-40738 issue on AIX servers

    Hi All,
    I have an issue with populating the LOV of a particular field. The form works fine on linux server but throws error FRM-40738 on unix server.
    Compiled all libraries in both the servers but still this issue persists. Can anyone throw some light on this?

    Hi,
    Thank you for the responses. After thorough checking we understood that the program code was not initializing the variables properly, so we had to modify few lines of the script to make it work on the new server. Somehow on original server(AIX5.2) it was not showing error with the script, but had issue with the OS upgrade to AIX 5.3. Apart from this one-off incident we have not faced any other issues till now. Will update if anything else crops up.
    Thank you again !
    Regards,
    Himansu

  • Can't find report error frm-41219

    i have a report with the name of item_report.rdf
    i have a form with the name test123
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    BEGIN
    repid := FIND_REPORT_OBJECT( 'item_report' );
    v_rep := RUN_REPORT_OBJECT(repid);
    END;
    i get the error frm-41219
    frm-40738 argument 1 to builtin RUN_REPORT_OBJECT cannot be null.
    please guide me
    Thanks

    have a report with the name of item_report.rdf
    i have a form with the name test123
    forms9i, reports9i ooperating system window XP
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    BEGIN
    repid := FIND_REPORT_OBJECT( 'item_report' );
    v_rep := RUN_REPORT_OBJECT(repid);
    END;
    i get the error frm-41219
    frm-40738 argument 1 to builtin RUN_REPORT_OBJECT cannot be null.
    please guide me
    Thanks

  • Creating timer problem in oracle forms

    Hello,
            I am using oracle weblogic 10.3.5 with oracle forms 11g at windows 7.I am trying to make a trigger but getting frm 40738 argument 1 to builtin GET_APPLICATION_PROPERTY cant be null error. I am using code at when-new-form-Instance trigger:
    declare
        timer_id TIMER;
        one_second number:=1000;
        st varchar2(100);
    begin
        timer_id :=find_timer('CLOCK_TIMER');
        If not id_null(timer_id) then
            delete_timer('timer_id');
        else
            timer_id := CREATE_TIMER('CLOCK_TIMER',one_second,REPEAT);
            --timer_id:=create_timer('CLOCK_TIMER',one_second,repeat);
            st:=Get_application_property(TIMER_NAME);
            message(st);
            end if;
            select to_char(sysdate,'HH24:MI:SS') into :EVENTS.CURRENT_TIME from dual;
            exception when others then
            message(TO_CHAR(SQLCODE)||''||SQLERRM);       
        end;
    and at  When-Timer-Expired trigger:
    declare
        timer_name varchar2(30);
    BEGIN
       timer_name := GET_APPLICATION_PROPERTY(TIMER_NAME);
    IF  timer_name = 'CLOCK_TIMER' THEN
          SELECT  TO_CHAR(SYSDATE,'HH24:MI:SS')
          INTO   :EVENTS.CURRENT_TIME
          FROM   DUAL;
    END IF;
       EXCEPTION WHEN OTHERS THEN
          MESSAGE(TO_CHAR(SQLCODE)||''||SQLERRM);
    END;
            Thank You
    regards
    aaditya.

    The problem is that you have a local variable with the same name as the CONSTANT "TIMER_NAME".  Therefore, your call to GET_APPLICATION_NAME is passing the value of your Local Variable to the built-in instead of the value of the CONSTANT 'TIMER_NAME."
    declare
        timer_name varchar2(30);
    BEGIN
       timer_name := GET_APPLICATION_PROPERTY(TIMER_NAME);
    IF  timer_name = 'CLOCK_TIMER' THEN
    Change your code so your variable TIMER_NAME is unique (different) from the constant TIMER_NAME variable. A common programming standard prefix your variable names with the data time.  Following this concept, rename your variable to V_TIMER_NAME.
    Craig...

  • I am getting error while attaching Menu Module to FORM

    Hi to everyone, I have created a Menu Module(mmx file), now i am trying to attach that menu to a FORM, I have entered the proper Menu Module address in the property window of that FORM, but i am continously facing the following problem.
    FRM-40738: Argument 1 to builtin CALL_FORM cannot be null
    Also i have applied following code in that Menu Module
    call_form('F:\Database Files\Contingent Database\Forms & Reports\Forms\BILL DETAIL.fmx');
    but the required FORM is not running.
    Please help me to sove out this problem

    I did this today, in this way,
    I create the menu then CRT-SHIFT K, then CRT -T
    then check you have the mmx
    - now you put full path to the form
    Menu module like c:\aaa\bb\menuname
    I did not put extension
    Hope this will work.

  • Error when opening the form

    Hi everyone,
    While opening a form in one of the Oracle Retail applications the error:
    FRM:41067-Cannot find Menu Item:Invalid ID
    is thrown. However when we click OK, the error goes off and system lets us to continue with using the form.
    On another form, the following 3 errors are thrown as soon as we open it:
    FRM:41091-Cannot find LOV:Invalid ID
    FRM:41828-LOV does not exist
    FRM:40738-Argument 1 to builtin SET_LOV_COLUMN_PROPERTY cannot be null.
    Again this error goes off once we click OK.
    This error is not happening on the base application and is happening only on the customer environment. I checked Oracle Retail specific tables but everything looks fine. Is there any environment specific parameters that could cause this error? Please advice.
    Regards,
    Preeti.

    Preeti,
    The only thing I can think of is that your customer does not have the correct version of the Form that is giving the error. Have your customer bring up the Forms Information screen (sorry, I don't recall the key stroke for this) and have them scroll to the Version section. Then compare this with your form that works. I am guessing that the versions are not the same.
    If they are the same, then you might be dealing with a setup issue. You might want to ask your question in the General EBS Discussion forum. I thought Oracle had a forum for their Retail product, but I couldn't find it. This forum would be the next best.
    Sorry I couldn't be more helpful.
    Craig...

  • REPORT_OBJECT_STATUS error

    I get the following error when I run the builtin REPORT_OBJECT_STATUS after running the builtin RUN_REPORT_OBJECT:
    'FRM-40738: Argument 1 to builtin REPORT_OBJECT_STATUS cannot be null'
    My form is displaying fine with no errors.
    My code looks like this:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status varchar2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('tape_log_report');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := report_object_status(v_rep);
    END;
    And the properties for my report are as follows:
    Execution Mode: Runtime
    Communication Mode: Asynchronous
    Report Destination Type: screen
    Anybody have any idea what is going on here?
    Thank you
    null

    Todd,
    Report_object_status and copy_report_object_output should be used only with the reports server. They are not supported by the reports background engine.
    When RUN_REPORT_OBJECT is called on a report object with a blank 'Report Server' property, the return value will be NULL.
    Thus, when running a report in this manner, the functions REPORT_OBJECT_STATUS
    and COPY_REPORT_OBJECT_OUTPUT are not supported (because they require an
    id value to be returned from RUN_REPORT_OBJECT.)
    Best Regards,
    Deepak Rai

  • HELP! Confusing problem in report-form integration!

    Hi all, I have a problem in integrating report in dev10i. I used to use Dev6i and have no problem in using run_report_object in 6i.
    I got the REP-0503 You did not specify the name of the report and FRM-40738 Argument 1 to builtin Report_Object_Status can not be null. The report run OK in report builder and I create the paper only layout. Also, I save the report as *.rdf and create a report object in form that point to this *.rdf file.
    This is my PL/SQL code:
    PROCEDURE P_PRINT_REPORT_OBJ(vc_reportoj Varchar2, vc_reportserver Varchar2, vc_runformat Varchar2) IS
    v_report_id                    Report_Object;
    vc_ReportServerJob               VARCHAR2(100);
    vc_rep_status                    VARCHAR2(100);
    vjob_id                         VARCHAR2(100);
    BEGIN
    v_report_id := FIND_REPORT_OBJECT(vc_reportoj);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESFORMAT, vc_runformat);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_SERVER, vc_reportserver);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_OTHER, 'aplikasi_id='||:APLIKASI_BBM_INDUSTRI.APLIKASI_ID||' paramform=no');
    vc_ReportServerJob := RUN_REPORT_OBJECT(v_report_id);
    vjob_id := substr(vc_ReportServerJob,length(vc_reportserver)+2,length(vc_ReportServerJob));
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    IF vc_rep_status = 'FINISHED' THEN
         WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||vc_reportserver, '_blank');
    ELSE
         message('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    What gives? Do I miss something here? Also what is the name of report server in Dev10i? I am under impression that this is not needed so I put blank '' when I call this procedure in WHEN-BUTTON-PRESSED trigger like this:
    P_PRINT_REPORT_OBJ('myreportobj','','HTML');

    Hello Colin
    Please check note 170167. Maybe error comes  from a very large form which has many selection conditions.
    In that case you will have to reduce the size and complexity of your form.
    Regards
    Javier

  • HELP! Form-Report integration problem!

    Hi all, I have a problem in integrating report in dev10i. I used to use Dev6i and have no problem in using run_report_object in 6i. I have posted this in Report for few days but haven't got response.
    I got the REP-0503 You did not specify the name of the report and FRM-40738 Argument 1 to builtin Report_Object_Status can not be null. The report run OK in report builder and I create the paper only layout. Also, I save the report as *.rdf and create a report object in form that point to this *.rdf file.
    This is my PL/SQL code:
    PROCEDURE P_PRINT_REPORT_OBJ(vc_reportoj Varchar2, vc_reportserver Varchar2, vc_runformat Varchar2) IS
    v_report_id Report_Object;
    vc_ReportServerJob VARCHAR2(100);
    vc_rep_status VARCHAR2(100);
    vjob_id VARCHAR2(100);
    BEGIN
    v_report_id := FIND_REPORT_OBJECT(vc_reportoj);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_DESFORMAT, vc_runformat);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_SERVER, vc_reportserver);
    SET_REPORT_OBJECT_PROPERTY(v_report_id, REPORT_OTHER, XXX='||:XXX.XXX||' paramform=no');
    vc_ReportServerJob := RUN_REPORT_OBJECT(v_report_id);
    vjob_id := substr(vc_ReportServerJob,length(vc_reportserver)+2,length(vc_ReportServerJob));
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    IF vc_rep_status = 'FINISHED' THEN
    WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||vc_reportserver, '_blank');
    ELSE
    message('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    What gives? Do I miss something here? Do I have to set up other thing??? Also what is the name of report server in Dev10i? I am under impression that this is not needed so I put blank '' when I call this procedure in WHEN-BUTTON-PRESSED trigger like this:
    P_PRINT_REPORT_OBJ('myreportobj','','HTML');

    Hi all, I created simple report from 1 table and save it as *.rdf. I then make a simple form consisting 1 block and a button that have WHEN-BUTTON-PRESSED trigger that call P_PRINT_REPORT_OBJ. I create a report object in the form that point to my *.rdf report file and name the object MYREPORT. This time it gives Rep-0110 Can not open file '%n~<intangible character>' and REP-1170 Error while opening or saving a document. After that other message popup with REP-0110. It seems that FIND_REPORT_OBJECT could not find the file at all/giving the wrong filename as argument. Do I have crooked installation? I have tried it on 2 diff machine running XP2. Is this because of Win XP2? I have admin privilage user account for winXP2. Please help, this is not making a sense at all. I have no problem in Dev6i.
    PROCEDURE P_PRINT_REPORT_OBJ IS
    v_report_id                    Report_Object;
    vc_ReportServerJob               VARCHAR2(100);
    BEGIN
    v_report_id := FIND_REPORT_OBJECT('MYREPORT');
    vc_ReportServerJob := RUN_REPORT_OBJECT(v_report_id);
    END;

Maybe you are looking for

  • Add mp3 to iTunes, delete file from Downloads, add Comment?

    I'm trying to make a folder action that will: - Watch my 'Downloads' folder for downloaded .mp3 files. - Add those .mp3 files to iTunes, letting iTunes copy to music folder. - Delete the original file from the 'Downloads' folder. - In iTunes, append

  • Exporting fce movies to dvd

    Excuse my profound ignorance, but I just don't understand all of the available codecs for exporting, etc. I would like to create FCE movie segments, and then export in a format that is suitable for idvd and is in a 16:9 format (that is, completely fi

  • Macbook: OSX tiger re-install problems

    Just got my replacement OSX install DVD's today and am having some issues installing the OS. Basically what happened was I blew away my HD and then was un-pleasantly surprised to find out the burnt back ups of the org. install disks that I had lost i

  • Unable to use Adobe for school.

    I'm trying to use Adobe for schooling and it's telling me that I can't use it on the device I am on. Why not?

  • Pls  answer  an simple question.........

    can someone tell me what's the meaning of jdbc.oracle.oci8..., how can load the driver? i used like this-- import oracle.java.driver.*; Class.forName("oracle.jdbc.driver.OracleDriver"); ......DriverManager.getconnection ("jdbc:oracle:oci8:bpm/bpm:@ja