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.

Similar Messages

  • 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

  • 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

  • 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 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

  • 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

  • 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;

  • 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

  • Getting FRM-40010 Error While opening new form  .fmx

    Hi,
    Oracle apps : 11.5.10.2
    Forms : Forms 6.0
    I'm creating a custom form by using one oracle apps table.I created a basic form by using template.fmb and then saved it to directory "/dir1" and run this form by connecting to oracle apps database.
    When I try to open .fmx from this directory ('/dir1') I'm getting FRM-40010 error.When I checked FORM60_PATH = It's showing /u01...../au/11.5.0/resource.I don't see "/dir1" in that path?
    Do I need to modify forms60_path ?
    Do I need to register this form before running as it's using table from Oracle apps schema?
    Thanks,
    Kiran

    When I try to open .fmx from this directory ('/dir1') I'm getting FRM-40010 error.When I checked FORM60_PATH = It's showing /u01...../au/11.5.0/resource.I don't see "/dir1" in that path?You need to set FORMS60_PATH and include /dir1 in this path.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=FRM-40010+&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Do I need to modify forms60_path ?Yes.
    $ export FORMS60_PATH=$FORMS60_PATH:/dir1
    Do I need to register this form before running as it's using table from Oracle apps schema?Yes.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Register+AND+Custom+AND+Form&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Custom+AND+Form&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • FRM-18108 Error when opening a form with subclassed objects

    Dear Group,
    I have 2 forms in Oracle Forms 6i. One of the forms contains an object group. The other form contains the object that I subclassed it to.
    When I open the form that contains the subclassed object group, I get the FRM-18108 error.
    If I open the form with the original object group, then open the subclassed form, there is no error.
    Does this mean I must always open the original form in order to work on the one with the subclassed object group?
    I hope there is an simple solution to what is something I am missing in my Oracle Forms setup.
    Thank you in advance.
    Emad

    Hi Duncan.
    Your suggestion worked.
    Thank you for the fast response!
    Truly,
    Emad

  • FRM-40737 Error, While using COMMIT_FORM

    Hi,
    Please guide for the following:
    In a form, I have two data blocks,namely master and detail.
    In PRE-INSERT trigger of master block, I am using GO_BLOCK('detail').
    The form has a SAVE_BTN also, in save_btn i am using COMMIT_FORM.
    When user clicks save-btn , FRM-40737 error is generating.
    Please help.
    Regards,

    You can't use go_block in a pre-insert trigger - it is a restricted built-in.
    When you commit, the Form will save all the changes regardless of which block they are in.
    Steve

  • FRM-92101 error while opening forms & OC4J

    Hi all,
    I have a customer having problem after certain number of users connecting to the application.
    These are the following setup in the environment:
    1. OAS 10.1.2.1
    2. Windows 2003 Standard Edition SP1 32 Bit
    3. Memory 2GB
    They are running the application using the Oracle Form, connecting through the application using Internet Explorer.
    Number of users might connect to the application are around 42 users in application server #1 and 10 users in application server #2.
    Recently they reported that they experiencing the FRM-92101 in random fashion in all clients computer.
    I did a check on the windows task manager and I can see that frmweb.exe process will consume around 17MB - 68MB.
    This is random, not all process consuming up to 68MB, some of it will be in the avarage of 30MB to 50MB.
    I checked the registry for the desktop heap setting which is in HKEY_LOCAL_MACHINE -> System -> Current Control Set -> Control -> Session Manager -> SubSystems. There is a key named Windows and inside here there is a variable called SharedSection. Currently the value is set to 2048, 3072, 2048
    From what I know this setting should be enough for around 40 users.
    I noticed when 42 users were connecting to app server #1, the physical memory available is only around 140MB.
    This FRM-92101 error is not only happening to app server #1 but also #2 which only handles 10 users maximum.
    From the information above, I have some questions:
    1. What other areas that I need to check for this?
    2. What other configuration I can increase so this error is not happening anymore?
    3. If I check on opmnctl status, I can only see 1 OC4J home and OC4J_BI_FORMS. Does increasing the number of OC4J can suppress this error?
    Please give me the enlightment.
    Thank you so much,
    Adhika

    Hi sandeep;
    I have installed vision database r12(12.0.4) on hp ux (11.31).
    I am able to open the login page but when trying to access any form it gives below mention error.
    FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration.
    I have checked below mention log file.
    /devbackup/applvis/inst/apps/VIS_reeldev/logs/ora/10.1.3/opmn/forms_default_group_1/formsstd.out
    Error:
    Forms session <1> aborted: runtime process failed during startup with errors /usr/lib/hpux32/dld.so: Unsatisfied code symbol 'nnftboot' in load module '/devbackup/applvis/apps/tech_st/10.1.2/lib32/libclntsh.so.10.1'.Please check below and see its helpful:
    Error Dld.So: Unsatisfied Code Symbol 'Nnftboot' Signal 9 When Running Reports Concurrent Requests [ID 560287.1]
    All Concurrent Requests End With Signal 9 Termination Error [ID 452714.1]
    Also check Apache log files for more details
    What is post installation task after installing r12?You can follow Recomended R12 patches On Metalink
    Not able to execute .env file with owner and privileges, why?How you are trying to execute?
    How to get r12 original media from oracle? You can log Sr for media or you can contact wiht your oracle local office
    Regard
    Helios

  • FRM-92101 error while running report from form

    HI All,
    I am getting the form error FRM-92101 while running report from form menu.My code is given below:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('REPORT47');
    v_rep := RUN_REPORT_OBJECT(repid);
    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
    WEB.SHOW_DOCUMENT('http://192.168.0.21:8889/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    Clear_message;
    END;
    Clear_message;
    --Arif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    hi Arif
    Please see this note on MOS/Metalink for some common causes of this error:
    Known Causes of FRM-92101 Error In Forms [ID 604633.1]
    thanks,
    AMN

  • FRM-41830 error when opening zoom form

    Hi All,
    I am facing a strange issue.
    We are using ZOOM functionality. Now I need to make some changes to the existing CUSTOM.pll file. The CUSTOM.pll is in our $CUSTOM_TOP/resource. The CUSTOM.plx file is placed in $AU_TOP/resource. I have taken backup of the CUSTOM.pll and plx file. I have made the changes and compiled in Middle tier from $AU_TOP/resource path.
    Once I open the application and click on ZOOM button, I am receving FRM-41830 error. Once I click ok, the ZOOM form is opened and could see the LOV details and the subsequent process is working fine.
    To test, I have replaced the backup CUSTOM.plx file and the issue is not reinstated.
    There is CUSTOM.pll file in $AU_TOP/resource, but it is a seeded copy and do not contain any of our custom logic.
    I am confident that the .pll file in $CUSTOM_TOP is the source.
    As another test, I have renamed the CUSTOM.pll in $AU_TOP/resource and tried compiling. I received the below error :*PDE-PLI018 Could not find library CUSTOM*. Once I undo the renaming, the compilation was successfull. Does it mean that Custom.pll in $AU_TOP/resource is being mapped?
    Command used is:
    f60gen Module=$CUSTOM_TOP/resource/CUSTOM.pll Userid=APPS/xxxx Output_File=$AU_TOP/resource/CUSTOM.plx Module_Type=LIBRARY compile_all=special
    Can anyone help me in resolving the issue.
    Thank You
    Sateesh
    Edited by: user11083692 on Aug 5, 2009 12:40 AM

    FRM-41830 error is "List of values contains no entries" - what changes have been made to CUSTOM.pll ?
    HTH
    Srini

  • FRM - 40735 Error

    Hi,
    In Oracle EBS 11i ->HRMS module , when opening any form showing error message like FRM -40735 and ora 6508.
    And the error is only in this module. In other modules the forms are working. it has no error.
    What is the reason for this? Can any solution for this?
    Please reply.
    Regards
    Naseer

    What is the exact application release? Database version? OS?
    Please post the complete error message.
    Was this working before? If yes, any changes have been done recently?
    Do you have any custom code on this module? --FRM-40735: PRE-UPDATE trigger raised unhandled exception ORA-06508 - ORA-1403: no data found [ID 783098.1]
    Do you have any invalid objects? Any errors in the database?
    Known errors generated on the People form (PERWSHRG) [ID 206584.1]
    ORA-04063 and FRM-40735 Errors When Creating Employees Using Human Resources [ID 149672.1]
    If none of the above helps, please obtain the FRD file and see if you get more details about the issue in the logs.
    How To Perform Forms Runtime Diagnostics (FRD) Tracing in Applications 11i [ID 167635.1]
    Obtaining Forms Runtime Diagnostics (FRD) In Oracle Applications 11i [ID 150168.1]
    Quick Ref: How To Perform Forms Runtime Diagnostic Trace (FRD) in Applications 11i [ID 149201.1]
    Unable to Create Forms Runtime Diagnostics (FRD) Trace on Ebusiness Suite 11i? [ID 749363.1]
    Thanks,
    Hussein

Maybe you are looking for

  • Palm Desktop

    I am having two problems that I can't seem to solve w/ Palm desktop. First, I have the problem that when I view month mode in calendar my program quits.  Not every month.  Just some.  I looked on this web site and after that I made sure no appointmen

  • Should I upgrade my MacBook unibody 2008 to a 2011 pro 15 inch?

    I do a lot of design work using the adobe suites. Current MacBook 08 has core 2 duo 2ghz 2gig ram. I would get i7, 2ghz, 4gig ram. Is it a good idea?

  • Hyperion Report Exporting to Power Point

    We are using Hyperion Interactive Reporting 9.3, is there any option to export the report to MS Power Point output. If anybody can reply on this,then it will be appreciable. Thanks, Siby John

  • Applet access to system Clipboard

    Hi all: I am creating a customized version of the mud telnet application for a customer. They have requested cut/paste functionality and I have been able to provide this capability. The problem is the applet cannot get access to the system clipboard

  • Can you track itouch with the serial number?

    Can I track an Itouch with the Serial Number? My Son Itouch got stolen in Fam and Friends BBQ .