How to know the stage where a running report is? - in Reports 3.0

Hi!
Thanks for paying attention.
I have a problem with running the reports. When I call a report from the forms using the built-in, RUN_PRODUCT, the report is running. The problem is, some times, it may take few min and some times more than 10 min and some times, it stops responding. So, how do I know at what stage the report is in.
For ex, if the report is run in Reports Designer, it shows a screen with client and server activity. Can I get the same effect by using the RUN_PRODUCT built-in.
Please help me or suggest me with some solution
Thank you
regards
RHR PRASAD

Hello rhr_pras
this is quotation form Report 3.0 manual:
Description PRINTJOB specifies whether the Print Job dialog box should be displayed before running a report.
Syntax
[PRINTJOB]YES
Values
YES or NO
Default
YES
Usage Notes
n When a report is run as a spawned process (i.e., one executable, such as R30RUN, is called from within another executable, such as R30DES), the Print Job dialog box will not appear, regardless of PRINTJOB.
n When DESTYPE=MAIL, the Print Job dialog box will not appear, regardless of PRINTJOB.
Also look for other parameters in paramlist for Run_Product (maybe BATCH) and maybe report mode (SYNCHR/ASYNCHR)
Hope this helps

Similar Messages

  • How to know the point where one menu popUp is showed ?

    hi,
    I need know the point where one popUp menu is showed, but I have problems to do it....
    I can install actionListener for method actionPerformed of class AbstractAction but the event I get does not able to say the point...
    In the documentation, I read it is possible install a listener for the mouse and select the popUpMenu with the condition
    "if (e.isPopupTrigger())"
    but it is not confortable to do it and in that case it is not easy too to manage the choice for the item selected...
    Some advice please ?
    I write down the code I use...
    thank you to have one answer..
    regards tonyMrsangelo
    import java.awt.AWTEvent;
    import java.awt.event.*;
    import javax.swing.*;
    enum OpzPopMenu
    {NuovoAppuntamento, CancellaAppuntamento, SpostaAppuntamento};
    public class MenuPopUpTestOne {
        public static void main(String[] args) {
            MenuFrameXmenuTestOne frame = new MenuFrameXmenuTestOne();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
    A frame with a sample menu bar.
    class MenuFrameXmenuTestOne extends JFrame {
        JPopupMenu popupMenu;
        public static final int DEFAULT_WIDTH = 300;
        public static final int DEFAULT_HEIGHT = 200;
        public MenuFrameXmenuTestOne() {  // costruttore
            setTitle("MenuTest");
            setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
            popupMenu = new JPopupMenu();
            Action nuovo = new PopupMunuAction("nuovo");
            Action sposta = new PopupMunuAction("sposta");
            Action cancella = new PopupMunuAction("cancella");
            JPanel jp = new JPanel();
            add(jp);
            // item1
            JMenuItem item1 = new JMenuItem(OpzPopMenu.NuovoAppuntamento.toString());
            item1.addActionListener(nuovo);
            popupMenu.add(item1);
            // item2
            JMenuItem item2 = new JMenuItem(OpzPopMenu.SpostaAppuntamento.toString());
            item2.addActionListener(sposta);
            popupMenu.add(item2);
            //item3
            JMenuItem item3 = new JMenuItem(OpzPopMenu.CancellaAppuntamento.toString());
            item3.addActionListener(cancella);
            popupMenu.add(item3);
            jp.setComponentPopupMenu(popupMenu);
            enableEvents(AWTEvent.MOUSE_EVENT_MASK);
        // aggiungere il popupMenu FINE   -----------------
        } // costruttore
    * Serve per gestire il menu popUp
    class PopupMunuAction extends AbstractAction {
    //    String itemOne = "nuovo";
    //    String itemTwo = "cancella";
    //    String itemTree = "sposta";
        public PopupMunuAction(String nome) {
            super(nome);
        public void actionPerformed(ActionEvent e) {
            String command = e.getActionCommand();
            if (command.compareTo(OpzPopMenu.NuovoAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "NUOVO  one");
            if (command.compareTo(OpzPopMenu.SpostaAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "SPOSTA  one");
            if (command.compareTo(OpzPopMenu.CancellaAppuntamento.toString()) == 0) {
                JOptionPane.showMessageDialog(null, "CANCELLA  one");
    } // inner class PopupAction

    tonyMrsangelo wrote:
    I need know the point where one popUp menu is showed, but I have problems to do it....Do you mean where the JPanel was clicked, or where the pop up appears on the screen.
    If you mean where the panel was clicked, then it's as simple as adding this to your program:
            jp.addMouseListener(new MouseAdapter()
                @Override
                public void mousePressed(MouseEvent e)
                    if (e.getButton() == MouseEvent.BUTTON3) // if right clicked
                        // do whatever in here with the e.getX() and e.getY() results
                        System.out.println("[" + e.getX() + ", " + e.getY() + "]");                   
            });

  • How to know the dir where my jar program is stored

    I write a swing editor text files.
    I make the jar of my program: Editor.jar
    Then with jsmooth (open source java wrapper) i make the exe: Editor.exe.
    The user can put the exe anywhere in a folder and use it, example:
    User have a text file on desktop and want to open it:
    User make a double click on file.txt --> Microsoft Windows Xp open my program and load the file.
    All work correctly but there is one problem.
    My program Editor.exe when is close make a Editor.properties file. I would like this file to be created in the same dir where Editor.exe is stored.
    I don't know how to do this thing. I write this code:
    public static void save(Properties propertiesFile) {     URL jarURL = (PropertiesFile.class.getClassLoader().getResource("."));          FileOutputStream out;     System.out.println("dir \n" + jarURL.getFile());          File f = new File(jarURL.getFile()+"Editor.settings");     try {          out = new FileOutputStream(f);                    propertiesFile.store(out, "Program settings");          out.close();     } catch (IOException ioe) {          ioe.printStackTrace();     }}
    This code is wrong because jarURL.getFile() is the directory where file.txt is stored but i want the dir where Editor.exe is stored.
    I try with this line of code:
    URL location = getClass().getProtectionDomain().getCodeSource().getLocation();
    i get this dir:
    /C:/Documents%20and%20Settings/Andrew/Settings%20local/Temp/temp10
    .jar
    This is a correct dir, because the program is stored ind dir
    c:\program files\editor\Editor.exe
    Anybody can help me?
    THX

    try below...
    public java.net.URL getResource(String strName)throws java.net.MalformedURLException
                String baseURL = getClass().getResource("/resources").getFile(); // ("/resources" ):- is a file /dir stored in in jar
                try{
                        baseURL = java.net.URLDecoder.decode(baseURL,"UTF-8");
                }catch(Exception e){}
                if(baseURL.startsWith("file:"))
                        baseURL = baseURL.substring(baseURL.indexOf(":")+1);
                java.io.File fBase = new java.io.File(baseURL);                    // Original URL Ref. To Jar Archive
                java.io.File jarFile = fBase.getParentFile();                    // Jar File Reference
                java.io.File rootDir = jarFile.getParentFile();                    // Root Directory which Contains Jar File
                java.io.File fileApp = new java.io.File(rootDir,strName);               // Requested File/Directory     
                if(fileApp.exists())
                    return fileApp.toURL();
                else
                    return null;
        }Timir

  • How to know the complete root of my application

    Hi all i want if someone could help me how to know the root where my application is installed or is running, for example if i have two computers with two partitions each, and in one computer i put my application in the root c:\App1 and in the other computer i put the same application i the d:\AppEx\App1 i want to know the complete root because depending on it i will copy a file which is essential for my application, i wonder if someone could help me with that thanks a lot

    Hi all i want if someone could help me how to know
    the root where my application is installed or is
    running, for example if i have two computers with two
    partitions each, and in one computer i put my
    application in the root c:\App1 and in the other
    computer i put the same application i the
    d:\AppEx\App1 i want to know the complete root
    because depending on it i will copy a file which is
    essential for my application, i wonder if someone
    could help me with that thanks a lotYou almost certainly do NOT need to know this, if you design your app correctly.

  • How to know the run time of a program..?

    Hi Gurus,
    How to know the exact run time of a program....?
    Suppose i've a program....I've changed the code to improve the performance.
    Now i want to compare run time of older and new one...How to do this...?
    Pls help me ....
    Thanks and Regards,
    Nagarjuna

    Hi,
    go thru the below mentioned code............
    data:   start TYPE i,
              end TYPE i,
              dif TYPE i.
    GET RUN TIME FIELD start.
    SELECT SINGLE bukrs belnr gjahr blart budat
    FROM bkpf
    INTO (cc, doc, fy, doc_ty, pst_dt)
    WHERE bukrs = p_bukrs
    AND belnr = p_belnr
    AND gjahr = p_gjahr.
    GET RUN TIME FIELD end.
    dif = end - start.
    WRITE: /001 'Time for select',
    067 ':', dif, 'microseconds'.
    Reward all helpful answers.
    Thanks

  • QUESTIONS: I have an iphone 3gs.just updating to ios5. am at the stage where I chose to restore iphone via itunes. sync seems stuck at step 7 of 7: syncing artwork. Is this necessary and if not how do I get around it?

    QUESTIONS: I have an iphone 3gs.just updating to ios5. am at the stage where I chose to restore iphone via itunes. sync seems stuck at step 7 of 7: syncing artwork. Is this necessary and if not how do I get around it?

    When I use find file http://www.macupdate.com/app/mac/30073/find-file (which does tend to find files that "Finder" can't), it's not coming up with any other itunes library files that have been modified in the past week, which I know it would have been - unfortunately, I don't have a very recent backup of the hard drive.  It would be a few months old so it wouldn't have the complete library on it....any ideas?  I'm wondering if restarting the computer might help but have been afraid to do so in case it would make it harder to recover anything...I was looking at this thread https://discussions.apple.com/thread/4211589?start=0&tstart=0 in the hopes that it might have a helpful suggestion but it's definitely a different scenario.

  • How to know the timings of the run time of thr report

    Hi,
    Can you please tell me how to know the run time of the query , i mean how much time it took for the query to dispaly the results .
    Also we have these queries in the workbook. How to refresh the work book . is it enough if i refresh the query.
    Thanks
    Sruthi

    Hi
    How can we check in RSRT tcode?
    And how can we do i RSRTRACE?
    Can  I know the procedure.

  • How to  identify the instance where the service is running through sqlplus

    Hello,
    Suppose, this is a 2 node rac and where the failover is on and load balance is off.
    I just want to know, that when during failover the service will points out to other instance.
    1) Want to know, when the service gets failover after connecting to database [i.e., sqlplus]
    2) Want to know, the instance where my service is running presently after connecting to the database. [i.e., sqlplus]
    We are using ORACLE CLUSTERWARE 11G R1 and database 11g R1.
    And also, I want to take the awr snapshot report where my servie is running at that point of time. Is there any way to find it out. Unnecessarily i don't want to generate the report for other instances as well.
    Thanks in advance,
    Thanks,
    Edited by: user13095767 on 26-Feb-2012 22:40
    Edited by: user13095767 on Feb 27, 2012 8:50 PM

    user13095767 wrote:
    Hello,
    Suppose, this is a 2 node rac and where the failover is on and load balance is off.
    I just want to know, that when during failover the service will points out to other instance.
    1) Want to know, when the service gets failover after connecting to database [i.e., sqlplus]
    2) Want to know, the instance where my service is running presently after connecting to the database. [i.e., sqlplus]
    We are using ORACLE CLUSTERWARE 11G R1 and database 11g R1.
    And also, I want to take the awr snapshot report where my servie is running at that point of time. Is there any way to find it out. Unnecessarily i don't want to generate the report for other instances as well.
    Thanks in advance,
    Thanks,
    Edited by: user13095767 on 26-Feb-2012 22:40
    please do not type the subject in upper case. please edit it.
    refer the links:-http://www.ardentperf.com/pub/schneider-services.pdf
    http://oracleinstance.blogspot.in/2010/08/transparent-application-failover-taf.html
    for understanding the concept, http://docs.oracle.com/cd/B28359_01/rac.111/b28252/configwlm.htm
    regards,

  • How to Hide the Parameter field at run time....

    Hi,
    I have a parameter field which behaves differently depending on the User logged in.
    It has the LOV coming from following SQL.
    SELECT customer_name FROM Cust_mast;
    If the user = 'INTERNAL' then the Where clause will be
    WHERE cust_id in('DELL', 'SBC', 'BANK')
    Else there will be no WHERE clause or the parameter field
    should be hidden in the parameter form.
    So my questions are:
    1) How to hide the Parameter field during Run time?
    OR OR OR
    2) How to change the LOV select statement during Run time?
    Thanks.
    Ram.

    Hi Ram,
    Is there any way to play with the sql query SELECT using DECODE ?I'm not sure of this part, maybe someone else can suggest a way.
    However, what you want can be done in 2 other ways:
    1. Build 2 reports. Both reports will just be duplicates of each other, only difference being that the 'LoV where clause' will be different. Now you can fire the appropriate report in many ways. For example, if the customer is alreay logged inside your custom application, and therefore you already know whether the user is internal of external, you can design your button or link which launches the report to contain logic such that one of the 2 reports is fired depending on who the user is.
    1. Use a JSP parameter form, not a paper parameter form In this case, just build an HTML parameter form in the web source of your report. Use Java logic to populate the LoV drop-down list. When you have to launch the final report, just launch the paper-layout of the report. For example (you will have to modify this):
    <form action="http://machine:port/reports/rwservlet?report=ParamForm.jsp+..." name="First" method="post">
    <select name="selected_customer" onChange="First.submit()" >
    <option value="">Choose a Customer Name
    <rw:foreach id="G_cust_id" src="G_cust_id">
         <rw:getValue id="myCustId" src="CUSTOMER_ID"/>
    <rw:getValue id="myCustName" src="CUSTOMER_NAME"/>
    <option value="<%=myCustId%>"><%=myCustName%>
    </rw:foreach>
    </select>
    </form>
    In the code above, you will have to make sure that your report's data model defines 2 CUSTOMER_ID's (like CUSTOMER_ID_INT and CUSTOMER_ID_EXT). These 2 will be internal and external Cust ID's. Use Java logic to show one of them.
    Navneet.

  • How to know the items cost from the production order.

    Dear friends,
    When We close a production order, if we go to the summary tab we can see the total cost of the real component and cost of the real item.   My question is how to know the cost of every component used for the real product? I run the stock Audit  report, and there I see a field named Calcprice, in what table where can I find this field? to get the cost individual for each component in the moment i close the PO.
    Thanks a lot.
    Daniel

    Thanks a lot to everybody. 
    You are right Thanga,
    That is the data I need, but how can I get it via query because I dont find the field to know the cost in the exactly moment when is created the receipt of productiion.  I was trying to locate in tables IGN1 -- IGN12 but I dont get the cost field.
    Do you have any idea how can I make a report?
    Best Regards,
    Daniel

  • How to know the dynamic values for this :AND category_id_query IN (1, :3, )

    Hi Team,
    R12 Instance :
    Oracle Installed Base Agent User Responsibility --> Item Instances -->
    Item Instance: Item Instances > View : Item Instance : xxxxx> Contracts : Item Instance : xxxxx> Service Contract: xxxxx>
    In the above page there are two table regions.
    Notes.
    -------------------------------------Table Region---------------------------
    Attachments
    -------------------------------------Table Region---------------------------
    --the attachments are shown using the query from the fnd_lobs and fnd_docs etc...
    I want to know what are the document types are displayed in this page ?
    --We developed a custom program to attach the attachments to the  services contracts and the above seeded OAF page displays those ..as needed.
    But after recent changes..the Attachments--> table region is not showing the attachments.
    I have verified the query..and could not find any clue in that..
    but i need some help if you guys can provide..
    SELECT *
    FROM
    *(SELECT d.DOCUMENT_ID,*
    d.DATATYPE_ID,
    d.DATATYPE_NAME,
    d.DESCRIPTION,
    DECODE(d.FILE_NAME, NULL,
    *(SELECT message_text*
    FROM fnd_new_messages
    WHERE message_name = 'FND_UNDEFINED'
    AND application_id = 0
    AND language_code  = userenv('LANG')
    *), d.FILE_NAME)FileName,*
    d.MEDIA_ID,
    d.CATEGORY_ID,
    d.DM_NODE,
    d.DM_FOLDER_PATH,
    d.DM_TYPE,
    d.DM_DOCUMENT_ID,
    d.DM_VERSION_NUMBER,
    ad.ATTACHED_DOCUMENT_ID,
    ad.ENTITY_NAME,
    ad.PK1_VALUE,
    ad.PK2_VALUE,
    ad.PK3_VALUE,
    ad.PK4_VALUE,
    ad.PK5_VALUE,
    d.usage_type,
    d.security_type,
    d.security_id,
    ad.category_id attachment_catgeory_id,
    ad.status,
    d.storage_type,
    d.image_type,
    d.START_DATE_ACTIVE,
    d.END_DATE_ACTIVE,
    d.REQUEST_ID,
    d.PROGRAM_APPLICATION_ID,
    d.PROGRAM_ID,
    d.category_description,
    d.publish_flag,
    DECODE(ad.category_id, NULL, d.category_id, ad.category_id) category_id_query,
    d.URL,
    d.TITLE
    FROM FND_DOCUMENTS_VL d,
    FND_ATTACHED_DOCUMENTS ad
    WHERE d.DOCUMENT_ID = ad.DOCUMENT_ID
    *) QRSLT*
    WHERE ((entity_name    ='OKC_K_HEADERS_V'-- :1
    AND pk1_value          IN ( 600144,599046) --:2
    AND category_id_query IN (1, :3, :4, :5, :6, :7) )
    AND datatype_id       IN (6,2,1,5)
    AND (SECURITY_TYPE     =4
    OR PUBLISH_FLAG        ='Y')))
    --='000180931' -- 'ADP118'
    The above seeded query is the one which is used for table region to retrieve the data..
    how to know the dynamic values for this : AND category_id_query IN (1, :3, :4, :5, :6, :7) )
    --Sridhar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Patricia,
    is it working for restricted key figure and calculated key figure ??
    Note Number Fisc Period Opening Days
    1 1 2
    2 1 3
    3 1 0
    because I have other restriction, so I create two restricted key figure..
    RK1  with restriction :  Total Number of Note,
    RK2  with restriction :  Total Opening Days ,
    then I Created a calculated key figure, average opening days in a period
    CK1 = RK2 / RK1..
    in this case, I am not sure if it will work or not..
    for example, during RK2 calclation, it might be this   2+3 = 5, the line with 0 will be ignored..
    during RK1 calcualtion, it might be 1 + 1 + 1 = 3. ---> Not sure in this case, the line with opening days 0 will be calculated or not..
    could you please confirm..

  • I need to know the location where iTunes downloads software to, it is filling up my hard drive.

    I need to know the location where iTunes downloads software to, it is filling up my hard drive.
    I am trying to put my iPhone4 into recovery and then will restore it. iTunes starts extracting the software.  But the iPhone reboots and by the time the software has completed extraction, the iPhone can no longer be seen by iTunes. 
    We have a very small hard drive on our laptop.  Each time iTunes does an extraction, it uses up more space on the C: drive. 
    Nothing frees up that used drive space. Not closing iTunes or rebooting the computer. Nothing. 
    How do we release / delete these files?

    See Re: when itunes downloads ipsw where does it go.
    tt2

  • How to know the type of a variable??

    how to know the type of a variable??
    For example, give you a variable s, how to determine if it is
    a primitive type, of an object?? If this is primitive type,
    any ways to determine if it is integer, boolean, double, ...??

    I am currently working on a project where this happens. I have a main type of object that all of my other types extend. While working on the objects in a method, any type of other object could be coming through. To test I try to cast the object and catch class cast exceptions. This only works because I know the different type that will be coming through....
    public void testObject(classX object){
      try{
        classY object = (classY)object;
      }catch(ClassCastException CC){
        try{
          classZ object = (classZ)object;
        }catch(ClassCastException CCC){
          /// the object fails to be cast as the types I tested for.
    }

  • I have been trying to download the newest itunes to my windows 7 computer wit the last 2 wks now... im at the stage where iv tried everting from uninstalling itunes to installing it again... can someone please help be4 i throw the computer out the window!

    i have been trying to download the newest itunes to my windows 7 computer wit the last 2 wks now... im at the stage where iv tried everting from uninstalling itunes to installing it again... can someone please help before i throw the computer out the window!

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • How to know the status of concurrent program from back-end in oracle apps

    Hi,
    Can you please explain me step by step how to know the status of the concurrent program from back end in oracle apps.
    Thanks,
    Raj

    When a record is being updated by a form, if you create a Pre-Update trigger on the block, the trigger will run for each record being updated.
    Same thing happens with a Pre-Insert and Pre-Delete trigger.

Maybe you are looking for

  • All my CC apps have disappeared

    Hi all, Ok this is very strange but yesterday, all the CC apps I installed just vanished! I can no longer see them in the start>programs. (I know this is only shortcuts) When I look in the programs folder C:\Program Files\Adobe, I can see the CC fold

  • ORA-00604: error at recursive sql level 1ORA-01882: timezone region not fou

    hello eveyone i have installed SQL developer and try to create a connexion but it shows the following error: " : ORA-00604: error at recursive sql level 1ORA-01882: timezone region not found" (i choosed TNS as connexion type , default as rol ) plz he

  • Credit limit check and Payment terms

    HI, Is it possibile to enforce new credit limit check when the payment term is changed? Let's say that customer has "Immediate payment", and after few days wants to change payment term for "90 days payment term". In such case system should check new

  • Photoshop CS5 not printing correctly

    I am trying to print a jpeg from Photoshop with no luck. I get a thumbnail sized image every time. One thing to note, if I use larger paper the thumbnail scales up. HP Compaq 8100 Elite running Win 7 Pro x64 SP1 Adobe Photoshop CS5 patched to 12.0.4

  • How to insert a standard selection screen on moduled program?

    Hi All, Selection screen can be easily done in classic report by just simply invoking the event "SELECTION-SCREEN" SELECTION-SCREEN BEGIN OF ... SELECT-OPTIONS ... PARAMETERS ... In the case of moduled program, there will be a PBO and PAI, I have a r