Wants to run oracle reprot of FND from custom form returning an error when

“Oracle Reports Server CGI Error: The requested URL was not found, or cannot be served at this time. Hi is there any one who can help me
Message was edited by:
user586296

Which step is it failing at, can you post the information from the description tab.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • This is my first mac product and i want to restore my backed up data from my forma PC to my new mac. how do i do it?

    this is my first mac product and i want to restore my backed up data from my forma PC to my new mac. how do i do it?

    Migrate your Windows files or system to your Mac

  • How to view concurrent program LOG from custom FORMs

    Hi,
    How to view concurrent program LOG from custom FORMs?
    Thanks
    ESL

    Hi Thanks for your response....
    lets assume there are 2 buttons, first button to submit concurrent program and second button to view concurrent program output/log.
    Actually im able to submit concurrent program from oracle custom form(6i) in ebusiness(11.5.0.2) i.e first button (WHEN-BUTTON_PRESSED buitin).
    Rather user navigating to VIEW-> REQUEST, i would like to give option to user to view concurrent program output/log when user clicks on second button (WHEN-BUTTON_PRESSED buitin)
    How can i achive this?
    Thanks,
    ESL

  • Implementation restriction 'apps.fnd_api.g_false' call from custom form

    Hi guys
    the following PL/SQL bit executes successfully from a toad session. db user "apps"
    SET SERVEROUTPUT ON;
    DECLARE
    v_api_return_status  VARCHAR2 (1);
    v_qty_oh             NUMBER;
    v_qty_res_oh         NUMBER;
    v_qty_res            NUMBER;
    v_qty_sug            NUMBER;
    v_qty_att            NUMBER;
    v_qty_atr            NUMBER;
    v_msg_count          NUMBER;
    v_msg_data           VARCHAR2(1000);
    v_inventory_item_id  VARCHAR2(250) := '24445';
    v_organization_id    VARCHAR2(10)  := '110';
    BEGIN
    inv_quantity_tree_grp.clear_quantity_cache;
    DBMS_OUTPUT.put_line ('Transaction Mode');
    DBMS_OUTPUT.put_line ('Onhand For the Item :'|| v_inventory_item_id );
    DBMS_OUTPUT.put_line ('Organization        :'|| v_organization_id);
    apps.INV_QUANTITY_TREE_PUB.QUERY_QUANTITIES
    (p_api_version_number  => 1.0,
    p_init_msg_lst        => apps.fnd_api.g_false,
    x_return_status       => v_api_return_status,
    x_msg_count           => v_msg_count,
    x_msg_data            => v_msg_data,
    p_organization_id     => v_organization_id,
    p_inventory_item_id   => v_inventory_item_id,
    p_tree_mode           => apps.inv_quantity_tree_pub.g_transaction_mode,
    p_onhand_source       => 3,
    p_is_revision_control => FALSE,
    p_is_lot_control      => FALSE,
    p_is_serial_control   => FALSE,
    p_revision            => NULL,
    p_lot_number          => NULL,
    p_subinventory_code   => 'KSP-02', --NULL,
    p_locator_id          => NULL,
    x_qoh                 => v_qty_oh,
    x_rqoh                => v_qty_res_oh,
    x_qr                  => v_qty_res,
    x_qs                  => v_qty_sug,
    x_att                 => v_qty_att,
    x_atr                 => v_qty_atr);
    DBMS_OUTPUT.put_line ('on hand Quantity                :'|| v_qty_oh);
    DBMS_OUTPUT.put_line ('Reservable quantity on hand     :'|| v_qty_res_oh);
    DBMS_OUTPUT.put_line ('Quantity reserved               :'|| v_qty_res);
    DBMS_OUTPUT.put_line ('Quantity suggested              :'|| v_qty_sug);
    DBMS_OUTPUT.put_line ('Quantity Available To Transact  :'|| v_qty_att);
    DBMS_OUTPUT.put_line ('Quantity Available To Reserve   :'|| v_qty_atr);
    END;However, while called from a custom form, we receive the following error starting with 'apps.fnd_api.g_false' cannot directly access remote package variable or cursor.
    Does it mean, if we need to call the API through a custom form we should initiate any POLICY CONTEXT(s)? if we change the same like below code, the API call compiles successfully and we are able to display the results over the custom form objects.
    DECLARE
    v_api_return_status  VARCHAR2 (1);
    v_qty_oh             NUMBER;
    v_qty_res_oh         NUMBER;
    v_qty_res            NUMBER;
    v_qty_sug            NUMBER;
    v_qty_att            NUMBER;
    v_qty_atr            NUMBER;
    v_msg_count          NUMBER;
    v_msg_data           VARCHAR2(1000);
    v_inventory_item_id  VARCHAR2(250) := :QTY_HEADER.ITEM_ID;
    v_organization_id    VARCHAR2(10)  := '110';
    BEGIN
    inv_quantity_tree_grp.clear_quantity_cache;
    apps.INV_QUANTITY_TREE_PUB.QUERY_QUANTITIES
    (p_api_version_number  => 1.0,
    --p_init_msg_lst        => apps.fnd_api.g_false,
    p_init_msg_lst        => 'F', --Value manually assigned
    x_return_status       => v_api_return_status,
    x_msg_count           => v_msg_count,
    x_msg_data            => v_msg_data,
    p_organization_id     => v_organization_id,
    p_inventory_item_id   => v_inventory_item_id,
    --p_tree_mode           => apps.inv_quantity_tree_pub.g_transaction_mode,
    p_tree_mode           => 2, -- value manually assigned
    p_onhand_source       => 3,
    p_is_revision_control => FALSE,
    p_is_lot_control      => FALSE,
    p_is_serial_control   => FALSE,
    p_revision            => NULL,
    p_lot_number          => NULL,
    p_subinventory_code   => 'KSP-02', --NULL,
    p_locator_id          => NULL,
    x_qoh                 => v_qty_oh,
    x_rqoh                => v_qty_res_oh,
    x_qr                  => v_qty_res,
    x_qs                  => v_qty_sug,
    x_att                 => v_qty_att,
    x_atr                 => v_qty_atr);
    :QTY_HEADER.ONHAND_QTY := v_qty_oh;
    :QTY_HEADER.RES_QTY := v_qty_res;
    END;Please input your valued suggestions.
    regards,

    Done, by creating a database stored procedure and returning values. Example procedure as following:
    CREATE OR REPLACE PROCEDURE xx_retrive_quantity (item_id       NUMBER,
                                                     org_id        NUMBER,
                                                     subinv        VARCHAR2,
                                                     oqtt      OUT NUMBER,
                                                     oqtr      OUT NUMBER)
    IS
       v_api_return_status   VARCHAR2 (1);
       v_qty_oh              NUMBER;
       v_qty_res_oh          NUMBER;
       v_qty_res             NUMBER;
       v_qty_sug             NUMBER;
       v_qty_att             NUMBER;
       v_qty_atr             NUMBER;
       v_msg_count           NUMBER;
       v_msg_data            VARCHAR2 (1000);
       v_inventory_item_id   VARCHAR2 (250) := item_id;
       v_organization_id     VARCHAR2 (10) := org_id;
       v_subinventory_code   VARCHAR2 (20) := subinv;
    BEGIN
       inv_quantity_tree_grp.clear_quantity_cache;
       apps.INV_QUANTITY_TREE_PUB.QUERY_QUANTITIES (
          p_api_version_number    => 1.0,
          p_init_msg_lst          => apps.fnd_api.g_false,
          x_return_status         => v_api_return_status,
          x_msg_count             => v_msg_count,
          x_msg_data              => v_msg_data,
          p_organization_id       => v_organization_id,
          p_inventory_item_id     => v_inventory_item_id,
          p_tree_mode             => apps.inv_quantity_tree_pub.g_transaction_mode,
          p_onhand_source         => 3,
          p_is_revision_control   => FALSE,
          p_is_lot_control        => FALSE,
          p_is_serial_control     => FALSE,
          p_revision              => NULL,
          p_lot_number            => NULL,
          p_subinventory_code     => v_subinventory_code,
          p_locator_id            => NULL,
          x_qoh                   => v_qty_oh,
          x_rqoh                  => v_qty_res_oh,
          x_qr                    => v_qty_res,
          x_qs                    => v_qty_sug,
          x_att                   => v_qty_att,
          x_atr                   => v_qty_atr
       oqtt := v_qty_att;
       oqtr := v_qty_atr;
    END xx_retrive_quantity;This stored procedure could be called from a custom form or report by passing values. Hope this is useful for few others out there. A complete writeup is available over here
    http://windows7bugs.wordpress.com/2011/04/17/oracle-ebs-r12-how-to-call-standard-apipackages-from-custom-form-or-reports/

  • HT201210 my ipod is jailbroken and i wanted to unjailbreak it by updating it , but i always get an error when i do what is another way i can unjailbreak my ipod

    my ipod is jailbroken and i wanted to unjailbreak it by updating it , but i always get an error when i do what is another way i can unjailbreak my ipod.

    You can try putting the iPod into DFU mode and see if that will let you restore and remove the jailbreak:
    http://www.iclarified.com/entry/index.php?enid=1034
    Some jailbreaks cannot be removed and in some cases will permanently disable your iPod. If that happens to you, then you will have to buy a new iPod; Apple will provide no support, warranty or out-of-warranty, for a jailbroken iPod.
    You're on your own from here. We can provide no further help with a jailbroken iPod in these forums.
    Good luck.

  • I have backed up my disk using Time Machine.  Now I want to delete the backed-up files from my hard drive.  But when I do and reconnect the external hard drive, the files are also deleted on that.  What do I do?

    I have backed up my disk using Time Machine.  I then deleted the back-up files from my MacBook hard drive.
    I then reconnected my external hard drive and find the files I deleted from my hard drive are also deleted from
    my external hard drive.  Can someone tell my what what happened?  I'm confused.

    Hello,
    Time Machine is not a good way to do that, when it eventually needs more room it deletes old Backups to make room.
    If you really want to keep Files but remove them from the Internal Drive, then I'd get another external drive to copy or clone them to that is not used for TM.

  • Executing sqlldr (sql loader) from java and returning the error code

    I'm wandering do sqlldr return any error code whenever it hit error while running in java.
    For example, if i run in command prompt using the command below,
    C:\ >sqlldr uid/pwd data=abc.dat control=abc.txt
    It might give me some indicator that error occurs such as
    SQL*Loader-601: For INSERT option, table must be empty. Error on table CURRENCY
    or
    SQL*Loader-500: Unable to open file (abc.txt)
    SQL*Loader-553: file not found
    SQL*Loader-509: System error: The system cannot find the file specified.
    But when i run in java using the code below,
    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec("sqlldr uid/pwd data=abc.dat control=abc.txt");
    int exitVal = proc.waitFor();
    System.out.println("Process exitValue: " + exitVal);
    it will only give me the same exitValue of 1(i presume its error) / 0 (i presume no error) instead of the details of the error.
    How can i get the exact error code/message if i were to execute it using java?
    Any solution?

    mg,
    I don't think user576271 wants the exit code, I think [s]he wants the error message.
    But wouldn't error messages from SQL*Loader be sent to the stderr stream, and not the stdout stream?
    In which case user576271 would need method "getErrorStream()" of class java.lang.Process, no?
    Good Luck,
    Avi.

  • How to View Output From Customized Form

    I have developed a new customized form and attach it in Receipt Form Menu. I have added a button of Print Receipt on the form by name Print Screen.I have added code behind the Print Receipt Button that when it would be clicked report of receipt would be generated.When i click Print Receipt Buttton Request is submitted to Concurrent Manager and i have to view it from Concurrent Request Window.My requirement is when i click Print Screen Button output would be generated and viewable at that place and i dont need to go in concurrent request window to view and print that output.Is there any solution please suggest me.I am thankful in advance to all.

    Hi;
    Please check [this |http://forums.oracle.com/forums/forum.jspa?forumID=129] and see it helpful
    Also see:
    How to view the output submitted by other user
    How to customize look of a view
    Regard
    Helios

  • Want to use "Open Document"  PR link on customized form....

    I developed customized form and register in ERP. Now, the requirement is to view Purchase requisition by click on button as Oracle provide in
    "Notification Summary" => "Open Particular Notification"=> "Open Document"
    then it load JInitiator or JRE and open Notification PR or PO..
    Is it possible to use this option on customized form, if yes than how?
    Edited by: user9092987 on Sep 25, 2010 4:15 AM

    gavy81 wrote:
    >
    quote:
    Originally posted by:
    K0rrupt
    > First give your vote button a name. Then inclose it in a
    <cfif>.
    > For example....
    >
    > <cfif IsDefined "button_vote">
    >
    > Insert script here
    >
    > <cfelse>
    >
    > <form action="process_quickpoll.cfm" method="post"
    name="Poll">
    >
    > <cfoutput query="Question" group="QuestionID">
    > <input type="hidden" name="QuestionID"
    value="#QuestionID#">
    > </cfoutput>
    > <input type="submit" name="button_vote"
    value="Vote">
    > </form>
    >
    > </cfif>
    >
    > You can make the popup window here:
    >
    >
    http://www.dynamicdrive.com/dynamicindex8/popwin.htm[/q
    >
    >
    > Thanks but what i should enter in the after <cfif
    tag>
    >
    > insert code here
    >
    > should i use <cflocation tag> for this or what..
    >
    >
    i think he means to replace the "Insert script here" with
    actual code
    for processing submitted info. you MUST give your submit
    button a valid
    NAME (as in name="somenameforyoursubmitbutton"), otherwise CF
    will not
    be able to see the button in the submitted form fields and
    the <cfif
    isdefined("form.somenameforyoursubmitbutton")> will not
    work...
    your code for processing form submission may include things
    like
    - storing submitted info in a db table
    - performing calculations
    - a multitude of other things
    if in your popup window you want to show someting like
    current vote
    standings, then you will probably store the submitted vote in
    a db or
    some scoped variable, then calculate current vote standings,
    and then
    display that info in your popup. in that case you can just
    add
    target="_blank" inside the <form> tag to open the
    action page in a popup.
    Azadi Saryev
    Sabai-dee.com
    Vientiane, Laos
    http://www.sabai-dee.com

  • Configurator from custom form

    We are using a custom order entry form and we are trying to lauch the configurator from the form .
    If anyone has aready done this ,please do throw inputs .

    This is a common requirement. See http://download.oracle.com/docs/cd/B34956_01/current/acrobat/120czimpg.pdf for details - esp. chapter 9.

  • TS3212 running windows 7 64 bit home premium edition, getting installer error when attempting to download itunes

    I'm running windows 7 64 bit home premium edition, getting installer error whenever I attempt to download iTunes.  Cannot resolve despite every attempt known to man!  Help!

    I'm having the same problem and this is my error message:
    what do I do?

  • Help needed removing contants from Custom Form

    Folks,
    Please forgive this beginners question, but how do I get the hardcoded text out of my custom form?
    I would like to put it all in one place to make future GUI changes easier.
    I have seen in 'User Library.xml' things like this:
    <Field name='global.firstname'>
      <Display class='Text'>
        <Property name='title' value='_FM_FIRSTNAME'/>
        ....When this section of the form is displayed '_FM_FIRSTNAME' magically becomes "First Name". This is what I want to be able to do, but for the life of me I can't find where (or how) '_FM_FIRSTNAME' is defined.
    I tried the following in my custom form
    <defvar name='GAVIN_FN_SpecialField01'>
      <s>The Text I Want to See</s>
    </defvar>
    <Field name='global.specialfield01'>
      <Display class='Text'>
        <Property name='title' value='GAVIN_FN_SpecialField01'>
        ....But when the form is displayed the text in front of the field is "GAVIN_FN_SpecialField01" and not "The Text I Want to See".
    Can someone offer any advise?
    Regards,
    Gavin

    I have a supplementary question.
    My message catalogs are now in place and working for simple things like field names.
    I would like to use them in a Select control. Is that possible?
    I have this loaded as my custom message catalog:
    <Configuration name='Gavin Message Catalog' .... >
      <Extension>
        <CustomCatalog id='Gavin Message Catalog' enabled='true'>
          <MessageSet language='en' country='US'>
            <Msg id='_GAVIN_FN_FAV_DRINK'>Favourite Drink</Msg>
            <Msg id='_GAVIN_FN_FAV_DRINK_VALUE1'>Tea</Msg>
            <Msg id='_GAVIN_FN_FAV_DRINK_VALUE2'>Coffee</Msg>
          </MessageSet>
        </CustomCatalog>
      </Extension>
      <MemberObjectGroups>
        <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
      </MemberObjectGroups>
    <Configuration>And I have the following in my custom form:
    <Field name='global.gavin_fav_drink'>
      <Display class='Select'>
        <Property name='title' value='_GAVIN_FN_FAV_DRINK'>
        <Property name='valueMap'>
          <appendAll>
            <String>Leaf Based</String>
            <ref>_GAVIN_FN_FAV_DRINK_VALUE1</ref>
            <String>Bean Based</String>
            <ref>_GAVIN_FN_FAV_DRINK_VALUE2</ref>
          </appendAll>
        </Property>
      </Display>
    </Field>The use of '_GAVIN_FN_FAV_DRINK' for the field name works perfectly.
    The use of '<ref>GAVINFN_FAV_DRINK_VALUE1</ref>' results in the text "_GAVIN_FN_FAV_DRINK_VALUE1" appearing in the drop down box rather than the desired "Tea".
    Can someone help me this this please.
    Regards,
    Gavin

  • I want to run my program with continuous aquisition and write data to file when a button is pressed and get the most recent samples from the DAQ board.

    This is an update to a question I asked earlier. I am still trying to solve the problem. I have included a zip file with a library file. The file to open in pj_pushbutton.vi. I have placed comments explaining the issues and problems in this vi and the subvi's.
    When I push my button to write the data to file I think it is writing the data that has already been stored in the buffer and writing to file all at once. I want the data that is taken from the DAQ board from the time that I press the Write File button. How do I do this?
    Attachments:
    pj_pushbutton.zip ‏692 KB

    Hi,
    1. In AI read, you need to set the Read/Search option to "Relative to End of Data".
    2. Next you should not start AI Read VI until you press the Write to File. I am attaching an example VI below. Please see if it helps.
    Regards,
    Sastry V
    applications Engineer
    National Instruments
    Attachments:
    MostRecentAcquiredData.vi ‏97 KB

  • Want to run two 30" cinema displays from Mac Pro

    I'm running Avid Media Composer software to edit a film that I made, and I would like to run (if possible) two Apple 30" cinema displays next to each other off of my Mac Pro (the computer was purchased at end of 2009). While editing with Avid software, I like to spread out my work and bins in able to see everything, and strange as it may sound, I'd like more room than one 30" display can provide. Currently, I have one Apple 30" Cinema display in use, and could purchase another large display if I can find out-- definitively, if my Mac Pro computer will be able to handle it and power it effectively. I realize that Apple doesn't sell the 30" displays anymore, but I saw a few relatively inexpensive ones available on Craigslist recently.
    The second monitor that I'm using now is a much older (non-Mac) monitor (and smaller) and the resolutions don't match the high resolution of my single Apple 30" display. So, my reason for wanting a second, larger display are twofold... 1) to see more of my work, and 2) to get the highest resolutions to match (2560x).
    The ports on the back of the Mac Pro don't look like they will support the use of a second 30" display, just one. Does anyone have any suggestions?
    Do I need to purchase another video card to run a second 30" Apple display? If so, which ones are best/do you suggest?
    Do I need to upgrade my processing speed (get a faster processor) to run two large, high-rez monitors?
    specs:
    Mac Pro
    10.6.6
    Processor: 2 x 2.8 GHz
    Memory: 2 GB
    800 MHz DDRZ FB-DIMM
    Quad-Core Intel Xem
    Purchased end of 2009

    If it has two DVI ports, just plug in the second display with an additional Dual-Link DVI cable -- the card can run both displays without issue.
    If it has one DVI and one other type, Exactly which display card do you have installed?

  • Calling seeded oracle form from custom form

    Hi All,
    I wan't to call oracle seeded form for Item Entry(INVIDITM) from a custom oracle form in Inventory module. When I call the form using FND_FUNCTION.EXECUTE and pass item_id as one of the paarmeters, the seeded form open but with very limited capability to changes. Most of the field are disabled or non updateable.
    I wan't to know if its possible to open the seeded form in full change mode??
    Thanks in advance

    Hello,
    You can open a form by typing an url in the browser.
    e.g. http://machine:port/forms90/f90servlet?config=...
    So, it is easy to place the call in your jsp (window.open)
    Francois

Maybe you are looking for

  • How to highlight only one column

    I am trying to highlight and copy one column but the one next to it is also highlighted.  Help!!

  • Cr2 files are icons instead of previews as of today!

    My raw files are only viewable as thumbnail previews in bridge instead of in finder! I have always been able to see the previews in finder until today. Same camera (canon 7D) as always. I have checked the view options for the folder, set the default

  • Three lost rentals?

    I keep bumping into the same error over and over again.  I rented three movies over a period of a few days.  iTunes has tried to download these movies from the ITMS for more than a month, always ending with an error before the rental download is comp

  • CPU Temp Diode at 82 degrees C - Fire fire!!

    So then, I'm using Safari, Mail is open and i'm listening to iTunes. The normal set up for me and my Macbook. The most intensive program I use it Word and it's closed when not needed. But my MB seems to run hot hot hot all the time - well most of the

  • Mailtag hangs Mail if Keyword drop down menu is not closed

    If you set a keyword tag from its drop down menu *+but do not close up the drop down list+* - when you close the message window Mail hangs and has to be Force Quitted. This happens on iMac and MacBook Leopard 10.5.6 and Mailtags 2.2.3 (This is repeat