How to call dicoverer through menu option in forms

Hi,
Need help.........Can anybody tell me .....how to call dicoverer through menu option in forms.
Thanx
Sunil

Hi,
You can define a Form Function filling the basic information and
HTML call Set as OracleOasis.RunDiscoverer. You can even define Paramters during the form function registration. With this definition you will able to create a link to a Discoverer workbook that will automatically open Discoverer Plus or Viewer to display the workbook using Apps security.
Please refer to the following Metalink Note for more details:
278095.1- How to Create a Link to a Discoverer Workbook in Apps11i
Hope This helps
- Sanjeev

Similar Messages

  • How to Call a jasper report from Oracle Forms 6i.

    Hi
    Can anybody tel me how to Call a jasper report from ORacle Forms 6i.
    Thanks & Regards
    Bango

    Forms 6i client/server? Use the HOST command to call the report. Since a Jasper report is just a call to a url, it will be something like:
    v_url := '<your url to the report>';
    host ('cmd /c start '||v_url);If it's web Forms 6i it even easier. Just use web.show_document(<url>).

  • How to log when a menu option is selected in an IVR Script

    Our business would like to track how many customers select a specific option in the menu of a CCX script.  For example: Customer calls in to the IVR and selects option 2 for a password reset within the menu.  My question is how to configure this within the script?
    We are running UCCX 8.0.
    Any help would be appreciated, thank you.

    The other thing we sometimes will do is to actually create a queue with no agents in it.  Queue the call and then dequeue the call, and you will be able to run reports on that queue to see how many calls went into it.  It's a workaround, but is sometimes easier for customers in smaller environments especially.
    John Irey
    Tympani Inc.

  • UCCX 8.5 - How do I create a menu option that overwites a prompt?

    Hi All,
    I'm fairly new to UCCX scripting and have a question about a way to create a menu option that overwrites a prompt.
    Here is the situation, we have only one small call center. There are two scripts in play here, one is their production script. Everythign is working fine with that script. The other is a recording script. The call center supervisors would like to be able to call into the recording script and record a prompt that says something like "All agents will be out today, November 1st, until 2pm on a staff luncheon, please call back at 2pm". This would overwrite the welcome prompt on their production script. As you can see from the language above, the message would be different depending on what was going on that day. I actually have this working quite well.
    The problem is that when they come back from their luncheon, or from whatever they were doing, they want the ability to revert back to the original opening greeting wav file. The way it's set up now, when they get back from lunch they'd have to re-record the whole opening greeting "Thank you for calling XXX, press 1 to be connected to an agent, press 2...".
    It seems like there should be a way, a new menu option in the recording script, that would allow me to revert back to the original recording so they don't need to re-record the opening greeting every time. I've created a new folder in Prompt Managment called "Revert" and placed the orginal opening greeting there. Can anyone give me guidance on what step to insert that would in effect say, if the caller presses 3, copy "Revert/Welcome.wav" to "CallCenter/Welcome.wav"? In this case the "CallCenter" folder contains the production prompts for the CallCenter script.
    Thanks,
    Josh

    Josh,
         I would recommend the following configuration:
              1.) Setup a XML file that has an option called "EarlyClose" or something similar.
              2.) Setup your script with an "IF" that reads in that XML document and looks for "EarlyClose".  If it's set, then play the custom closed message.  If not, then play the normal message that is never overwritten.
         The second part is to create a second script that has an internal only extension.  This would then allow your supervisor to dial in, and put in a PIN.  Once this is done, set have the agent record the greeting.  Then (and only then) set the "EarlyClose" variable in your XML document.  This will prevent the user not getting the new prompt recorded and EarlyClose being set early.  You can also setup the script to play back the prompt and then have the end user validate that everything is working right.  I would recommend reading through the scripting guides as they have some great infomation on this type of thing and example scripts.  I hope this helps you out.
    Thank you,
    Robert W. Rogier -- UCCE TAC Support Engineer
    Cisco, RTP NC.

  • How to call C through Cold Fusion?

    I have some legacy C code.Does anybody know how to
    call it from Cold Fusion?
    Thanks!

    Depends on what it does and how you need to interact with the
    code. Do you have the option of simply passing arguments and
    retrieving output via CFEXECUTE? Is it something akin to CGI that
    may require using the CFX framework?
    &laz;

  • How to Call DataGrid through xml

    Hi,
    I need to fill my datagrid when i click the add button. How
    to do it and how to call through Xml. Any idea.
    Regards
    Muthu

    Hi,
    You can find a sample in which XML data is being displayed
    using DataGrid.
    http://livedocs.adobe.com/flex/3/langref/mx/controls/DataGrid.html#includeExamplesSummary
    Hope this helps.

  • How to Call  fnd_submit.submit_program  in a custom Form ?

    Hi,
    Im creating a custom form based on TEMPLATE.fmb in Oracle EBS R12.
    I want to call a concurrent program (called: RVCTP) through trigger WHEN_WINDOW_CLOSED or WHEN_BOTTON_PRESSED whatever..
    I'm using this function: fnd_submit.submit_program
    How i can call it through the trigger ?
    I tried :
    declare
    con bolean;
    begin
    con:=fnd_submit.set_request_set('PO','TEST');
    con:= fnd_submit.submit_program('PO','RVCTP',NULL,'BATCH',NULL,89);
    commit;
    end;
    Nothing happening!
    Please advise!
    PS. i used fnd_submit.set_request_set because in Oracle Apps Developer's Guide it says i have to use it before fnd_submit.submit_program.

    Thank you,
    Check This in (20-30 Oracle Applications Developer's Guide R12 ) :
    Example Request Submissions
    /* Example 1 */
    /* Submit a request from a form and commit*/
    :parameter.req_id :=
    FND_REQUEST.SUBMIT_REQUEST (
    :blockname.appsname,
    :blockname.program,
    :blockname.description,
    :blockname.start_time,
    :blockname.sub_req = 'Y',
    123, NAME_IN('ORDERS.ORDER_ID'), 'abc',
    chr(0), '', '', '', '', '', '',
    IF :parameter.req_id = 0 THEN
    FND_MESSAGE.RETRIEVE;
    FND_MESSAGE.ERROR;
    ELSE
    IF :SYSTEM.FORM_STATUS != 'CHANGED' THEN
    IF app_form.quietcommit THEN
    /*form commits without asking user to save changes*/
    fnd_message.set_name('SQLGL',
    'GL_REQUEST_SUBMITTED');
    fnd_message.set_TOKEN('REQUEST_ID',
    TO_CHAR(:PARAMETER.REQ_ID), FALSE);
    fnd_message.show;
    ELSE
    fnd_message.set_name('FND',
    'CONC-REQUEST SUBMISSION FAILED');
    fnd_message.error;
    END IF;
    ELSE
    DO_KEY('COMMIT_FORM');
    IF :SYSTEM.FORM_STATUS != 'CHANGED' THEN
    /*commit was successful*/
    fnd_message.set_name('SQLGL',
    'GL_REQUEST_SUBMITTED');
    fnd_message.set_TOKEN('REQUEST_ID',
    TO_CHAR(:PARAMETER.REQ_ID), FALSE);
    fnd_message.show;
    END IF;
    END IF;
    END IF;
    I'm still getting an error "Wrong Number of types or arguments in call to 'SUBMIT_REQUEST' "

  • How to call a jar file from oracle forms (6i)

    Hi,
    I'm working with oracle 6i. I want to know that how to call a .jar file from forms menu. when I use HOST('<path>\test.jar') it is working in 'Client Server' any way. but the problem is I use application server in order to run my form. so my form is in the server and I run the form via clients web browser. in that case above solution will not work. if any body knows how to overcome this problem please reply.
    thanks.
    duminda

    I created a bean area and set the class name as implementation class. within that java bean class I called to a bat file which consists of the execution command of the jar file ( because i don't know how to call .jar file from my bean class directly).
    then i tried to run it in application server. its still not running.
    can you tell me what i have to do within my bean class? or can you suggest any solution?
    thank you.

  • How to call OA Framework Page from Oracle Forms?

    Hi,
    I have read the OA Guide on "Forms / OA Framework Page Integration" which guide on how to launch OA framework pages from Oracel Applications Forms.
    I would like to perform the same whereby to call the OAF page from Oracle Form itself. However I do not quite understand on the below section:
    To make use of the Oracle Application API - fnd_function.execute.
    Where should I use this function? Should I create a button triggered to link to OA Page?
    Appreciate advise on this.
    Thanks and Regards,
    Shiau Chin

    Hi Ashok,
    You can refer the topic Forms / OA Framework Page Integration in Developers Guide.
    There you can find details about the below :
    Launching Oracle Applications Forms from OA Framework Pages
    Launching OA Framework Pages from Oracle Applications Forms
    Thanks
    Jegan

  • How to call a .rpt file from oracle form 10g

    I need to call a .rpt file from oracle form 10g. please suggest what to do for this

    Hi,
    onlz rdf and rep files are Reports executables. Convert rpt to rep and you are file (Reports has a conversion utility in the bin directory)
    Frank

  • How to Call Crystal Reports XI  from  Oracle Forms 6i

    hi can any one ,Please provide me the steps to call Crystal Reports XI from Oracle Forms 6i
    very urgent please
    if any Doument,attachment please send to [email protected]
    Thanks in advance
    Regards
    S.Thirumalai selvan

    Hi All,
    Can anyone send me the steps to call Crystal Reports XI from Oracle Forms 6i (client/server)?
    Thanks in advance, Lidija
    My email is: [email protected]

  • How can I hide a menu options programatically in Forms 6i?

    Hi folks:
    I am using a customized menu. Called AEMS001. I have four options: File, Maintenance, Operations, Administration.
    Inside Maintenance, I have 15 different options and I need to hide five of them (Fees, Documents, Legal, Recors, Others) depending of the user role assined.
    How can I do that?
    I try to use set_menu_item_property('FEES', Visible, property_false)
    but it give me an error: FRM-41067: Cannot find menu item: invalid Id
    What do I did wrong?
    thanks a lot.
    Abdel

    hi,
    it might be that there is an initialization error in your code...
    try something like this (you can use visible or enable property).
    tell me your email and i will send you sample form and menu with the following code ...
    declare
    menu_item_name     varchar2(40) := 'MENU2.ITEM23';
    menu_item_id     MenuItem;
    begin
    menu_item_id := find_menu_item(menu_item_name);
    /*if (not id_null(menu_item_id)) then
    if (GET_MENU_ITEM_PROPERTY(MENU_ITEM_NAME, visible)='TRUE') then
         set_menu_item_property(menu_item_id, visible, property_false);
    else
         set_menu_item_property(menu_item_id, visible, property_true);     
    end if;
    else
    message(' cannot find menu item!');          
         raise form_trigger_failure;
    end if;     
    if (not id_null(menu_item_id)) then
    if (GET_MENU_ITEM_PROPERTY(MENU_ITEM_NAME, enabled)='TRUE') then
         set_menu_item_property(menu_item_id, enabled, property_false);
    else
         set_menu_item_property(menu_item_id, enabled, property_true);     
    end if;
    else
         message(' cannot find menu item!');          
         raise form_trigger_failure;
    end if;     
    end;

  • How to see the BPS menu options when you log-in to the systems

    Hello All:
    I am able to use BPS0 and BPS_WB transactions to directly access the BPS development environment.
    But I am not able to see the options for accessing these transactions in the user-menu(that appears to the left of the screen when you log-in to the system).  I am using the BW 3.5 system. What should I do to see them in my menu?
    Thanks,
    Kumar

    Hello Ajay,
    I created a new role called "zrole" for displaying planning trasactions in the menu. The name of the area menu to see the planning transactions in BW 3.5 is "RS00_PLAN". I am now able to see all SEM planning transactions in the menu.
    I am awarding full points.
    Ashwin - Since the menu for accessing the planning transaction is not available by default in the SAP menu I had to create a role.
    Thank you Ajay and Ashwin.
    Regards,
    Kumar

  • How to call Biztalk  through ABAP-DYNPRO

    Hi All  ,
    I want to call a function module which  in  BIZTALK Server through
    ABAP-DYNPRO ( by service call) . for this I require  Destination details ( in  service call ) .
    Can anyone please send me the Destination details or the approach  to follow for calling the  Biztalk ?
    Thanks in advance ..
    Regards
    Rahul

    Run a search on Web service calls from WDA.
    This topic has been addressed on numerous occassions.
    You can call BIZ-TALK using a web service.
    You could also call it using straight HTTP .
    There are classes in ABAP to allow you to write an HTTP client app if required.
    If possible go the Webservice route.
    IE have you Biztalk guy generate a WSDL for the call.
    The follow instructions on numerous threads on calling web services.
    Cheers
    Phil.

  • How to call program through process chain

    Hi Gurus,
    I am in the position to execute the abap program through process chain, I have used  abap program as process type in process chain(First time I am using this process type).when I am executing the process chain, the abap program is not executing.Eagerly anticipating your reply.
    Regards
    Shiva

    Hi
    I managed the execution of rscrm jobs in PC as follows:
    1. Execute query through RSCRM_BAPI transaction
    2. goto sm37 and copy the Jobname (the active one)
    3. Create following progromm
    *& Report /WST/RSCRM_START *
    REPORT /WST/RSCRM_START .
    parameter: l_bid TYPE sysuuid_c.
    CALL METHOD cl_rscrmbw_bapi=>exec_rep_in_batch
    EXPORTING
    i_barepid = l_bid
    4. Execute Programm and fill the Parameter with the Jobname
    5. Save as a new program variant and use in PC as a normal program
    I hope that helps.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3507aa90-0201-0010-6891-d7df8c4722f7
    regards
    ashwin

Maybe you are looking for

  • External disk not shown in finder or diskutil

    When I connect an external harddrive to my Macbookpro it does not show on Finder, Diskutil (but the hdd disk starts). USB works fine. If I plug in FW when computer is shut down or sleep it works fine. Cant find out why. Tried with different cables an

  • Harmony Remote Random Signals?

    Hello...I did a search and found tons of stuff on setting up a Harmony remote to work with ATV2, but none that had this particular issue...maybe someone here can help me out. I have an AppleTV2 and was able to set up my Harmony One to work with it as

  • Interaction using Flash an Spry possible?

    Hello, I am just curious, if there is a possibility to use Spry from a flash movie. For example, I like to have the Spry datagrid on a website using a typical master and detail area like this:   <div class="MasterDetail">     <div spry:region="dsccar

  • Cp and rsync cannot find system directory

    Hello, I am working on a script to copy a custom user profile over to the default. Part of the script uses rsync to copy the contents of the customized profile, named "profile" to the default profile located in: /System/Library/User Template/English.

  • Are there any risk if i provide my new ipad serial number to someone else?

    Hi, i have a new ipad2 with full one year warranty because i haven't turn it on and connect it to ituns yet. i want to sell it from ebay and someone ask me to have the serial number. are there any risk if i provide him the serial number? ie. he can u