Getting error message FRM-40700:No such trigger: SPECIAL20

Hi,
We have designed a custom report (Quote) and would like to use Special Menu's(Reports Menu) to open this custom Report. When I try to open this Report using
REPORTS->Quote, The Report is opening seccuessfully but i am getting following error message at the bottom of screen bar.How can I clear this message ?
FRM-40700:No such trigger: SPECIAL20
The code which I wrote in the custom.pll is
IF (form_name = 'OEXOEORD') THEN
-- Enable View Order Report -- V1.4 --
if (event_name = 'WHEN-NEW-FORM-INSTANCE') then
app_special.instantiate('SPECIAL20', 'View Order Report');
app_special.enable('SPECIAL20',PROPERTY_OFF);
else
if (event_name='WHEN-NEW-BLOCK-INSTANCE') THEN
if block_name='ORDER' then
app_special.enable('SPECIAL20',PROPERTY_ON);
else
app_special.enable('SPECIAL20',PROPERTY_OFF);
end if;
end if;
end if;
if (event_name='SPECIAL20' and block_name='ORDER') then
param_to_pass1 := name_in('ORDER.HEADER_ID');
select order_number into param_to_pass2 from oe_order_headers_all where header_id=param_to_pass1;
editor_pkg.report(BSI_Quote(param_to_pass2), 'Y');
null;
end if;
end if;
Please give me valuable inputs on this issue.
Thanks,
HTH

Hi,
your package " app_special" does a call to "execute_trigger('SPECIAL20');" ,
but there is no trigger with this name in your form. ( perhaps an Menu-item exists with this name.)
Lock for "execute_trigger" in:
app_special.instantiate('SPECIAL20', 'View Order Report');

Similar Messages

  • FRM-40700: No such trigger: QUERY_FIND

    When trying to Query within Assign Approval Groups I get the following error message FRM-40700: No such trigger: QUERY_FIND. Does anyone have an idea as to what is causing this issue?

    7b0fa31f-3808-4fb2-a433-06d8eed37aeb wrote:
    Hi
    The operating System is Linux the version Red Hat Enterprise 5
    It use to work in 11i since we have upgraded to R12 we get the error message shown in original post.
    Steps in 11i
    Select responsbility Purchasing Super User>Approvals>Approval Assignments query window would open automatically.
    Steps in R12
    Purchaisng Super User>Approvals>Approval Assignments query window does not open, takes you to core form view (Assign Approval Groups) when you then try to query you get the FRM error message.
    You never answered any of my questions.
    Do you have invalid objects?
    Have you tried to generate the form?
    Do you have any personalization or customization on this form?
    Thanks,
    Hussein

  • Getting Error Message - mount.ocfs2: No such device while mounting

    I am trying to mount an ocfs2 file system. The file system seems to have been created fine but I get an error message when I try to mount it. Here's what I get :
    [root@mdcpsdb1 init.d]# ./o2cb status
    Module "configfs": Loaded
    Filesystem "configfs": Mounted
    Module "ocfs2_nodemanager": Loaded
    Module "ocfs2_dlm": Loaded
    Module "ocfs2_dlmfs": Loaded
    Filesystem "ocfs2_dlmfs": Mounted
    Checking cluster ocfs2: Online
    Checking heartbeat: Active
    [root@mdcpsdb1 init.d]# fsck.ocfs2 /dev/sdc1
    Checking OCFS2 filesystem in /dev/sdc1:
    label: oracle_hr
    uuid: f6 23 5e 3b ad bb 49 87 81 a3 cb f0 b7 2a d0 ad
    number of blocks: 24416784
    bytes per block: 4096
    number of clusters: 6104196
    bytes per cluster: 16384
    max slots: 4
    /dev/sdc1 is clean. It will be checked after 20 additional mounts.
    [root@mdcpsdb1 init.d]# mount -t ocfs2 /dev/sdc1 /hr_data
    mount.ocfs2: No such device while mounting /dev/sdc1 on /hr_data
    The same thing happens going through the ocfs2console.
    Thanks,
    David

    Did you get anwer for this error? I got same error. Thanks in advance.

  • Error message:FRM-12001: Cannot Create the record group(check your query)

    Requirement: Need to get employee name and number in the LOV in search criteria.
    So I created LOV "full_name" and Record group Query under Employee Name property palette with
    select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number
    from apps.per_all_people_f papf, apps.per_person_types ppt
    where sysdate between papf.effective_start_date and papf.effective_end_date AND papf.person_type_id=ppt.person_type_id AND ppt.system_person_type IN ('EMP', 'OTHER', 'CWK','EMP_APL')
    AND PPT.default_flag='Y' and papf.BUSINESS_GROUP_ID=1
    order by papf.full_name
    I was unable to save and getting error message "FRM-12001: Cannot Create the record group(check your query)".
    I cant use PER_ALL_PEOPLE_F.FULL_NAME since full name here is last_name||title||middle_names||firstname.
    But my requiremnet is papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name .
    Can any one of you help me.

    First, Magoo wrote:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    for l_rec in ( select decode ( p_title, null, null, p_title || ' ' ) ||
    p_last_name || ', ' || p_first_name ||
    decode ( p_mid_names, null, null, ' ' || p_mid_names ) full_name
    from dual ) loop
    return ( l_rec.full_name );
    end loop;
    end;</font></pre>
    Magoo, you don't ever need to use Select from Dual. And the loop is completely unnecessary, since Dual always returns only one record. This would be much simpler:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">create or replace function emp_full_name
    ( p_title in varchar2,
    p_last_name in varchar2,
    p_first_name in varchar2,
    p_mid_names in varchar2 ) return varchar2 is
    begin
    Return ( Ltrim( Rtrim ( p_title
    ||' ' ||p_last_name
    ||', '||p_first_name
    ||' ' ||p_middle_names )));
    end;</font></pre>
    And second:
    user606106, you did not mention how you got your record group working. However, you DO have an issue with spaces. If you change this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select papf.title||' '||papf.last_name||', '||papf.first_name||' '||papf.middle_names emp_full_name
    ,papf.employee_number </font></pre>
    to this:
    <pre><font face = "Lucida Console, Courier New, Courier, Fixed" size = "1" color = "navy">select Ltrim(Rtrim(papf.title||' '||papf.last_name||', '
    ||papf.first_name||' '||papf.middle_names)) AS emp_full_name,
    papf.employee_number</font></pre>
    it should work. The Ltrim(Rtrim()) removes leading and trailing spaces from the resulting full name.

  • Avoid from the error message: "FRM-41816: Attempt to create existing timer"

    Hi,
    I create a timer in "on-insert" trigger in data-block level, like this:
    timer_id := Create_Timer ('saving_inserting_timer' , 1 , NO_REPEAT);
    in the trigger "when-timer-expired" in form level,  I use this timer, like this: 
    timer_id := FIND_TIMER('saving_inserting_timer');
    I know  that I should write:
    DELETE_TIMER('saving_inserting_timer');
    to avoid the error message frm-41816, and I tried to  write this line in a several places in the code (in both triggers).  But I still get this error message.
    Thanks in advanced,
    Elad

    Hi Elad,
    in ON-INSERT trigger write
    timer_id := FIND_TIMER('saving_inserting_timer');
    IF NOT Id_Null(timer_id) THEN
      Delete_Timer(timer_id);
    END IF;
    timer_id := timer_id := Create_Timer ('saving_inserting_timer' , 1 , NO_REPEAT);
    in WHEN-TIMER-EXPIRED trigger wrote the below code
    IF NOT Id_Null(timer_id) THEN
      Delete_Timer(timer_id);
    END IF;
    No two timers can share the same name in the same form instance, regardless of case.
    Hope this will help

  • Keep getting error message from 'Cron Daemon'

    I have been running an Xserve G4 with Mac OS X Server 10.3.9 as a mail server and web server for several years now with no problems. Recently, however, I tried to set up a mailing list, which I had never done before. When I tried doing this, OS X automatically created a mailing list called "Mailman" for me, in addition to the mailing list I created.
    Now I keep getting error messages sent by "Cron Daemon <[email protected]>" to that "Mailman" mailing list. The error messages are sent to the mailing list and I get them as a subscriber to the list. They read:
    ====
    From: [email protected]
    Subject: [Mailman] Cron <mailman@www> /usr/bin/python -S /usr/share/mailman/cron/senddigests
    Date: 6 mai 2006 12:00:00 HAA
    To: [email protected]
    Modules/gcmodule.c:215: failed assertion `gc->gc.gc_refs == GC_REACHABLE'
    Mailman mailing list
    [email protected]
    http://www.mydomain.com/mailman/listinfo/mailman
    ===
    I did some research on the OS X Server support pages and discussion forums and couldn't find any references to such a problem.
    With a worldwide search with Google, I only found very obscure stuff about Python, which I know nothing about.
    The mailing lists appear to be working fine other than that (and the fact that Mailman uses "www.mydomain.com" instead of just "mydomain.com").
    Any help would be greatly appreciated.
    Pierre

    Thanks for the clarification. I really do not need anything fancy at this point. Also, please note that I am still using Server 10.3.9, not 10.4.
    Now, as for the initial problem, I am afraid it is not gone. It has just changed. Here's what I got in my mailbox this morning:
    ===
    From: [email protected]
    Subject: Un envoi sur la liste Mailman à partir de [email protected] requiert une approbation
    Date: 8 mai 2006 09:25:02 HAA
    To: [email protected]
    En tant qu'administrateur de liste, votre autorisation est nécessaire
    pour l'envoi du message suivant vers la liste:
    Liste: [email protected]
    De: [email protected]
    Objet: Cron <mailman@www> /usr/bin/python -S /usr/share/mailman/cron/gate_news
    Raison: Envoi par un non-abonné sur une liste reservée aux abonnés
    Quand vous le souhaitez, rendez-vous à:
    http://www.mydomain.com/mailman/admindb/mailman
    pour approuver ou rejeter la demande.
    From: [email protected] (Cron Daemon)
    Date: 8 mai 2006 09:25:01 HAA
    To: [email protected]
    Subject: Cron <mailman@www> /usr/bin/python -S /usr/share/mailman/cron/gate_news
    Modules/gcmodule.c:215: failed assertion `gc->gc.gc_refs == GC_REACHABLE'
    From: [email protected]
    ===
    In other words, the error message is still coming, but now it's being sent by "[email protected]" and since this is not a subscriber to the list, I get the admin notice requiring approval. (It's in French because I am using mailman's French-language option, but you should get the gist of it .)
    I still do not know:
    1) what causes this message and what it means
    2) why it's coming from "[email protected]" rather than "[email protected]".
    Like I said, I changed the "host_name" option from "www.mydomain.com" to "mydomain.com" in both mailing lists I have, but obviously there is still some part of Mailman that thinks it should be using "www.mydomain.com".
    I am afraid I still don't know what to do about this.
    FWIW, I ran the check_perms command you gave me this morning and it did find 10 problems and corrected them. I don't know yet if this will help with this particular problem.

  • ERROR MESSAGE: FRM-47023

    I am working on a customized Sales order form. The customization was done in version 11.5.9.2 and the form was working well. Now, the oracle apps has been upgraded to version 11.5.10.2.
    In the upgraded version, when I try to open the customized sales order form, I get the error message "FRM47023-47023: No such parameter named OPM_RMA_LOT_RESTRICT exists in form XXOMIVSEMSU.
    Can anyone suggest me the cause of the error.
    Thanks.

    I think you need to define the parameter OPM_RMA_LOT_RESTRICT in form XXOMIVSEMSU. How this form is called...from menu or from other form? When the form is called there are any parameter passed?

  • I have cc2014 and I want to bridge to DAZ Studio .duf file.  In PS I choose File Automate DAZ Studio 3d bridge - get error message "could not complete DAZ Studio 3D Bridge command because of program error".  What's going on.

    I get error message when trying to open DAZ Studio 3D bridge in PS 2014 from the File and Automate Menu.
    Error reads "could not complete DAZ Studio 3D Bridge command because of program error?"
    According to User Documentation  I should get a dialog box which allows me to click on "Launch DAZ Studio"
    Why is there a problem?

    You have something messed in with your Photoshop or OS install.  You need to troubleshoot that first.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, such as total installed RAM, scratch file HDs, video card specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    A screen shot could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I'm getting error messages when I download updates for lightroom and flash for the mac. can't figure out how to trouble shoot.

    I'm getting error messages when I download updates for lightroom and flash for the mac. can't figure out how to trouble shoot.

    It sounds as if your browser and some of your apps are not color-managed.  This is pretty typical.  Even IE9 is only partially color-managed.
    You can expect color-managed and non-color-managed applications to show you different things with the same images.  How different will depend upon how different your monitor color profile is from the image's color profile.
    For web publication and most general use, experts usually advise saving images with the sRGB profile.  If such images, saved through the Save for Web & Devices function, look different to you than you expect, it may be that your input images have previously been saved in another color space.
    You should really try to get your head around color-management by reading more on it.  It can seem baffling and it's difficult to understand without some background.  A quick web search turns up many overviews.  Beware, though, even people writing articles sometimes don't fully understand it.
    -Noel

  • How to send error message to forms from Database Trigger

    Hi, Please help me to send error message to forms from Database Trigger?
    RgDs,
    Madesh.R.M

    You are correct, the On-Error trigger is a Forms trigger. However, if your Form is going to display the error generated by the database stored procedure or trigger - you might not see the database error in your Form unless you check the DBMS_ERROR_CODE in the On-Error trigger and manually display the Error Code and associated Text. I've see this happen with a co-worker. The Form she was working on was based on a table with an Before-Insert trigger. Because she was not explicitely handling the error from the Before-Insert trigger in the Forms On-Error trigger, her Form appeared to halt for no reason at all. Once she added code to the On-Error trigger in the Form to handle the DBMS_ERROR_CODE, she discovered the trigger was producing an error and was able to show the error to the user in the On-Error trigger.
    I understand the desire to keep as much as possbile in the database, but with that comes some extra coding in your Forms to handle this. This extra coding could easily be placed in a Forms Library, attached to a Form and called in the On-Error trigger. Your code could look like this:
    DECLARE
       /*This example assumes you have an Alert defined
          in your Form called: 'ERROR' */  
       al_id    ALERT;
       al_text  VARCHAR2(200);  /* Max text of a Forms Alert message*/
       al_btn   NUMBER;
    BEGIN
    IF DBMS_ERROR_CODE != 0 THEN
       /* Error code is ORA-00000 Normal Successful completion
           So only handle non-zero errors  */
       al_text := DBMS_ERROR_CODE||':'||DBMS_ERROR_TEXT;
       al_id := Find_Alert('ERROR');
       set_alert_property(al_id, alert_message_text, al_text);
       al_btn := show_alert(al_id);
    END IF;
    END;Your original question was "How to send error message to forms from Database Trigger?" The answer is you don't because Forms already gets the database error code and database message through the Forms DBMS_ERROR_CODE and DBMS_ERROR_TEXT functions. Look these up in the Forms help and it should clear things up for you.
    Craig...
    Edited by: CraigB on Jun 14, 2010 4:49 PM
    Edited by: CraigB on Jun 14, 2010 4:49 PM
    Edited by: CraigB on Jun 14, 2010 4:50 PM
    Edited by: CraigB on Jun 14, 2010 4:51 PM
    Edited by: CraigB on Jun 14, 2010 4:51 PM

  • Great Problemes after installing Yosemite (10.10.2 ) with Photoshop CS6....The program crashes --last time 10 times during my work session..wacomtable doesnt work..it is slow...and get error messages about the graphic card....It s a Terror to work with my

    great Problemes after installing Yosemite (10.10.2 ) with Photoshop CS6....The program crashes --last time 10 times during my work session..wacomtable doesnt work..it is slow...and get error messages about the graphic card....It s a Terror to work with my beloved Photoshop!

    The Yosemite upgrade very often damages existing Photoshop installations.  Thank Apple for that.
    You need to uninstall and re-install Photoshop, then apply all the Photoshop upgrades from scratch.
    But first, give us details about your setup:
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Keep getting error message. Apple IE DAV  has stopped working. Does anyone know how to fix this?

    Trying to link iCloud from my iPad to my Windows PC to share the cloud. I keep getting error message: "Apple IE DAV has stopped working." Does anyone have any idea how to correct this?

    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • Burned iMovie on DVD R DL (8.5GB) get error message trying to play in DVD player, but works in the laptops any help would be appreciated. Doing this for my sons graduation. Thank you for your time.

    Burned iMovie on DVD R DL (8.5GB) get error message trying to play in DVD player, but works in the laptops any help would be appreciated. Doing this for my sons graduation. Thank you for your time.

    You would need to have burned the disc using iDVD or a third-party application such as Toast. Is that what you did?

  • Imovie 11 on macbook pro get error message cannot save project changes

    imovie 11 on macbook pro get error message cannto save project changes:
    Please check the disk to ensure there is enough free space and you have permission to write projects. iMovie will try to save periodically, but your changes will be lost if you quit iMovie before the problem is resolved.  I have 462 GB disc space available.  I don't know about "permission to write projects".

    OK - bad luck about that. I hope you weren't too far advanced into your project. Sorry to hear that repairing permissions didn't help.
    When working on a long project, it's advisable to duplicate the project from time to time. In Project Library view click on your project then select File>Duplicate Project from iMovie's menu. A number will be appended to the name of the duplicate, otherwise you can rename it. A short-cut is to control-click (or right-click) on the project name, then select Duplicate Project from the pop-up menu. Duplicating doesn't take up much extra space, as the project points to the clips in the Event (or Events) and doesn't contain actual video as such (it's basically a text file which also holds information about your edits, added photos, music, titles and so forth).
    Also, it's best to have a backup, such as Time Machine. It gives you peace of mind when things go wrong!
    John

  • Can i save a podcast without taking up space on nano 6, i keep getting error message space is used up but I don't want to lose the podcast episode for the future

    can i save a podcast without taking up space on nano 6, i keep getting error message space is used up but I don't want to lose the podcast episode for the future

    Sorry to be such a moron with this, but I just don't have much experience with this iPad.  I have had it for over a year and I just keep adding stuff to it and it has worked great.  Now that the memory is used up, I am trying to figure out how to free up space and not lose what I have paid for. 
    So, Step 1 is complete, as I have "Transferred" all of the purchases.
    What is Step 2?  I unchecked the concert on the iTunes library, did a sync, but it's still on my iPad.
    Thanks again for the help!!!

Maybe you are looking for