How to call button form oracle concurrent program

Hi all

I'm working on forms of Oracle 10 g and Oracle Applications: 12.1.2
already, I have created a simultaneous program (GRN report) and that with Receipt_number and org_id as parameters and the output format is. PDF. Its working fine.

Whenever customers need the report, they have to give the values of name and then correct setting program simultaneous then refresh, then clicking on the button view exit they see the output.

Now what I want is from the button of form (named as print report) is it possible to call this concurrent program and when the button is clicked, it will ask to the parameter values after giving all the parameter values and clicking on the SUBMIT/go button it must give the same output (.pdf) as simultaneous program.

can someone tell me how to get this.

Thank you

Kind regards
Guru

Hi guru
You can set up the format of output with the report itself :)
As a system administrator, change the output format of program competing in "pdf" format Then the click of a button will appear automatically the output .pdf

Kind regards

REDA

Tags: Oracle Development

Similar Questions

  • How to debug a form (Oracle Forms 11 G) via the URL module

    How to debug a form (Oracle Forms 11 G) via the URL module.



    My server operating system is Unix. Then, I could not able to do forms of debugged by the form developer.
    It displays a message "cannot find module '. Because the system tries to find the module in the Unix system instead of my local system (Windows).

    I need to debug module my via a URL.
    I can place the fmb and fmx in path of form in the server.

    Please, help me to solve this problem...

    It's a little uncertain. If your goal is to use the form Builder debugger during execution of your form on a Unix machine, this can be done. However, the form must be in working order. So before you try to attach the debugger, you must first be able to start without the debugger. For example:

    http://yourserver:OHS_port_number/forms/frmservlet? form = yourFMX

    Once it works correctly, you can turn on debugging. If your form does not even, using the debugger will not help you because it is designed to solve the problems and not coding configuration problems.

    So, follow these steps to use the debugger:

    http://yourserver:OHS_port_number/forms/frmservlet? form = yourFMX & debug = yes

    This will display a dialog box with information. Do not click OK, but you will need this information to enter in the Forms Designer. Now, open the Forms Designer and click Debug > attach Debug. You will be asked for the information displayed in the dialog box where you tried to start the form. Enter it here (in the constructor), and then click ok in both places. To display the debugger (in Report Builder), click Debug > Debug Console. And then on the toolbar, click the buttons associated with what you want to monitor. Including a breakpoint in your application code is often a more useful way to use the debugger.

    Most of this information is explained in the Forms Builder online help

    I forgot to mention...

    For debug runtime problems, see the deployment of forms here Guide (this implies that you use 11.1.2):

    http://docs.Oracle.com/CD/E38115_01/doc.111210/e24477/appa.htm
    .
    .

    Published by: Michael Ferrante (Oracle) on 21 February 2013 13:45

  • How to call a form of report? in 6i

    How to call a form of report? In Developer 6i to oracle. Please tell me tex.

    Try this

    declare
       AppID PLS_INTEGER;
     begin
         AppID := DDE.App_Begin('ifrun60 module=myform.fmx userid=scott/tiger@mydb maximize=no', DDE.App_Mode_Maximized);
    exception when others then
           srw.message(1,'Errror');
     end;
    

    Bangoura
    [My Oracle Blog | http://baigsorcl.blogspot.com/]

  • How to call a form with splashing around by clicking on a record with a time where

    Hi all

    How to call a form with splashing around by clicking on a record with a time where clause. I mean when I dip, click current record I want to call another form with the details of the
    record with onetime where clause. Can someone help me in this regard.

    Now, I'll call you a form with parameter with where Jadi but this should be avoided.


    Thanks in advance

    Arif

    Maybe this helps http://andreas.weiden.orcl.over-blog.de/article-28180655.html

  • How to call one form of other forms

    I have a situation where I build an invoice form where I need to contact the provider of a water drop down (providers are already exists in and are called using the menu drop-down). Now if the provider is not available, then I have a button now this button I want to popup a form where user can enter information provider first if it is not available in the system. My problem is how I like to call this form of vendor of this form of invoice and then, after adding I want to go back to my invoice form...

    Please help to the needy in this calling back and come to my form

    Thank you

    Naveed

    You can use CALL_FORM. Another option would be to OPEN_FORM

  • How to call the procedure Oracle in ODI

    Hello

    I use ODI 10 g.

    Before you run the interface in a package, I wanted to place my procedure.

    I created the procedure in d/b (target)

    CREATE OR REPLACE PROCEDURE TEST_MY_NEW_PROCE
    AS
    BEGIN
    REMOVE FROM EMPLOYEE_TABLE
    WHERE EMPLOPYEE_ID LIKE '% P ';
    COMMIT;
    END;
    /

    The procedure works well in the target database.

    Now, before the execution of my interface, I want to run this procedure in my package. So can some please help me how to call this oracle (creation in target schema) ODI procedure and run it.

    Thank you.

    Hi, GRK,.

    You can create an ODI procedure, add one step, choose Oracle as technology and your target schema.
    Then just call it through a pl/sql block:

    BEGIN
     TEST_MY_NEW_PROCE;
    END;
    

    In your package, then drag this ODI procedure.

    Kind regards
    JeromeFr

  • How to make the status of concurrent program error

    Hi Experts,

    I've written a PL/SQL package procedure, created an executable w / values for my 2 IN parameters and he attributed to a simultaneous program to the e-business suite.

    The specification of the procedure looks like this:
    PROCEDURE PROC1 (
    errbuf OUT NOCOPY VARCHAR2 ,
    retcode OUT NOCOPY NUMBER,
    p_contract_number IN VARCHAR2,
    p_end_date_char IN VARCHAR2 
    );
    Here my requirement is like this,

    How to make the status of the program contributing to the error even if the program successfully completes.
    Please let me know how?

    Thank you
    Suman V.

    Hello

    To give an error output, simply put the RETCODE contains 2
    To give a warning output set to 1
    for and OK output set to 0.

    If your procedure may be:

    procedure proc1 (errbuf OUT NOCOPY VARCHAR2,
    OUT NOCOPY RETCODE NUMBER,
    p_contract_number IN VARCHAR2,
    p_end_date_char in VARCHAR2
    ) IS
    BEGIN
    RETCODE: = 2;
    errbuf: = ' this CR WRONG because I wanted it ';
    END;

    This will give you an error.
    It may be good to your CR PLSQL like this:

    procedure proc1 (errbuf OUT NOCOPY VARCHAR2,
    OUT NOCOPY RETCODE NUMBER,
    p_contract_number IN VARCHAR2,
    p_end_date_char in VARCHAR2
    ) IS
    BEGIN
    RETCODE: = 0;
    return;

    exception
    while others then
    RETCODE: = 2;
    errbuf: = "an error has unhandeled."
    return;
    END;

    This way execptions generate an error.

  • How Update call (Parent form) when called form is closed.

    Hi Experts,

    I'm working on form of Oracle 10 g (OS: Windows7) of the last 2 years. I have two forms form a (main screen) and B (the only request form). I'm calling form A form B to change the cost in the form of master. I used CALL_FORM and everything works fine. Now, I want to refresh the form B as soon as the cost is modified in the form of master and closed. I searched the forum for the same, I tried a few suggestions using WHEN-WINDOW-ACTIVATED but this trigger is not firing when we close the main form and the focus returns your call. Please share your useful comments.

    Thank you

    Pramod S R

    When you use CALL_FORM to call a detail form, control returns to the statement after the CALL_FORM, so your logic would be simple:

    CALL_FORM('FORM_A');
    GO_BLOCK('YOUR_BLOCK_TO_REQUERY');
    EXECUTE_QUERY;
    
  • How can see calendar of the concurrent program to a user

    Hi all

    I need an application that can show me the concurrent programms that are scheduled with a user. I need also interval
    timing to execute programs of the programs for this user. I also want to see the names of calendar.

    Please I need urgent I will be very grateful for your kind support.


    Thank you

    Salvation;

    Please see:
    How to determine the regular of simultaneous requests [ID 170107.1]
    Re: At the request of simultaneous queries SQL query

    Respect of
    HELIOS

  • How to call button back html page adf

    Hello
    I have a HTML with javascript and css code in the project of the adf. Is it possible to call my html page back an adf button if so how?

    AF:goLink or af:goButton should do it.

  • How disbale at the request of concurrent programs

    Hello

    Our environment is:

    Apps:R12,
    OS: Linux

    You must disable some unwanted concurrent requests and some games request to disable. How to disable the concurrent requests to the application, we


    and we want to run Gather stats wise scheme, so I think better to use all of the request, how we define, please let me know


    Thank you

    Hello

    You must disable some unwanted concurrent requests and some games request to disable. How to disable the concurrent requests to the application, we

    You can disable several regular simultaneous requests since the backend using the following query:

    SQL> update fnd_concurrent_requests
    set phase_code = 'C', status_code = 'X'
    where status_code in ('Q','I')
    and requested_start_date > SYSDATE
    and hold_flag = 'N'; 
    

    Note: 170107.1 - how to determine at the request of concurrent requests
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=170107.1

    Note: 152209.1 - What are the meanings of the Codes in the STATUS_CODE and the PHASE_CODE FND_CONCURRENT_REQUESTS Table columns?
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=152209.1

    Kind regards
    Hussein

  • How to call auto form fill?

    I want Firefox to complete forms for me using the information we have used it before. In Safari, I asked this in "Preferences of Safari". How to do in Firefox?

    Filling of form of use in Firefox or an extension of filling out form if you want to save the user name.

  • How to call VI before a Setup program is running? for ex product registration key

    Hello!

    I'm developing an algorithm in which I call a VI to enter the serial number before my installation program running or during the installation of the software for safety. I am able to call the VI after installing my software.

    But I need a termination installation if some body not putting the right key.

    Is there a method?

    Kind regards

    Vivek

    LabVIEW currently does not support this feature in its Application Builder. One way around this problem is by building your LabVIEW Full Installer and then this installer from a third-party installation creator that supports recording of packaging product key.

    Also, are you aware of the Exchange of ideas of LabVIEW? It's a place where you can create an idea for a feature request that NEITHER will review the implementation in the future versions of LabVIEW. Ideas that receive a lot of congratulations will be more likely to be implemented. Here is a link to an idea that request to the desired function, so I suggest you give Kudos to this idea.

  • How to call a pl/sql UNIX program

    Hello

    Can someone tell me please for example to call a script shell unix from a PL/SQL program.

    dbms_scheduler is an option.

  • How to call procedure in Oracle itself

    Hi, I created a single package
    in this three procedures

    I also created a package body
    in the sense that three procedures

    now I want that call procedures
    in the same package or package diff
    How can I call procedures?

    Hi there using the

    package_name.procedure_name( parameters);
    

    If you want the procedure to be public, then ensure that the specifications of package u declares procedure (structure) and if you want the procedure that
    is access by only while the package say no procedure (structure) in the package specification, that the scope of the procedure is in this package only.

    concerning
    Hitesh

    Published by: Hitesh Nirkhey on February 22, 2011 12:56

Maybe you are looking for

  • My iMac makes a clicking sound in the back

    We have recently moved on a barge, and the veil of the power of the computer is done by a 1600 watt inverter. However whenever plug us the computer in you can here a small click in the back, on the top left that you're sitting at the computer. Once w

  • Download ag3000 driver does not

    Hello I need the compatible driver of CVI to my reach Agilent DSO 3202. I found the page of download of idnet (http://sine.ni.com/apps/utf8/niid_web_display.download_page?p_id_guid=0F1022C53EC721A3E0440003BA7CCD...), but the links do not work. I need

  • How to change the CMOS battery laptop toshiba satelite?

    Problem: need to remove password or reset. Could not get spent on start up

  • AC adapter error

    I have had my Sandisk Fuze since may, and so far, he has played exactly as I wanted it. This morning, I started a problem with the AC Charger. Basically, while being connected to the power adapter, now behaves as if it is plugged into my computer. It

  • I want to use my OWN photos for desktop PC

    I want to use my OWN photos for desktop... my old windows 7 tells u how... it (Thank GOD not windows 10), still 7... don't say a thing about how to... Help