FRM 41215: CAN NOT FIND REPORT - Please help

Hi,
I am new to oracle 9i. I am trying to convert the forms in 8i to 9i. While i am doing i have many forms calling reports thru run_product. Now i am changing those into run_report_object. Even though i am getting errors like FRM 41215: CAN NOT FIND REPORT , INVALID REPORT ID.
declare
repid report_object;
v_rep varchar2(100);
begin
repid := find_report_object('mrnr0028');
v_rep := RUN_REPORT_OBJECT(repid);
end;
This is the command i have used. Is there anything wrong, or is there any necessity to specify any particular path for report files.
Pls help me asap.
Thanks

I HAVE CREATE THIS PROGRAM UNIT(WITH LOT OF HARD WORK) FOR CHARACTRE AS WELL AS DEFAULT REPORT
RUNING ON WEB
-----------------FOR CHARACTER REPORT
procedure web_report_c ( type varchar2,parameter varchar2) is
report_id Report_Object;
report_job_id VARCHAR2(100);
report_status varchar2(100);
FILE_NAME VARCHAR2(100);
web_name varchar2(300);
user_name varchar2(30);
BEGIN
user_name:=get_application_property(username);
if type='PRINTER' THEN
report_id:= find_report_object('REPORTNODE');
     file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.RRPT'; --use  in case of character mode report
     SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
     SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report TEMPRARY
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing parameter to report
report_job_id:=run_report_object(report_id);
     report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
               while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop --checking report status
                    report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
               end loop;
               IF report_status='FINISHED' THEN --if report is finished then make call to report
          --          web_name:='HTTP://logi/'||file_name;
               WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
               else
                    MESSAGE('Report has failed. '||'status is -'||report_status);
               end if;
ELSIF type='SCREEN' THEN
     report_id:= find_report_object('REPORTNODE');
     file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.txt'; --use txt in case of character mode report
     SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
     SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report TEMPRARY
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing report parameter
report_job_id:=run_report_object(report_id);
     report_status:=REPORT_OBJECT_STATUS(report_JOB_id); --checking of report status
               while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop
                    report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
               end loop;
               IF report_status='FINISHED' THEN --if report status is finished then make  call to report
                    --web_name:='HTTP://ORACORP/logi/'||file_name;
               WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
               else
                    MESSAGE('Report has failed. '||'status is -'||report_status);
               end if;
end if;
end;
------------FOR DEFAULT REPORT
procedure web_report_c ( type varchar2,parameter varchar2) is
report_id Report_Object;
report_job_id VARCHAR2(100);
report_status varchar2(100);
FILE_NAME VARCHAR2(100);
web_name varchar2(300);
user_name varchar2(30);
BEGIN
user_name:=get_application_property(username);
if type='PRINTER' THEN
report_id:= find_report_object('REPORTNODE');
     file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.RRPT'; --use  in case of character mode report
     SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
     SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing parameter to report
report_job_id:=run_report_object(report_id);
     report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
               while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop --checking report status
                    report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
               end loop;
               IF report_status='FINISHED' THEN --if report is finished then make call to report
          --          web_name:='HTTP://logi/'||file_name;
               WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
               else
                    MESSAGE('Report has failed. '||'status is -'||report_status);
               end if;
ELSIF type='SCREEN' THEN
     report_id:= find_report_object('REPORTNODE');
     file_name:=user_name||to_char(sysdate,'-ddmmyy_hh24miss')||'.txt'; --use txt in case of character mode report
     SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_EXECUTION_MODE,BATCH);
     SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,file);
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESNAME,'c:\logiWWW\temp\'||file_name); --where u want to save report
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'REPSERVER'); --report server name
SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,parameter); --passing report parameter
report_job_id:=run_report_object(report_id);
     report_status:=REPORT_OBJECT_STATUS(report_JOB_id); --checking of report status
               while report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') loop
                    report_status:=REPORT_OBJECT_STATUS(report_JOB_id);
               end loop;
               IF report_status='FINISHED' THEN --if report status is finished then make  call to report
                    --web_name:='HTTP://ORACORP/logi/'||file_name;
               WEB.SHOW_DOCUMENT('/logi/'||file_name,'_BLANK');
               else
                    MESSAGE('Report has failed. '||'status is -'||report_status);
               end if;
end if;
end;

Similar Messages

  • URGENT : FRM-41219 Can not find report : INVALID ID

    hello all
    The same problem i have also posted in forms forum..
    i am getting the exception FRM-41219 when calling the report from my form with the method RUN_REPORT_OBJECT.
    I m calling the report in my program unit method as follows :
    DECLARE
    Pl_Id ParameterList;
    RepId REPORT_OBJECT;
    Vrep Varchar2(1000);
    BEGIN
    add_parameter(pl_id,'report_parameter',text_parameter,record_block.input_box);
    RepId := find_repor_object('report_name');
    Vrep := RUN_REPORT_OBJECT(RepId,Pl_Id);
    END;
    But when i run the fmx .. i get the exception "FRM-41219 can not find report :Invalid ID"
    I have checked all possiblities i.e. i have also called the method as RUN_REPORT_OBJECT(RepId) and also RUN_REPORT_OBJECT(ReportName)..but in all cases i am getting the same error..i have also checked the environment variable ..it contains the correct path of my application folder where the report is available.
    Kindly help me with this
    if any body knows the solution..or the cause for it..please let me know here or contact me on this address
    [email protected]
    thank you.

    Try this:
    DECLARE
    Report_Id report_object;
    v_rep varchar2(200);
    rep_status varchar2(20);
    BEGIN
    report_id:=FIND_REPORT_OBJECT('EMP');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,:REPORT_NAME);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,:REPORT_DESFORMAT);
    if :REPORT_DESTYPE='CACHE' then
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    elsif :REPORT_DESTYPE='FILE' then
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,FILE);
    end if
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,:REPORT_DESNAME);
    v_rep := RUN_REPORT_OBJECT(report_id);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    if rep_status = 'FINISHED' then
    message('Report Completed');
    else
    message('Error when running report.');
    end if;
    END;
    Thanks
    Rohit

  • Hello everyone, i need Mongolian keyboard layout, how can i find it, please help me, my pc is version OS X Yosemite, 10.10.2

    hello everyone, i need Mongolian keyboard layout, how can i find it, please help me, my pc is version OS X Yosemite, 10.10.2

    CLICKY CLICK---> Multilingual Mac

  • Why I can not find reports object in Jdeveloper

    How are you!
    I want to use Jdeveloper to generate a report jsp file,but I can not find reports object . How can I do! I have installes Oracle9iDSrelease2.0 in my computer.
    Best regards!
    Jonan Zhou

    If you installed Oracle9iDS then you should have the report object inside the JDeveloper that came with this install (9.0.2). It won't work in a JDeveloper that you installed separatly.

  • HT1657 I rented Trouble with the Curve and haven't it yet and I when I went to watch the movie it tells me the file can not be found -  please help

    I rented Trouble with the Curve and haven't it yet and I when I went to watch the movie it tells me the file can not be found -  please help

    Yes, thank you.  My apologies, I was typing one handed and did not add that. 
    Anyway, I have tried deleting the cache, deleting my pics and then re-syncing, etc. and nothing is working This is very frustrating, as I had no problems up until about 2 weeks ago, and now all of a sudden, I have this issue......UGH!

  • I can't download the Friendly Gaming Simplifier add on. When I click download Firefox tells me it can't find. Please help

    A friend sent me this link: BONUS CHECKER LINK IS: http://www.facebook.com/l.php?u=http%3A%2F%2Ffgs.rzadki.eu%2F&h=5d642
    When I click on the link it takes to fgs, I click Mozilla download gallery, I click Mozilla add on gallery and takes me to add ons with the following message: We're sorry, but we can't find what you're looking for. I have tried download with all add ons disabled and still get the same message. Please help

    Hello, PS81786. 
    Thank you for visiting Apple Support Communities.
    First, try forcing all applications to close and power cycle the device.
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    If the issue persists, here are some helpful troubleshooting steps when experiencing issues with the iTunes Store.
    Troubleshoot issues on an iPhone, iPad, or iPod touch
    If you haven't been able to connect to the iTunes Store:
    Make sure your date, time, and time zone are correct in Settings > General >Date & Time.
    Note: Time Zone may list another city in your time zone.
    Make sure that your iOS software is up to date by tapping Settings > General> Software Update (iOS 5 or later) or connecting your iOS device to iTunes and clicking Check for Update on your device's Summary page.
    Check and verify that you're in range of a Wi-Fi router or base station. If you're on a device with cellular service, make sure that cellular data is turned on from Settings > General > Cellular.
    Note: If connected to cellular data, larger items may not download. You may need to connect to Wi-Fi to download apps, videos, and podcasts.
    Make sure that you have an active Internet connection. You can check theuser guide for your device for help with connecting to the Internet.
    Make sure that other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
    Try resetting (turning off and then on again) your Wi-Fi router.
    If the issue persists, try troubleshooting your Wi-Fi networks and connections.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    If the issue persists, try changing the Cookie settings via the steps below. 
    iOS: Unable to use webpages or services that require cookies
    http://support.apple.com/kb/TS4207
    Cheers,
    Jason H.

  • How can i change the email address that the new secuirty questions answers get sent to, it is the wrong address and i can not change it. please help

    Hi
    i bought the itunes music credit, and when tried to redeem it asked for my ID, i have put the details, then it asked for the security questions answers, which i can not remember. when i try to reset, the email get sent to un unknown email address which i dont own... i tried everything to update my email addresses and its still not changing. i dont know how this weird email got there, i dont own it....
    please help!!!
    thanks,
    Nawrus

    You won't be able to change the rescue email address on your acocunt until you can answer two of your questions, if you don't recognise the address then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down this page to update your rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • Restore to previous icloud settings and photos/video are gone. Still recognized 6 gigs of data but can't find them. please help me rescue my children's precious moments.  Thanks in advance

    Alright people i have a problem and looking for help. Yesterday the iphone started acting funny, a couple apps started crashing and the Iphone reboot a few times on it's own. Things seemed to be back to normal and I notice a "system update" that needed to be install. I thought this update may help the earlier crashing issue. During install, the Iphone froze up and I had to wipe it to factory settings.
    Now I have not backed up the phone on the computer/itunes, because I bought extra storage in ICloud. I reset my phone to the last Icloud setting and rescued my contacts, but not the apps or PHOTO/VIDEOS. I was expecting to have the phone to return back to my previous working phone, but now I have to reinstall the apps. Reinstalling the apps is no big deal, but now I only have 6 pictures and NO videos. The icloud settings tells me I have multiple gigs of data used, but where are the photos and videos?
    I should add that I lost all my previous text history, which I wish to get back too if possible...
    To save some conversation, I researched and didn't find much answers, but found most people were double backing up the photos with Dropbox, Google+, and/or Flickr. I have set up accounts at all three to prevent further issues, but this won't replace the last 6 months of photos that I can not seem to find or reinstate back onto Iphone.
    Android uses an external memory card to prevent this type of data loss. #apple#iphone #icloud
    I should add the wife and I have two accounts: I have an Iphone 5s and she has her own account with an Iphone 5s and Ipad.  We also have a computer running windows vista.
    Thanks in advance for any help...

    Did you ever restore your last iCloud backup?  That contains you camera roll photos & videos, text messages, app data, settings, etc.  It will also redownload your apps and other purchased media.
    If you didn't, follow the steps in this article to restore the backup: https://support.apple.com/kb/ph12521.

  • Can not open itunes please help!!!

    Is any one getting this error message, " Quicktime failed to initialize ( Error-2096) Quicktime is required to run itunes. Please uninstall itunes, then install itunes agian)
    Now mind you Quick time starts up fine, I have no issues with that, but when I click on the itunes tab that error comes up. I have done everything I know but still can not get itunes to work, I have uninstalled quicktime and itunes and reinstalled it and still nothing, I am running windows XP Media Center Edition, service pack 3. Please some one help me, thank you.

    Even though the following article is about the -2096 when launching the QuickTime Player, I'd start with it for your iTunes as well:
    [Error -2096 message when opening QuickTime for Windows in Compatibility Mode|http://support.apple.com/kb/TS1875]
    (If you do end up having to check the iTunes.exe compatibility mode tab too, be sure that no boxes in that tab are checked, not just the compatibility mode tab itself.)

  • I have problem with my iCloud account, restore my ipad and I can not log in please help

    hello, I can not restore my ipad and enter, get a message that my password is already einvalida and nose to do

    We are not Apple employees. You should not post your email address in a public forum and I have asked the moderators to remove it from your post.
    Do not buy anything with the new Apple ID or it will always be tied to that Apple ID. Try to get the problems with the original Apple ID resolved with help from Apple. If you have been locked out of your account try here for help.
    https://ssl.apple.com/emea/support/itunes/contact.html

  • My Web tv is gone. In app store it says that the program already is installed and i can not installed again, please help

    My Web tv is gone. In app store it says that the program already is installed and i Can not install again, enyone know what to do?

    Have you looked in th Application folder for Page 5?

  • HT201442 can not restore iphone please help

    Can not restore iphone

    You have posted from a Support Article about Error Code 3194...
    If Error Code 3194 is your issue and that Article did not resolve it... then you have a problem.
    Perhaps a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is required..
    Be sure to make an appointment first...
    Note:
    That error message may be indicative of the Device being Hacked / jailbroken.... If this is the case then you are on your own.
    Unauthorized modification of iOS  >  http://support.apple.com/kb/HT3743

  • I have asked in order to use one website, to allow "emergent windows" but I can not find where is this, I have been told it is inside "tools" and then "options" but I can not se it, please help.

    The website is a platform called "People Soft" and aparently in order to use it I have to do this.

    Try,,,
    I deleted EVERYTHING under
    C:\Users\YourUserName\AppData\Roaming\Apple Computer\iTunes
    or YourUserName\AppData\Roaming\Apple Computer\iTunes
    Some people have had success only deleting everything in the cookies folder
    C:\Users\YourUserName\AppData\Roaming\Apple Computer\iTunes\Cookies
    Thank you LadyBytes

  • TS4006 I used Lost mode on Find my iPHone, since phone returned have been unable to make calls although do have   internet , service provider can't find reason, please help

    I lost my iphone, located it wuth Find my iPHone app activated Lost mode and my phone was returned, but since my phone was returned I have been unable to make any calls, although I can access the internet. my service provider says nothing is wrong. Please help

    If your phone is offline, there is no way to track it. Report the loss to trhe police, your carrier & Insurance company. Change all of your passwords.
    Sorry, but Apple can't help you.

  • Can't find printer Please help

    Just got my MacBook and am trying to find the printer on my home network.
    I have called apple, not much help, I have called ATT (my internet/network provider) not much help there either.
    I have 2 desktop pc's.The main one has a 2WIRE gateway modem/network wireless adapter, runs Vista and has an HP psc 2410xi printer hooked up with a usb cable directly to it. The other desktop is running XP and can locate the printer on the network without any problems. ( I set it up in control panel>network & sharing center in windows.
    Apple did have me download and install the printer driver from HP.
    Can someone tell me what steps or what I should do on my MacBook to find this printer on my network? I can connect to the internet using airport without any problems just no printer to be found....
    Thanks for your help I hope I posted in the right place.
    Shireen

    Have you Added the printer via the Print & Fax preferences? Select Mac Help from the Finder's Help menu and search for "add printer" without quotes. Several articles will appear to help you.

Maybe you are looking for

  • Error when uploading par files - Exception

    Hi all, I'm getting an error when I try to upload any par file of the MSS package through the administration console. The error thrown is: Messages: INFO: Detected Portal Archive File: com.sap.pct.hcm.attendanceoverview.par INFO: Application successf

  • Installing windows using bootcamp. HELP!! :(

    Ok so ive decided i need to install windows onto my mac, to use software important for my university studies, and have opted to use the boot camp method. I started by purchasing and downloading windows 8 directly onto my mac book pro, and as such, ha

  • Adobe Illustrator crashes when I try to print

    I have a new MacBook Pro Retina, 15-inch and the system crashes when I try to print a Adobe Illustrator document. I also have a 17" PowerBook and a MacPro Xeon workstation that does not have the same problem. All systems are running OSX 10.9.4. Any h

  • Problem with render files!

    Most of the time when i open final cut pro X, few of the existing render files are missing. Its showing the orange line above. There are no other issues. It needs to be rendered again. Any idea why this is happening?

  • Trouble with Oracle Soap connection

    I am using Oracle R2 (9.02) server and trying to test deploy some basic webservices. I am using Jdeveloper 9.0.3 as the ide. When I get the webservice fielded, should I be able to see it in the web based OEM? If so, where generically. My main problem