Cache Disabling for a particular report

Hi Gurus,
Disalbling cache for a particular report will be SET VARIABLE DISABLE_CACHE_HIT=1; that should be in analytics -> advanced tab -> prefix column.
Is there any another way for disabling the cache for a particular report.
Another Solution
Add a dummy column to your report with CURRENT_TIMESTAMP in the formula. Hide this column.
Now your report will never generate cache. (CAN ANY ONE EXPALIN THIS IN DETAIL).
Thanks,
kumar

You can go for CURRENT_TIMESTAMP or Now() these both return the timestamp of report execution (more or less). So there are more chances for not to hit the cache.
What makes you to go with other than the below? this also proven one with no doubt can go for it.
SET VARIABLE DISABLE_CACHE_HIT=1;
if helps pls mark

Similar Messages

  • How to disable cache for a particular Report in obiee 10g?

    HI
    My name is Rani .Learning obiee10g ifaced 1 interview in that they asked me like how u disable cache for a particular report?

    In the advanced tab of the report, under prefix you need to mention:
    SET VARIABLE DISABLE_CACHE_HIT=1;
    Refer below link
    http://tipsonobiee.blogspot.com/2009/06/step-by-step-to-bypass-all-caches.html
    Thanks

  • Default varient for a particular report

    hi guys,
    First of all  wish you all a prosperous, healthy and productive 2007.
    Can anybody help me to a set a varient as a default for a particular report.
    For example,
    I create a new varient ztest for a KSB1 report.
    Each time when go to the trascation KSB1 report I have to select my varient from path  KSB1  --> Go to (Menu bar) --> Varient ---> get --> ztest(my varient)
    Is there any possiblity to set this varient as default so that when i go to trasction ksb1 report the varient ztest select as default. I don't need to select the ztest varient.
    Regards,
    sp sahu

    hi,
    there r 2 options -
    1)Either go to Se93 and create a new tcode and give ur variant name there..
    2) u can create a small report program and submit the report (for tcode KSB1) with ur default variant like this demo code -
    constants:
    c_report like sy-repid value
    'RKAEP000',
    c_variant like VARID-VARIANT value 'YOUR_VARIANT'.
    submit (c_report) using selection-set c_variante.
    reward if helpfull
    amit

  • How to set custom widths for a particular report column?

    how could I set a custom width for a particular report column? Is there a way to do it using css?
    Thank you.

    Hi Leland,
    I have tested this here: [http://apex.oracle.com/pls/otn/f?p=267:18]
    All I have done is add the following into the report's Region Header:
    <style type="text/css">
    #apexir_EMPNO {width:200px}
    #apexir_ENAME {width:200px}
    #apexir_DEPTNO {width:200px}
    .apexir_WORKSHEET_DATA TR TD {height:100px;}
    </style>The headers have all be set to be left-aligned. Each column should be 200px wide (even though I'm setting the width on the headers, it will be applied to the entire column unless a cell's contents is wider, in which case the column is made wider). The final entry above adjusts the height of all TDs within the IR table.
    Andy

  • How to change the utilised join for a particular report

    Hi,
    I have a discoverer report which is very similar to a previously developed report. I copied the report and now I want to change the join that is utilised by the new one (Two different joins exist between the two folders being used). How can I do this?
    In the report items tab under selected items in edit work sheet I can see the different joins and the one it is currently being used is ticked, i can right mouse click on the joins but the options to add/remove from worksheet are disabled (Greyed out)
    Can anyone tell me how to do this?
    Thanks in advance
    Keith

    Short answer - I'd recreate the new report.
    Long answer - I'm not sure if 10g handles this differently, but I've seen many a Disco 4 report that somehow has a 'memory' that you just can't get rid of.
    For example, if you chose some items from one folder and some others from another folder due to a join, then you deleted all those 2nd folder items, and chose from a third - and you absolutely, positively (thx. fedex) know that there's nothing referring to the original 2nd. folder (ie: no conditions, calculations, functions, etc.), you may very well still see the original 2nd. folder being referred to in the SQL. Sounds strange but it does occur.
    So, again, if 4.x, then for sure I'd start from scratch for the new report. If 10.x, I'd probably still start from scratch as even if fixed, I've just seen it screw up my day too many times in the past to try to copy something that probably only takes 15 minutes of recreation work.
    Russ

  • How to make a node storage disabled for a particular cache?

    I have multiple caches that are distributed across the nodes in my application. Can I disable storage (localstorage=false) for a certain cache in a node.
    Intention is to make something like this:
    CacheA distributed between node1 and node2
    CacheB distributed between node1 and node3
    Thus none of the node would be a non storage node completely here. Hence I would be required to specify this in the coherence-config.xml. If the answer is following for node 2
    <distributed-scheme>
         <scheme-name>CacheB</_CacheEvent_scheme-name>
         <service-name>DistributedCache</service-name>
         *<local-storage>false</local-storage>*
         <backing-map-scheme>
         <local-scheme>
         <scheme-ref>backingSchemeB</scheme-ref>
         </local-scheme>
         </backing-map-scheme>
         <autostart>true</autostart>
         </distributed-scheme>
         <local-scheme>
         <scheme-name>backingSchemeB</scheme-name>
         </local-scheme>
    What should be the backing scheme, as my local storage is false for cacheB?

    Hi Mahesh,
    you can control the storage-enablement of distributed caches on a per-service basis.
    In your case, you have to put cache A and cache B into different services (serviceA and serviceB for the example) and run service A as storage-enabled on nodes 1 and 2, and service B as storage-enabled on nodes 1 and 3.
    For more information, look at my post from two years ago:
    Re: Partitioned cache - where to put what config files?
    Best regards,
    Robert

  • How to force an agg table for a particular report?

    Hi,
    We have a report which shows duplicate records from the same table. we assume that this is because the report is hitting the fact table instead the agg table.
    Is there any way to force the report to hit the Agg table and not the fact?
    We have tried :
    1. content level tab option
    2. Number of elements in the dimensional hierarchy

    Hi,
    For eg, Consider three tables
    F_Sales_y (Summary at Year level)
    F_Sales_m (Summary at Month level)
    F_Sales (fact day level)
    Do the joins at physical layer, In BMM use the other two tables as source inside F_Sales.
    Set the cotent level for the summary facts F_Sales_y (year), F_Sales_m (month).
    now based on the dimension level the corresponding the bi server will choose the corresponding fact.
    Also check this post,
    http://obiee101.blogspot.com/2008/11/obiee-making-it-aggregate-aware.html
    Thanks,
    Vino

  • How to determine the time duration of each job for a particular report

    Hi guys,
    I am facing a very interesting problem which I want to share with all of you-hoping to get some input from you
    enlightened fellas :).
    I have vendor and vendor sub-range maintained in one custom table. For each vendor I have got article site combination maintained in another table. The thing is I have to execute this program in background. Now for each vendor I may have only 1 article or multiple articles. So if I schedule the job for 60 min. say then for 1 article the time alloted will be too big and for multiple articles the time alloted may prove to be too small. Another thing from a functional point of view is a vendor which has 1 article today may have more articles added to his name tomorrow (if the customer likes his product the company may buy more from him). So the point is we have to dynamically adjust the time alloted for each job.
    I could not find any utility in ABAP which can do this.
    Can any of you please help me?
    Thanks a lot !
    Hasso.
    Edited by: Hasso14 on Apr 28, 2011 3:06 PM

    Exaactly-only I want to find the best time needed to finish for an article or multiple articles i.e I do not know how many articles will be available for each vendor beforehand before doing a select on the 2 tables. But once I know the number (maybe 1 or more than 1) I want to allot the best time for that article/lot of articles(maybe JOB_OPEN  technique ?).Also the number of articles may vary over time so the algorithm should take care of that too.-quite a tricky prob :)-I would request the others to see this reply which I think will clarify their doubts.
    Edited by: Hasso14 on Apr 28, 2011 9:03 PM

  • How to fill the application cache by scheduling a Bex report

    Hi Experts,
    I have a Query which take about 4 minutes to execute for the first time and when the same query is executed for the 2nd time it takes about just few seconds.
    I tried using the broadcasting setting in portal to fill the OLAP cache for this query and executed it manually before executing the query in the morning, The Fill OLAP cache has run successfully but apparently the query executing for the first time takes the same time as it was taking earlier. There is not difference even after introducing the fill OLAP cache setting for this query.
    On further analysis I see from the from the "Statistic Data for Query Runtime" that DBTRANS & DBSEL entries are available when the report was executed for the first time, this means the cache is getting filled only when the report is executed for the first time but not through the fill OLAP cache from Portal.
    Can any one please let me know is there any other option available to execute the query before any user executes it, so that the entire report is available in the cache and the user doesn't have any complaints of performance. The report is executed only in Analyzer we do not have any web report.
    Please provide your valuable input to over come this performance issue.
    Thanks

    Hi sam
    You can broadcaste the report... and fill the cache...
    Before setting up the broadcasting settings -- you need to enable the cache property for that particular query or info provider.
    you can enable cache using the RSRCACHE or RSRT transaction ...
    Check the below LInk
    [Performance Optimization of Long Running Queries Using OLAP Cache|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f048c590-31a4-2c10-8599-bd01fabb93d4]
    Regards
    KP

  • 500 Internal Server error for a single report in a dashboard

    Hi All,
    I had an issue with a report in a dashboard i.e.., In a dashboard a report is prepared by using the opaque view. When I ran the report in a dashboard it ran for about 15 to 20 mins and the report is excuted with the data. Now I tried to downlaod the data for that particular report into the excel sheet by using the option Download to Excel. At this stage after 5 mins I am facing the Internal serevr error. But strange behaviour is that it downloads sometimes and sometimes it does'nt. One more important thing is that I tested the query in backend and it took around 6 to 7 mins to fetch the data. The total no of rows for the query is only 166. So can anyone please give me some suggestions or we can have a discussion as this report is behaving strangely. One more thing I forgot to mention is that they used session variables as parameters in the query for two fields which they used in the opaque view to build that report.
    Thanks,
    Sandy

    Hi Arun,
    where can i check with that whether in DEV/PROD system...?
    I don't have access to PROD system and SU01 system too.
    Can you please guide me with the steps to get it done.
    Please check the below log which is getting displayed for the User, when he is logging in.
    Error summary
    While processing the current request, an exception occurred which could not be handled by the application or the framework.
    If the information contained on this page doesnu2019t help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this
    Root Cause
    The initial exception that caused the request to fail, was:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: ComponentUsage(FPMConfigurationUsage): Active component must exist when getting  interface controller
    at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.ensureActiveComponent(ComponentUsage.java:773)
    at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceControllerInternal(ComponentUSage.java:348)
    at com.sap.tc.webdynpro.progmodel.components.ComponentUsage.getInterfaceController(ComponentUsage.java:335)
    at com.sap.pcuigp.xssfpm.wd.wdp.InternalFPMComponent.wdGetFPMConfigurationUsageInterface(InternalFPMComponent.java.245)
    at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.changeToExceptionPerspective(FPMComponent.java:862)
    u2026 59 more
    Please provide me any help.
    Thanks in advance.
    Regards,
    Ponneswari A.

  • Extracting the Logical sql query for the specified report  in OBIEE 11g

    Hi ,
    I want to extract the logical SQL Query for the Particular report in OBIEE 11.1.1.5.
    Any pointers related to this will be very helpful.
    Thanks,
    Sonali

    for a try please add Logical sql view to ur report it will dispaly the Logical sql for that Report..
    Hope it will helps you.

  • How to find the transaction code for the particular program or include

    Dear All,
    Please help me on this queary.
    1) How to find what is the transaction assigned for the particular Report
    2) How to find the particular include is used in which programs and also transaction codes
    I have one ZProgram that contains only includes no selection screen, I have to find where this program is used, in that one include is ther I would like to know in which program and in which transaction that is used,
    They have given ME9F, ME21N/22n, wheren this includle is calling.
    Please kinely help on this.
    Thanks and Regards,
    Muralikrishna

    HI
    1. you can find the transaction for your report by opening in se80. On the left side window it will show the transaction if there is any.
    2. to find in which programs particular inclue is called , just open include in se38 and press where used list icon. in the pop up window select programs.
    regards
    vijay
    reward points if helpful

  • Permission to view particular report only in SharePoint 2013

    Hi,
    How to setup the permissions in SharePoint 2013 for a particular report for a particular user?
    The report is of SSRS 2012 with SharePoint mode.
    We have many folders containing different reports. We are trying to provide access for a particular user to a particular report alone. But we are not able to do that. the following are the ways we tried,
    1. Providing READ access to the Report Folder (Unique Permissions)
    2. Providing READ access to the Report RDL (Unique Permissions)
    but nothing helped...
    If you have achieved providing access to a particular report in SharePoint 2013 please share us the solution -Thank you!
    --------------------------- Radhai Krish | Golden Age is no more far | --------------------------

    http://msdn.microsoft.com/en-us/library/ms156034.aspx
    Check if below helps
    To add a user or group to a system role
    Start Report Manager (SSRS Native Mode).
    Click Site Settings.
    Click Security.
    Click New Role Assignment.
    In Group or user name, enter a Windows domain user or group account in this format: <domain>\<account>. If you are using forms authentication or custom security, specify the user or group account in the format that is correct for
    your deployment.
    Select a system role, and then click OK.
    Roles are cumulative, so if you select both System Administrator and System User, a user or group will be able to perform the tasks in both roles.
    Repeat to create assignments for additional users or groups.
    To add a user or group to an item role
    Start Report Manager and locate the report item for which you want to add a user or group.
    Hover over the item, and click the drop-down arrow.
    In the drop-down menu, click Security.
    Click New Role Assignment.
    5. In Group or user name, enter a Windows domain user or group account in this format: <domain>\<account>. If you are using forms authentication or custom security, specify the user or group account in the format that is correct
    for your deployment.
    6. Select one or more role definitions that describe how the user or group should access the item, and then click
    OK.
     7. peat to create assignments for additional users or groups.

  • How to disable selection parameter for a particular radio button

    hi experts,
    How to disable selection parameter(bukrs) for a particular radio button 'radio1'.

    hi,
    Check This Code (copy paste and run it ).
    U have to use MODIF ID along with the parameter.
    *----------------Option
    *---Background
    *---Summary Report
    PARAMETERS       : p_backgd RADIOBUTTON GROUP rad1
                       USER-COMMAND radio DEFAULT 'X'.
    PARAMETERS       : p_sumrep RADIOBUTTON GROUP rad1 .
    *----------------File
    PARAMETERS       : p_sumfl TYPE char255 modif id ABC  .
    PARAMETERS       : p_detfl TYPE char255 modif id ABC.
    *---------------Activate & Deactivate Screen Fields--------------------*
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF p_sumrep = 'X'.
          IF screen-group1  = 'ABC'.
            screen-input  = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      ENDLOOP.
    <b>Please Reward Points & Mark Helpful Answers</b>
    To mark Helpful Answers ;click radio Button next to the post.
    RadioButtons
    <b>o</b> Helpful Answer
    <b>o</b> Very helpful Answer
    <b>o</b> Problem Solved.
    Click any of the above button next to the post; as per the anwers
    <b>To close the thread; Click Probelm solved Radio Button next to the post ,
    which u feel is best possible answers</b>

  • PO report for a particular department

    Hi
    We would like to run a report of all PO's of the technical department from 01-01-2007 till now and with their costs and the grand total.
    This report should list:
    -          PO number (only for PM PO's)
    -          Cost centre
    -          Item description
    -          Item amount
    -          Item Ir-l
    -          Vendor
    Is there Any standard report in SAP coming close to this.
    One standard report ME2K provide POs for a particular Cost center . but i want all the cost incurred on a department like material, labour , service, in short all PO by a deprtment ..
    Thanks and Regards..
    Akkshaya

    Hi Akkshaya,
    ME2K should be able to provide most of what you are needing from a PO perspective.  I would also suggest changing the scope of list to ALV (if you have that option) to list the output in a more user friendly format plus you are able to include more additional fields on the output. 
    The point I am not clear about is your explanation around showing all cost.  If that is the case you may want to go through the cost center reporting route.  I would suggest using KSB1.  On this report you have the ability to pull most of what you are needing including PO details.  The report is driven more from the CO side and shows breakdown at the GL level.  You may not get the vendor and invoice details since cost center usually is posted against at the time of GR and not IR (unless you have a variance).
    Hope this helps.

Maybe you are looking for