Stop refresh query in WAD

Hi Gurus,
How to stop refresh the query in WAD ? Any advice I would appreciate it.
Thanks
Liza

Hi Liza,
I hope you should unschedule the process triggered in reporting Agent.
Hope it helps.
Regards,
Vicky

Similar Messages

  • Refresh Button on WAD

    Hi friends !
    How can i make to put a refresh button on wad ?
    Thanks.
    Fabrício

    Hi,
    you could use standard HTML to hide the button group.
    <div style="display:none">
    </div>
    Regards
    Steve

  • Stopping a Query taking more time to execute in runtime in Oracle Forms.

    Hi,
    In the present application one of the oracle form screen is taking long time to execute a query, user wanted an option to stop the query in between and browse the result (whatever has been fetched before stopping the query).
    We have tried three approach.
    1. set max fetch record in form and block level.
    2. set max fetch time in form and block level.
    in above two method does not provide the appropiate solution for us.
    3. the third approach we applied is setting the interaction mode to "NON BLOCKING" at the form level.
    It seems to be worked, while the query took long time to execute, oracle app server prompts an message to press Esc to cancel the query and it a displaying the results fetched upto that point.
    But the drawback is one pressing esc, its killing the session itself. which is causing the entire application to collapse.
    Please suggest if there is any alternative approach for this or how to overcome this perticular scenario.
    This kind of facility is alreday present in TOAD and PL/SQL developer where we can stop an executing query and browse the results fetched upto that point, is the similar facility is avialable in oracle forms ,please suggest.
    Thanks and Regards,
    Suraj
    Edited by: user10673131 on Jun 25, 2009 4:55 AM

    Hello Friend,
    You query will definitely take more time or even fail in PROD,becuase the way it is written. Here are my few observations, may be it can help :-
    1. XLA_AR_INV_AEL_SL_V XLA_AEL_SL_V : Never use a view inside such a long query , becuase View is just a window to the records.
    and when used to join other table records, then all those tables which are used to create a view also becomes part of joining conition.
    First of all please check if you really need this view. I guess you are using to check if the records have been created as Journal entries or not ?
    Please check the possbility of finding it through other AR tables.
    2. Remove _ALL tables instead use the corresponding org specific views (if you are in 11i ) or the sysnonymns ( in R12 )
    For example : For ra_cust_trx_types_all use ra_cust_trx_types.
    This will ensure that the query will execute only for those ORG_IDs which are assigned to that responsibility.
    3. Check with the DBA whether the GATHER SCHEMA STATS have been run atleast for ONT and RA tables.
    You can also check the same using
    SELECT LAST_ANALYZED FROM ALL_TABLES WHERE TABLE_NAME = 'ra_customer_trx_all'.
    If the tables are not analyzed , the CBO will not be able to tune your query.
    4. Try to remove the DISTINCT keyword. This is the MAJOR reason for this problem.
    5. If its a report , try to separate the logic in separate queries ( using a procedure ) and then populate the whole data in custom table, and use this custom table for generating the
    report.
    Thanks,
    Neeraj Shrivastava
    [email protected]
    Edited by: user9352949 on Oct 1, 2010 8:02 PM
    Edited by: user9352949 on Oct 1, 2010 8:03 PM

  • Why do I have 2 stop/refresh buttons?

    For some reason, I have 2 stop/refresh buttons. One on the end of (and attached to) the address bar and one immediately after it.
    I have tried
    * restoring the icons to the default set
    * removing the stop and go buttons via the customise option (this completely removed both)
    * moving them around

    Solved it.
    On 3.6 I used Stop Smart/Reload (add-on to combine the stop/reload buttons). This looked like it was disabled in 4.0, but when I removed it, I suddenly had one stop/refresh button (affixed to the address bar). Looks like something was getting confused.

  • Refresh Query Button in Dashboard

    Hello,
    We have created a dashboard where we have used a BEx Query.
    Refresh Query Button is added to the Dashboard.
    The issue is:
    We have two Query Prompt selectors in the Dashboard and these are Query variables used.
    In the Dashbaord preview, when I select Calendar Year in the prompt selector, all the data for that year is shown.
    Now, when I further select Calendar Month, the data is shown for that selected year and month.
    But, when I just want to select another year without any month selected, it does not happen as the month is already selected.
    In this scenario, if I click on Refresh button, all the selections in the prompt selectors should be removed and the dashboard should return to the First Display, but it is not doing so....
    Can anyone let me know how to clear the values selected in the prompt selectors or how the refresh query button works....
    Note: We have not used excel for any data display or calculations, everything is directly connected to BEx Queries.
    Thanks
    Lavanya

    Hi
    plz try RESET BUTTON
    the reset button does
    all the selections in the prompt selectors get  removed and the dashboard return to the First Display.
    Refresh query button
    it refer only the query not the dashboard to refresh dashboard we have to use reset button .

  • Is there a way to stop a query just after the cursor/plan is produced by CBO?

    Following suggestions of Kerry Osborne&amp;#8217;s Oracle Blog &amp;raquo; Blog Archive &amp;raquo; Explain Plan Lies &amp;#8211; Kerry Osborn…
    on the lies of "Explain plan" (and of "set autotrace on"  too) I'd like to try to stop a query/DML before actually it starts, just after the plan was produced and sql_id assigned.
    Is there any CLEAN way (other than trying CTRL-C) to do that?
    Thanks
    Paolo

    Hi
    PaolFili wrote:
    Thanks rp.
    I think my question is a little dofferent, but your reply give me an idea.(which has clear disadvantages , but can do the work).
    The problem is obtain in Lybrary Cache a plan,a SLQ_ID,PLAN_HASH for a query ( i.e. a 10days running query) that I cannot start-up.
    So my (suggested from your reply) idea is:
    1) to LOCK EXCLUSIVE (a table level) , **if it's possible** every table accessed in the query ( Yes, it can be really expansive in some production environment, but sometimes can be necessary ..)
      using :  LOCK TABLE table IN EXCLUSIVE MODE
    for each table accessed from query
    2) Startup the query that will be suspended form the lock on tables accessed + kill the sid,serial#,@Inst_id for the query.
    3) UNLOCK tables from EXCLUSIVE using "ROLLBACK"  in the session where LOCK TABLE.... was send.(to remake  tables to work for other queries)
    Any other ideas?
    Thanks
    Paolo
    you're planning on using locks to stop a query and you think in order to do so you need exclusive locks  on every table accessed in the query? And you are prepared to do that on a production system?
    And all of this is needed to troubleshoot a query that was running for 10 days -- i.e. a query that was available for all kinds of diagnostics during 10 days?
    Sorry, I think it wasn't a good idea for you to read that Osborne's blog post -- you should've started with more basic things. Way more basic.
    Best regards,
      Nikolay

  • Newbie to sql developer, how to stop a query

    Hi All,
    A very basic question and I've searched through this forum and Tom's site, i think i read it somewhere but i forgot where and what it was.
    How can I stop a query running in Sql Developer with what key combination?
    Ctrl-C D E Q .........., help!
    When I 'leave' for another application there a nice grey screen appearing so i can't use the buttons.
    Thanks in advance and my appologies if there is an answer already and I didn't find it.

    A query in the worksheet can be stopped using the Cancel button in the worksheet's toolbar (the 5th button). Hovering over it, you see the default hotkey assigned is "Ctrl-Q".
    If you get a gray screen means your SQL Developer locked up. There's currently no way of canceling what is locking him up. You could kill its session, but that's pretty radical and takes its share of time fining out what to kill and how.
    What another user on this forum (EricH) suggested, is running 2 SQL Developers side by side. When 1 locks up, he uses the other one. Although I'd like SQL Developer in the future to run it's queries in separate sessions by itself, thus preventing the whole program to lock up.
    K.

  • How to schedule refresh query in webi?

    Dear Experts,
    I'm facing problem on how to set schedule refresh query and disable refresh function for End User in WEBI. The problem is that each time of refreshing query it'll take long time and I just don't want end user to endure this painful waiting. I used universe connection in IDT.
    Please give me some suggestions or ideas to deal with this problem.
    Best regards,
    Chenna Yon

    Dear Gill Leo,
    I would like to thank for your help.
    My problem was fixed.
    Best regards,
    Chenna Yon

  • Comfortable in the usage and options available in the query designer/WAD.

    Dear  Friends
    can any body send me docs regarding Comfortable in the usage and options available in the query designer/WAD.
    Thanks & Regards
    Ramana

    Hi Friend,
    For WAD :
    [http://help.sap.com/saphelp_nw04/helpdata/en/a9/71563c3f65b318e10000000a114084/content.htm]
    [http://help.sap.com/saphelp_nw04/helpdata/en/9f/281a3c9c004866e10000000a11402f/content.htm]
    For Query Designer :
    [http://help.sap.com/saphelp_nw04s/helpdata/en/9d/76563cc368b60fe10000000a114084/frameset.htm]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/ba95531a-0e01-0010-5e9b-891fc040a66c]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/605f1751-a701-2a10-b791-9da5ba4f2a64]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e0a81de5-a701-2a10-76bd-d8ec848cd326]
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/505e9d7e-0601-0010-3fa7-b40010bbdec5]
    [http://help.sap.com/saphelp_nw2004s/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm]
    Scroll down to Business Intelligence-> Bi suite Business Explorer-> Query Designer
    Hope this helps.
    Regards
    Hemant Khemani

  • Refresh query when opening workbook is ticked automatically

    Prior to Upgrade, the bex properties settings for "Refresh query when
    opening workbook" was unticked(deactivated) and now after upgrade to BI
    7.0 the bex properties "Refresh query when opening the workbook" is
    ticked(activated).
    Again, This has happened only to a particular strand.
    Can anybody guide me on this. As a result of the above, all the work books are now refreshing automatically. This has affected hunderds of workbooks and we need to restore this back. Please help.

    Hi Dave,
    That is a local workbook setting.  The setting is stored in the workbook on the sheet named SAPBEXqueries (see earlier postings on how to make this worksheet visible).
    If there is only one query in the workbook, then look at at cell U4.  This cell will read TRUE if the setting is check (do refresh on open) and will read FALSE if the setting is not checked (do not refresh on open).
    One way to be sure that this setting is not altered would be to create a subroutine for the Workbook_BeforeClose event.  The user then can make any selection they like, but you will over-ride it when they close the workbook.
    Hope this helps.
    - Pete

  • How to stop specific query attached with other query in same process using With method

    Would it be possible to stop one query out of two queries attached to single process...because i see it is returning one IDisposable inteface...if i call dispose() method...two queries are stopped/killed...
    So how to stop specific query which is combined with other queries in a  same process at runtime i.e., attach or detach kind of thing?
    Thanks in advance
    Satish

    Yes, the overloading of the term "Process" can be confusing. In SI, depending on your edition of StreamInsight, a process can run on one or more threads from a pool of threads and are scheduled together. Don't think of a process necessarily as a single
    thread or multiple processes as a method of multi-threading.
    As for a limit on the number of queries, there isn't a hard limit that I'm aware of. However, there will be a practical limit that will vary based on the complexity of the query, the event rate and your hardware (# of cores). If you are using Standard Edition,
    this limit is much smaller as you only have a single scheduler thread. With Premium Edition, you have a scheduler thread for each core on the machine so you can get higher throughput and lower latency. But if you have, say, 4 cores on the machine (don't count
    hyperthreaded cores, just real cores), 100 queries and a target throughput of 100K events/second, you'll likely have some problems. At 1K events/sec, you'd likely be fine though. With 32 cores and Premium Edition, you'd probably be OK with 100K events/sec.
    So ... like I said, it depends.
    DevBiker (aka J Sawyer)
    Microsoft MVP - Sql Server (StreamInsight)
    If I answered your question, please mark as answer.
    If my post was helpful, please mark as helpful.

  • How to stop a query on a last record?

    I have a basic question. I have put a button on my form, which goes to the next_record (it goes on id-es). (on when button pressed action)
    But I have a problem, when it comes to the last_record, it goes to the nex record which is not there ( it does not exist). I would like to stop the query on my last record. How to do it?
    I had sometihng like it
    if :atletika.idRezultata is null
    last_record;
    else
    next_record;
    end if;
    but its not working.

    Hai,
    If the block's INSERT ALLOWED property is set to YES, then it will go to new record.
    Try setting this property to NO
    Regards,
    Manu.
    If this answer is helpful or correct, please mark it. Thanks.

  • Stop executing query once the result is more than n rows

    Hi,
    Is it possible to stop executing a query for a View Object once the result hits n rows?
    Any pointers are appreciated
    Thank you for your time.
    Edited by: user594688 on Sep 12, 2008 8:21 AM

    Rownum is indeed the attribute. If you really want to stop the query after the first n rows, that's pretty much the only way to do it, to my knowledge.
    If you're primarily worried about database load, but want to give the user the option to query more rows if and when they really need them, check out the following in the Fusion Dev Guide for Forms/4GL developers:
    37.1.5 Efficiently Scrolling Through Large Result Sets Using Range Paging
    (Note that this is not the same as simply using a range size, which ADF does by default--the range size simply limits the number of rows displayed ot the user, not the number queried. It's also not the same as setting the JDBC Fetch size, which limits the number of rows loaded into the cache, and therefore onto the app server, at one time, but again not the actual query result.)

  • Query Designer&WAD: Variable search help - Display Key/Text button

    Good day.
    Please, can you write me some solution of my problem.
    I have the character with hierarchy.
    In tab "Business Explorer" of character set display as "Text".
    When i run my query on SAP Portal and enter to search help of character, it is displays text of my ZCHARACTER(not key and text). But name of levels(0HIER_BODE) display key and text... (NODENAME and TEXT).
    When i run query in BEx Analyzer, in search help all correct. My ZCHARACTER and 0HIER_NODE displays only text.
    When i press tech button "Display Key/Text", a see marked "Text". I cannot find the same button when run search help in Query Designer, WAD(or Portal).
    How can i display only texts of 0HIER_NODE? But no [Key] Text.
    Thank you for answer.
    Regards
    Update. Can be usefull:
    View table RSDVDPA with key DPNAM='0HIER_NODE' consist field CHAPRSNT with value = '0' (Key and Text).
    When i change value of table
    UPDATE RSDDPA SET CHAPRSNT = '4'
      WHERE DPANM   EQ '0HIER_NODE'
        AND objvers EQ 'A'.
    All works correct!
    Change this value directly not correct. I think, that it is change of value of parent character. But when?

    I have created own 0HIER_NODE character - ZNODENAME.
    Only root node infoobject is 0HIER_NODE. All another - Z.
    Thanks! ^)

  • Imac screen stops refreshing content and has to be restarted

    Yesterday my iMac stopped refreshing the browser and other apps on the screen when changed or moved. I had to restart to get the screen back - unsure why - it works now for a few hours and then i have to go through this process?
    Any ideas?

    Yesterday my iMac stopped refreshing the browser and other apps on the screen when changed or moved. I had to restart to get the screen back - unsure why - it works now for a few hours and then i have to go through this process?
    Any ideas?

Maybe you are looking for

  • Upgrade 10.2.0.4 - 11.2.0.3 with ASM on linux

    I'm a bit confused by the oracle upgrade documentation - I need to upgrade to 11.2.0.3 from 10.2.0.4 on linux. I've got a 10.2 database running ASM. I've tested an 11.2 upgrade last year without running an ASM upgrade or grid intall (just to check so

  • Google Sync - Not syncing

    I  use google calendar and try to sync the calendar to my Blackberry Torch however It always fails.  It tells me to try again later - which I have done in various locations and times which has not worked. It also tells me to sign out and in again - w

  • Converting Bit Rate of iTunes Purchased songs

    I am in the process of converting all my music files to 112 bit to allow for mores space on my iPod. However, the songs I have gotten of iTunes through the music store are protected and it won't allow me to convert them . My method of converting the

  • VA03 updates VL02N automatically

    Hi, I  had a strange problem with sale order display.: VA03 updates VL02N automatically. I am displaying sale order using va03 transaction , then will go into  the order and then coming out from the transaction . Then automatically the delivery relat

  • Slicing and exporting to Dreamweaver question

    I use Fireworks and then slice up my comp and export as nested tables to Dreamweaver. What I would like to do is export it with the image pieces as the background of the table cells with a transparent gif overlay, to help prevent image theft. I know