SOS-- run_product

Hi I am trying to invoke a report from a form module using "run_product" command. THe report and form are not in the same directory. How can I hard code the path instead of declaring the path directly in "run_product" command.
Thank you!
null

Usually you should not hard code the path directly in the Run_Product as it will affect the portability of the Application.
Set the REPORTS60_PATH environment variable (for Reports 6) in the Registry and Reports will search in this path for the Reports
e.g;
REPORTS60_PATH D:\oracle\reports60;c:\app
Similarly u should set the FORMS60_PATH also so that Forms will search in this path while calling Forms using CALL_FORM,OPEN_FORM, NEW_FORM.
Hope this helps.
Thiru

Similar Messages

  • RUN_PRODUCT is not working

    hI,
    I am working in developer 6i forms and reports. I am trying to call a report from a for using RUN_PRODUCT built in. But it’s generating the following
    Error: FRM-41211: Integration error: SSL failure running another product.
    I think the procedure used for running the report is ok because it’s working in another machine.
    Please help me, how can I solve this problem.
    Best Regards,

    Re-Install the reports again,,
    this is a common Windows Problem

  • Every time I update LR to a new version I seem to need a patch to make it work..... once again here I am SOS! I've just update LR to the 5.7 version and It wont let me start it: The application was unable to start correctly (0xc000007b).

    Every time I update LR to a new version I seem to need a patch to make it work..... once again here I am SOS! I've just update LR to the 5.7 version and It wont let me start it: The application was unable to start correctly (0xc000007b).

    Your system is missing a couple DLLs that LR needs, but the fix at Adobe is to copy them to the LR folder which gets replaced for each install, so you have to redo it after each LR install.  It would be worth documenting the process and saving the DLLs so you don’t have to ask about it each time:
    http://helpx.adobe.com/lightroom/kb/error-unable-start-correctly-0xc00007b.html
    You might also use the AIO210 program to add them as detailed in this YouTube video—maybe this is a more permanent fix, but since the files are from media-fire be very careful about what you do so as not to install a virus on your computer. 
    I’d scan the downloaded ZIP you download with whatever virus and internet security software you have and don’t be fooled by extraneous popups you might see during the download process.  I was able to download the aio210.zip after authorizing one Captcha window and closed at least one bogus popup trying to get me to install other software.  I also scanned the downloaded zip with two virus scanners and both said it was clean.  Here is the YouTube video, where the link to the ZIP to download is in the description once you expand it:
    https://www.youtube.com/watch?v=vlT0N2CX50g

  • Lost document on my new MAC because I accidentally saved on another account that I had no permission to save to..now I don't know where the doc is but I just know its somewhere on the computer..maybe the temp files or something?!sos! please help me!!

    I saved a document, while logged in as a Guest, to another user account [it was set up for some reason to save like that (I guess the person who used computer last did that) and I didn't check before "saving"] on accident. Of course I didn't have permission to save on the other user's account but I was in a rush and so I figured everything was fine but later I found that there was a message warning me saying it did not save because it couldn't save because I had no permission to save on that account and gave me the option to duplicate or cancel.. I wasn't paying attention so I can't remember which button I hit but clearly it wasn't "duplicate"
    I took hours perfecting this document and now I can't find it.. anywhere!
    Where do these types of things go when this happens.. I know it's somewhere on the computer but where?? SOS I need the doc and I'm hoping I can find it
    I guess it's the same as someone who accidnetly hits "don't save"... question still stands.. please anyone help me!!!
    I'm trying to use Disk Drill but I only found things from November and it seems like it only shows files that have been physically/manually deleted..and my TIME MACHINE WAS NOT SET UP..because we recently got this MAC computer and had no clue what it was
    maybe its in some temp files somewhere..where do not saved documents go.. i know that it is probably writable but I know that is probably still exists
    ANYONE WITH INFO PLEASE PLEASE HELP!!

    tis true
    I know, I always do that but I was in a rush to get somewhere and I was relying on my thousand dollar Mac to do some kind of recovery or something. I know Microsoft always keeps temporary files (I think Mac does too, part of me asking here in this forum was for someone to tell me where I can find those files) and when you go to open Office Works then it gives you the option of opening the last recent documents, saved or not saved.
    I usually copy paste into my emial just in case something goes wrong with the created document but I just didn't have the time to login and do all that My loss, you live and you learn, BUT still if ANYONE got any info on this, PLEASE DO CHIME IN *keeping the hope alive*

  • Open POs for per SOs

    Hi All,
    How can we open POs for per SOs?
    We want open 1 PO concerning all the items in 1 SO..
    So we will try to pack POs seperately for 1 customer.
    Thanks
    Regards
    Siva

    Siva,
    Please remember that a single PO is procured from only one vendor.  It is a rare event when all items in a single SO can be procured from one vendor, and would thereby qualify for inclusion in a single PO..
    You may manually create POs with as many items as you wish.  Once you have determined the materials/qtys you wish to purchase to support a particular SO, just manually enter them all into a single PO.
    Best Regards,
    DB49

  • Print report directly to printer using RUN_PRODUCT in Forms6i

    Hi all,
    I would like to have information regarding print any .rdf directly to printer from form 6i using RUN_PRODUCT.
    I got help from Form Builder Help option and tried following coding in form
         DECLARE
         PL_ID                    PARAMLIST;
         printername          VARCHAR2(50);
         BEGIN
         PL_ID := GET_PARAMETER_LIST('WEIGHMENT');
              IF NOT ID_NULL(PL_ID) THEN
                   DESTROY_PARAMETER_LIST(PL_ID);
              END IF;
              PL_ID := CREATE_PARAMETER_LIST('WEIGHMENT');
              printername := '"'||'I.T Printer'||'"';
              Add_Parameter(pl_id, 'DESTYPE', TEXT_PARAMETER, PRINTER);
              Add_Parameter(pl_id, 'DESNAME', TEXT_PARAMETER, printername);
              Add_Parameter(pl_id, 'P_EQ_NBR', TEXT_PARAMETER, :weighment.eq_nbr);
              Add_Parameter(pl_id, 'P_WT_GKEY', TEXT_PARAMETER, :weighment.gkey);
              Run_Product(REPORTS, 'c:\wegt001r', ASYNCHRONOUS, RUNTIME, FILESYSTEM, PL_ID, NULL);
         EXCEPTION
              WHEN OTHERS THEN
              MESSAGE(SQLERRM);
         END;
    END IF;
    But report did not printed and following message received in Reports Background Engine
    Error submitting report [Thu May 07 18:49:23 2009] ...
    REP-0159: Syntax error on command line.
    Pls help.
    Thanks,
    Hassan

    Hi Heidi
    I have already tried printername := 'I.T Printer'; but result is same.
    This is also my default printer and I tried to add / remove the following coding
    Add_Parameter(pl_id, 'DESNAME', TEXT_PARAMETER, PRINTER);
    but in both cased I received the same error.
    I also tried to print thru HOST command as follows
    the_username := Get_Application_Property(USERNAME);
         the_password := Get_Application_Property(PASSWORD);
         the_connect := Get_Application_Property(CONNECT_STRING);
    the_command := 'rwrun60 report=c:\wegt001r.rdf userid= '||the_username||'/'||the_password||'@'||the_connect||' DESTYPE=Printer BACKGROUND=NO BATCH=YES ERRFILE=c:\reports\error.log LOGFILE=c:\reports\joblog.log p_eq_nbr='''||'TESTMKI'''||' p_wt_gkey=118306';
    Host( the_command );
    Host command displays correctly but no printing.
    I then change my command as follows
    the_command := 'rwrun60 report=c:\wegt001r.rdf userid=test/test@test DESTYPE=Printer BACKGROUND=NO BATCH=YES ERRFILE=c:\reports\error.log LOGFILE=c:\reports\joblog.log p_eq_nbr='''||'TESTMKI'''||' p_wt_gkey=118306'; and now report prints on printer.
    But I cannot hard coded the username, password and connect.
    Thanks,
    Hassan
    Edited by: Hassan Raza Khan Lodhi on May 7, 2009 6:55 PM

  • Can we avoid username/password screen using run_product

    can we avoid username/password screen using run_product while calling a report from the form.
    how we can use the same login as in form.
    regards

    You can turn security off from your process.
    Go under adminui under Services/Application and Services/Service Management.
    Search for your process and under the security tab you can disable the security or use the 'Run As' feature to run under a specific user context.
    Jasmin

  • Using RUN_PRODUCT to run a report in a web form

    I have a web-based Oracle form with a button that, when pressed, calls RUN_PRODUCT to run a report. Reports Server can find the file and run it, but the screen output appears on the machine running Reports Server!
    Is there a way to have the output appear on the machine running the form? I am running Application Server 9i on a Windows NT 4.0 machine, and the machine I'm using to run the form is running IE 5.5 as well as Windows NT 4.0.

    Use Web.Show_Document and specify the URL for where your report is made.

  • How do i close the welcome to iMovie screen? Clicking on red button in upper left does nothing. SOS!  Thanks!

    How do I close the "Welcome to iMovie" screen?  Clicking on the red button in the upper left does nothing. SOS!  Thanks!

    "Continue" was hidden at the bottom of the welcome screen because my display was changed.  Some days I'm smarter than others.  Or.... :-) 

  • SOS: JSON and internet explorer

    hi -- I posted the following a few days ago:
    JSON error in internet explorer 8 -- works fine in Firefox
    I haven't heard anything back yet from the forum, so thought I'd send out another SOS.
    I filed an SR, but this is outside the realm of Oracle Support's expertise.
    Anyone had trouble w/ JSON and IE?
    Thanks,
    Carol

    See this page.. (Look for area under native json obkject) [http://blogs.msdn.com/ie/archive/2009/03/12/site-compatibility-and-ie8.aspx] it's possible you are getting hit with this issue..
    Thank you,
    Tony Miller
    Webster, TX

  • SOS only, No Service and searching for network

    Need help!! Very little beer spilled on my iPhone 4 where the speaker and front camera is and was wiped try immediately. It was still working fine after the incident for a few days however, suddenly the iPhone started playing up and losing reception and now its started showing SOS only then it says No Service and switches back and forth from No Service to searching.
    I've tried...
    Turing on/off airplane mode
    Taking SIM out then putting it back in
    Putting another SIM in iPhone both Telstra SIM and Optus
    Putting iphone in container of rice for hours
    Restore network settings
    Hard reset iphone (holding sleep/home key)
    Updating iTunes version
    Sync -> back up iPhone -> restore iphone -> sync and back up iPhone from previous back up's -> restore back up again just to be on the safe side but there's no change and keeps switching from No Service to searching.
    Telstra is not sure whats wrong and has advised to take it to Apple or Telstra store for assessment and sent of to get fixed.
    Does anyone know why this is happening or what I can do to fix it without having to fork out money if possible as not covered by warranty anymore.

    Disregard this post, I have resolved my issue, thank you

  • Run_product in DB procedure?

    Reg : Executing an OS command in PL/SQL.
    I used host command in form level procedure to
    send all the .txt files into a master file(eg master.txt)
    From master.txt, i read the flat file names and upload the datas
    into Oracle (by using Text_Io package). But same thing, when i
    used in db procedure with UTL_FILE
    package , I can not proceed with the host command whereas it
    works in sqlplus prompt. Is it possible to give host command in
    db procedure or any other suggestions ?
    2) A process is running at the back end with every 20
    minutes interval of time using dbms_job.submit.
    can I flash a message to any of the terminal/server/session
    after successful completion
    or if error occured?
    3) can I call run_product in db procedure?
    Thanking in advance,
    expecting yr reply soon
    regards
    Radha krishnan
    null

    Hallo
    Radhakrishnan
    i dont know how to do it
    Syam
    S.Radha Krishnan (guest) wrote:
    : Reg : Executing an OS command in PL/SQL.
    : I used host command in form level procedure to
    : send all the .txt files into a master file(eg master.txt)
    : From master.txt, i read the flat file names and upload the
    datas
    : into Oracle (by using Text_Io package). But same thing, when i
    : used in db procedure with UTL_FILE
    : package , I can not proceed with the host command whereas it
    : works in sqlplus prompt. Is it possible to give host command
    in
    : db procedure or any other suggestions ?
    : 2) A process is running at the back end with every 20
    : minutes interval of time using dbms_job.submit.
    : can I flash a message to any of the terminal/server/session
    : after successful completion
    : or if error occured?
    : 3) can I call run_product in db procedure?
    : Thanking in advance,
    : expecting yr reply soon
    : regards
    : Radha krishnan
    null

  • SOS Only - cannot connect to network

    My phone now only shows "SOS Only". I've been reading many threads related to this issue, and tried lots of methods to solve the problem, but so far no luck.
    Details:
    iPhone 4
    iOS 5.0.1
    iTunes 10.5.2
    Carrier: Virgin Mobile 11.0 (Australia)
    phone was bought outright (unlocked), and the SIM is also unlocked
    A bit of history: I bought the phone from apple, and used an australian SIM card (pre paid - virgin) for a while. In July I moved to singapore, got a new SIM/number, and in the process of living there lost my original aussie SIM. Yesterday I returned to australia and went to the Virgin store to ask for a new SIM with the same number (that I had before I left australia). They did this for me no problem, and the new SIM gave the message "SOS Only". The bloke at the shop said it would find the network in about 30 minutes. I went back 2 hours later, still no change. They said that because it was jsut after xmas, lots of people were connecting new numbers, and that I should wait 24 hours.
    Today I went to the shop again, and they tried a few things with their tech support. They tried it again with a new new SIM and still the SOS Only remained. Their suggestion was that the phone needed to be synced with my computer, so I went home.
    Synced the phone and it said "there is an update avaliable for your carrier settings" and I assumed that this would solve the problem. I updated, synced again, and the same "carrier settings" message came up. It repeatedly came up each time I plugged it in or restarted the phone, but the SOS Only message remains. It seems that the carrier settings are not actually being updated
    I have been reading related threads and tried the following:
    restarting the phone
    turning on/off airplane mode, 3G, mobile data, wifi, roaming,
    resetting network settings
    hard rebooting the phone
    restoring from backup (12 months ago)
    restoring from backup (2 hours ago)
    turning off, removing SIM, inserting and turning on
    Searching for carriers manually (Virgin does not show up, but i am sure their network is online)
    I've reinserted my singapore SIM and it works fine
    Note: I have been overseas and not used my australian number for FIVE months. The guy at the store assured me that only after 6 months does the number "disappear" and that shouldnt be the problem.
    HELP! This is so frustrating and I don't know why it is happening. I think it is a problem with the "carrier settings". I think tomorrow I might go back to the shop and get another SIM with a different phone number. After that, I may go to the apple store and get help from a "genius".
    Any suggestions or if you want any more info please reply, and thank you so much in advance!!!

    I am havign the same problem, i sent my phone away through NextByte in Mackay Queensland for a cracked screen, when i recieved it back today, the sim card wont pick up carriers or any signal. I searched for a bit last night, apparently there is soemthing inside the phone which could be damaged. And after reeading further on, i read that once it is damaged, the phone cannot be repaired. my phone also says searching.... the i search for carriers manually (Telstra does not show up, but i i call called them and their network is online)
    ....so i dont really know if this was any help, but you could try getting a sim replacement? which is what i have been told to do

  • Forms Migration to 11g, RUN_PRODUCT must be declared

    Hi All,
    I'm performing forms migration from 10g to 11g,
    I used Forms Migration Assistant to Migrate forms, But if a form is calling reports then those forms are
    not getting compiled and giving the error RUN_PRODUCT must be declared. I know that RUN_PRODUCT
    is not supported in 11g, but is there any way to configure Forms Migration Assistant so that it replaces this
    code with appropriate code. Forms Migration Assistant program asks for Report server name, Servlet Virtual Directory information for the forms that are calling reports. I don't know what to specify in virtual directory field
    and report servlet field.
    Please help me with this.
    Thanks

    You are replying to an old thread, but it looks like you didn't read it properly. It is stated that
    when migrating from 6i to 10g we have used the wizard to replace RUN_PRODUCT with rp2rro.rp2rro_run_product (rp2rro.pll).So, you also need to use rp2rro.pll if you still want to make use of RUN_PRODUCT. Even in 10g RUN_PRODUCT by itself won't work. As Christian already said:
    you probably could simply remove the call to run_product as in 10g the built-in was available but simply didn't do anything. Did you try that yet?

  • Using run_product to call reports6i on 64-bit os,no log in Report Engine

    When I execute a form 6i with Run_product call to report6i , it hangs on windows 2003 64bit server.
    same works on 32 bit server.
    Any one having similar problem???
    rgds

    Hi Ludek
    <P>
    Let me clarify a bit about the issue we been have:<br>
    For example we have report-1.rpt and report-2.rpt, both are very similar and in fact report-2 have a little bit more information than report-1. So when I install our application on a webserver in Windows 2003 32 bit system, with Crystal Report XI R2 developer edition + SP4, both reports work perfectly fine and application save the report and show it on the crystal report ActivesX viewer. So I made copy of report-1.rpt and report2.rpt with data and kept it a side.
    <P>
    Now I install our application that is the asp files and COM objects on a 64 bit windows 2003 and turned on the 32 bit mode to enable our COMs to work. I then run our application pointing it to the same database I used with the other OS, and I tried to run report-1.rpt and report-2.rpt, so report-1.rpt has failed with the viewer showing but no pages and only the controls. However, the report-2.rpt worked fine with data showing ok. So I copied the 2 reports I generated from the other OS and pointed my view report asp page to these rpt files, again same result report-1.rpt failed and report-2.rpt worked ok.
    <P>
    So I guess what I am trying to say is we are using the exact same COMs on both OS and to generate on both reports, also pointing to the same database using the same connection string. The result is one report is failing on the 64 bit machine.
    <P>
    Now when I try to export/save the report-1.rpt, the report that come with no pages, I get the error below, this is the same error I get if I try to move to different pages.
    <br><br>CRAXDRT Error Occured on Server.70 : Permission denied
    <P>
    Please let me know if I can provide more information.
    <P>
    Many thanks

Maybe you are looking for

  • Moving outlook contacts to address book???

    Hi, Can someone please explain to me, step by step, how to move my outlook contacts to address book? The instructions found in this article: http://docs.info.apple.com/article.html?artnum=304721 don't work at all. I have downloaded the app from littl

  • Portege M200 recovery boot problems

    I have an m200 and a Toshiba external DVD drive, but not the expensive DVD drive.  I need to boot to the recovery disc and recover my laptop. I can't find an image to use with an SD card so I can boot.  How else can I recover the OS?? Message Edited

  • Does the Audigy SE support digital input?

    ) I have an Audigy SE and I was wondering if it supported digital input. I was looking around the recording devices on my computer and I noticed that it said S/PDIF-In on my SB Audigy. I'm planning on connecting my ps3 to to it using optical so I can

  • Premiere Elements 12 Product registration

    How can I get the problem resolved with resigtering my new copy of V12?  Obviously this has been a problem with others using the 64b version.  This definetly is not the normal user experience I hav ceom to know with my other Adobe products including

  • HP Officejet 6500A Printer Assistant

    This may have been asked before and I thought I found the answer, but I can't find it again.  I have an HP Officejet 6500A Plus.  I have a shortcut on my desktop that is called "HP Printer Assistant - Shortcut".  When I click on it, nothing happens a