Download in CSV format with Clear Cache After Regions

Hi,
I am trying to download Apex report in CSV format, but, as I have Clear cache After Region data gets cleared and nothing the saved in CSV file. If I remove Clear Cache option I am able to download report in CSV format, but, as cache entries are not cleard it is fetching all records related to previous entry which is not intended. This is all happening in single session. If I logout and login again, then cache is cleard. But in single session when I move from one report to another cache entries are not cleared.
Appreciate your help.

Hi,
I am trying to download Apex report in CSV format, but, as I have Clear cache After Region data gets cleared and nothing the saved in CSV file. If I remove Clear Cache option I am able to download report in CSV format, but, as cache entries are not cleard it is fetching all records related to previous entry which is not intended. This is all happening in single session. If I logout and login again, then cache is cleard. But in single session when I move from one report to another cache entries are not cleared.
Appreciate your help.

Similar Messages

  • Run page with cleared cache after edit in application builder

    When I am building a form and run into an error while submitting the page I get the following situation. After making some changes to the page I try to run it again but the values from the previous try are still in the cache. So I immediately run into the same error I had earlier. The only way around this, that I currently know of, is to select another page in the application builder and start this. Then I can navigate to the page I'm working on using the menu. I usually start pages from the menu with a cleared cache.
    Is there an easier way to do this?
    There are currently two "run" buttons in the application builder. There is the button that says "run" and there is the "traffic light". Maybe one of those can be used the run the page with a cleared cahche and the other one with the cache still intact.
    Edited by: Rene W. on Dec 23, 2010 6:26 AM

    Hi,
    One of the parameters in the URL is for clearing cache:
    f?p=App:Page:Session:Request:Debug:ClearCache:itemNames:itemValues:PrinterFriendly
    so, you could just enter the page number into the 6th parameter to clear the cache for that page
    Andy

  • How to avoid Multiple download of Mime Objects with cleared Cache

    Hii!!
    When using IC we client and when we are searching for the CSR multiple Mime Objects are getting Downloaded ..Can anybody tell me exactly in which class or function module these mime objects are getting downloaded or where  the URL of the same is getting generated?

    I think I've figure out what is happening here. Previous post didn't descript the situation quite clear, it is acturally like this:
    // previous code:
    var container:Sprite = new Sprite();
    var bitmapCantainer:Sprite = new Sprite();
    bitmapCantainer.addChild(bitmapCache);
    bitmapCantainer.mouseEnabled = false;
    bitmapCantainer.mouseChildren = false;
    container.addChild(bitmapCantainer);
    container.hitArea = someSpriteMadeUp;
    // it turns out there'is a parent container of the "container" sprite I created
    // and I disable that
    parentContainer.mouseEnabled = false;
    So now I don't need to avoid any interaction of transparent part of bitmap with mouse evnets, JUST set mouseEnabled property to false of the parent display object which is in the same depth of display list of which those display objects you don't what be "covered" are in.

  • How to clear cache after mime object is updated?

    Hi Expert,
        I create a mime object (such as "test1.jpg") in mime repository.
       In web dynpro, I add two UI elements: a formatted text edit and a File-Upload "Insert Image",
       after I click the File-Upload "Insert Image",
       I select an image file (such as test2.jpg) from local directory, and upload the content of the image file to mime object(test1.jpg) in mime repository.
       at the same time, I insert a line into formatted-text-edit as "<img src="/SAP/Public/.../test1.jpg" />".
       I double click the mime object (test1.jpg), its content has changed as test2.jpg,
       however, formatted-text-edit still displays the content of test1.jpg.
       When I mannually clear the cache of IE, and refresh the web, Formatted-text-edit display the content of test2.jpg.
      It's obvious that the cache of http server isn't cleared.
      How to clear cache after mime object is updated?
      Any suggestions are welcomed.
      Thank you.
    Best Regards,
    Derek
    P.S. the source code:
    lv_url = '/SAP/BC/WebDynpro/SAP/ZENHANCE_IA/test1.jpg'.
      lo_mine_rep = cl_mime_repository_api=>get_api( ).
      lo_mine_rep->put(
        EXPORTING
          i_url     = lv_url
          i_content = lv_file_string ).
    Edited by: Derek Zhao on Sep 20, 2010 6:21 AM

    Hi Derek,
    Have you tried the method INVALIDATE_ICM_CACHE of class CL_MIME_REPOSITORY_API ?
    Regards,
    Anand

  • Issue with downloading in CSV Format

    Hi SDN,
    i used the FM's SAP_CONVERT_TO_CSV_FORMAT - to convert 2 CSV Format  and
                            GUI_DOWNLOAD  - to download the data 2 presentation server.
    i'm able 2 open the file in CSV format,but the data is displayed in single column only.
    how 2 display in different columns ?
    for example the ITAB contains empno, empname and designation.
    I want it 2 display as :
       EMPNO      EMPNAME     DESIGNATION
         1                xxxxx              Developer
         2                 yyyy               TL
    with tab delimiter.
    now the values are displaying as:
    EMPNO;EMPNAME;DESIGNATION
    1;xxxx;Developer
    2;yyyy;TL
    pls suggest.
    awaiting ur early response.
    Regards,
    Suman.

    Hi Max,
    the issue is when opening the CSV file.
    all the contents are coming in a single column. for ex.,
                    Col 1                                                 Col2          Col3
    Row1      Heading1,Heading2,Heading3
    Row2      a1,b1,c1
    Row3      a2,b2,c2
    Row4      a3,b3,c3
    I'm not sure whether this format is correct  ?
    what I'm expecting is  like the one below, with a tab delimiter.because after runing the ALV report when I export 2 Excel in CSV format it is displaying like this.
                        Col1                Col2               Col3
    Row1          Heading1      Heading2          Heading3
    Row2             a1                    b1                c1
    Row3             a2                     b2               c2
    Row4             a3                     b3                c3
    Regards,
    Suman.

  • Download into CSV format from internal table

    Hi,
      I would like to download my internal table records in CSV format without any manual formating.
    It is easy to concatenate internal table fields into a string with ',' seperator. But I would like to do in a better way that this becasue of more number of fields in my internal table.
    Could you someone help me in this, I have searched in this form for help I found few function modules which did not help me.
    SAP_CONVERT_TO_CSV_FORMAT / LIST_DOWNLOAD .
    Prabhu Rajesh.

    Sravan,
    type-pools: truxs.
    DATA : BEGIN OF itab OCCURS 0,
    name1(10),
    name2(10),
    END OF itab.
    DATA : itab1 TYPE truxs_t_text_data.
    DO 10 TIMES.
      itab-name1 = 'Prabhu'.
      itab-name2 = 'Rajesh'.
      APPEND itab.
      CLEAR : itab.
    ENDDO.
    LOOP AT itab.
      WRITE:/ itab-name1, itab-name2.
    ENDLOOP.
    CALL FUNCTION 'SAP_CONVERT_TO_TEX_FORMAT'
      EXPORTING
        i_field_seperator          = ';'
      I_LINE_HEADER              =
      i_filename                 =
      I_APPL_KEEP                = ' '
      TABLES
        i_tab_sap_data             = itab
    CHANGING
       I_TAB_CONVERTED_DATA       = itab1
    EXCEPTIONS
      CONVERSION_FAILED          = 1
      OTHERS                     = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Download to CSV format

    Hi guys,
    What is the best way to download an internal table data to CSV format?
    Thanks!

    Hi,
       Follow the below logic.
    TYPES:
    BEGIN OF TY_FILE,
    DATA TYPE STRING,
    END OF TY_FILE.
    DATA: IT_FILE TYPE STANDARD TABLE OF TY_FILE,
    WA_FILE TYPE TY_FILE.
    LOOP AT ITAB INTO WA.
    CONCATENATE WA-F1 WA-F2 ... WA-FN SEPARATED BY ',' INTO WA_FILE.
    APPEND WA_FILE TO IT_FILE.
    CLEAR WA_FILE.
    ENDLOOP.
    "Use IT_FILE to download using GUI_DOWNLOAD.
    Thanks,
    Asit Purbey.

  • Link to download in csv format and display in pdf

    Hi
    i have oracle 10.1.2 portal and as part of application i have a page which results various columns in tabular format, i need to provide the user a link on the same page which which will allow the user to download the result page content in csv format. how can we do it?
    i have another a HTML page which gets generated dynamically, i need to show the same content in pdf format. guide me how can i do it?
    help is requested because this is an urgency..

    Hi,
    I did it once - however, I am not sure if Portal 10.1.2 has support for MIME types other than text/plain. I implemented a JSP solution and this is what I did :
    1. I have a Servlet that checks the choice of output i.e, html or Excel.
    2. The Servlet first renders the page in HTML, with a link that invites the user to "Export" the report to Excel. The Servlet forwards the rendering to a JSP ( which is a Portlet ).
    3. If the link is click, the same Servlet is invoked - thsi time, I made the Servlet to render the output as Excel using the usual code: response.setContentType("application/vnd.ms-excel");
    4. The same output is rendered in Excel.
    The Servlet was not a Portlet - I had to do this workaround as Oracle Portal 9.0.4 wouldn't support the content-type application/vnd.ms-excel
    Thus, the HTML rendering was done via a JSP, which is a Portlet. THe PDF / Excel redering was done by a Servlet, which is not a Portlet.
    I would be interested to know if 10.1.2 ( & the later verions ) support the Excel / PDF MIME Types.
    Regards,
    Sandeep

  • Function to download in  csv format

    Hi Every Body,
    am using asp.net as a front end and oracle 11g as back end am wondering if there is a way to download data in an csv format and merge them into a table.
    i.e i need to provide a button for this functionality.
    Regards
    Nii Moi

    Nii Moi wrote:
    Hi Every Body,
    am using asp.net as a front end and oracle 11g as back end am wondering if there is a way to download data in an csv format and merge them into a table.How is this related to Application Express ? Please explain

  • Obiee 11g hierarchy columns download into csv format.

    When using hierarchical columns, Is there a way to download the results as the user see it on the view (be it table or pivot view) into a CSV format.
    Excel format works, but if the user drill down on the hierarchy column and then export in CSV format... the data gets exported to the level the report was originally set.
    Is there any way to change this behavior?
    One option we can recommend to users is to download in excel format and then convert to CSV....if needed.
    FYI, we just starting looking into 11g 11.1.1.5 version... planning to migrate from 10g to 11g...
    Thanks
    Sundar

    Nii Moi wrote:
    Hi Every Body,
    am using asp.net as a front end and oracle 11g as back end am wondering if there is a way to download data in an csv format and merge them into a table.How is this related to Application Express ? Please explain

  • Export Of Data In The .CSV Format With Column Headings On Top

    I'm trying to export data in the .csv format from a report (Crystal Reports XI Release 2).  When I export the data, the heading appears in the first few columns on the left hand side (i.e. columns "A" thru "G") for every row, rather as a column heading on top.  These header describe the data beneath it.  I tried various combinations of export options.  The file needs an extension .csv (or .xls) for the tool that uses the data.  Any suggestions how I can accomplish this ?

    Abhishek,
    I tried to apply your solution, but forgot that the Crystal Reports support desk updated my version of Crystal Reports XI to Release 2 for a previous problem.  My CDs are Crystal Reports XI Release 1.  Now I can't export at all until I figure out how to turn on the export option.  I do have access to older version (version unknown) that came with one of business system.  The options it has are "Character", "Tab", and "Delimeter" for "Separated Values (CSV)".  It does not have the option that you mentioned.  Is there a similar option with this older version ?  Lastly, How can I turn on the "Export" for "Crystal Reports XI Release 2" ?  Thanks ! ! !

  • Clear cache after submit.

    Hello all,
    I'm new to coldfusion, and want to know is there a sulution to clear the cache after submitting a cfml page, coz when refreshing the page (F5) it submits the form again..
    thank you

    Seems to be good solution to set form action to different page
    as i said, i'm new to coldfusion and still thinking C#
    anyway it does matter.
    thank you guys

  • Query download to CSV format

    I need help setting up a query to download the results to a CSV format file.   The query will be setup run in a batch job.  The file will be stored on the application server.

    FM GUI_DOWNLOAD downloads to the presentation server only, not the ap server. And it woks only in the foreground.
    Rob

  • Item Clear Cache After Submit Press

    hi,
    i have 5 item on a page Like
    P1_A,
    P1_B,
    P1_C,
    P1_D,
    P1_E .
    I want here when i press submit button then value of P1_A, P1_B, P1_C, P1_D, P1_E should be in insert into table and clear Cache last item P1_C, P1_D, P1_E
    and value of item P1_A,P1_B should not be clear Cache.
    How can i Clear Cache the selected item .
    Thanks
    Manoj Kaushik
    Clear Cashe Selected Item On Press Submit Button

    hi ,
    I have one more proble,
    I have implement e-mail option in my application,i have two report first one contain List of all document and a Link In last Column in that report when i click at that link then respective Document are Add in Second Report .
    But problem is when i click Attach LinkThen page is Refresh and All Fill Value In ITEMS are clear which are on page 4.
    How can i stop to clear these item value if i attch document.
    Workspace: SKILLS IMPROVE
    User: [email protected]
    Password : desomu
    Application -42370
    Page No 4
    Thanks

  • How to Clear Cache after Install / Uninstall ?

    I love Installing / Uninstalling in Windows Phone ( Lumia 800 - WP7.8)..
    its so easy... any other OS cant beat it.. But i want to know how to clear the Cache (if at all exists)?
    i think there should be some way to clear it??
    and what's the best antivirus or malware or spyware for WP7.8?
    Solved!
    Go to Solution.

    You dont need spyware or antivirus.
    TO CLEAR CACHE ON BROWSER?
    From the Home screen, tap Internet Explorer.
    From the lower right corner of your screen, locate and tap the icon consisting of three dots.
    Select settings.
    Tap delete history.
    Tap delete to confirm.
    Close and relaunch your browser.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

Maybe you are looking for

  • How to get the item name from a column in an interactive report?

    I created an interactive report. Then on the same page I added a tabular form region. What I want to implement is that, when I click a column link button on a specific row, the name of the row will be passed to the tabular region, so that the tabular

  • My wifi is not working since the last update to 8.2 on iphone 4s

    after update ios 8.2 in 3days my wifi is greyout and not working i have try the reset networking setting but still itz like the same plz help me to turn on wifi back i have wifi connetion in my office and home too but i cant access the wifi through m

  • Ive lost iphotots and iweb after hard drive failed help

    Hi my hard drive failed yesterday and I took it to the apple store who confirmed it had failed.  They advised I should purchase a new one, provided me the specs and fit it myself.  I've now clearly done that because I'm writing this However I've relo

  • Cancellation of Release of a purchase requisition

    Hi, Currently the system allow to cancel the Release of a purchase requisition eventhought the Purchase Order already created for it. I could not locate the any system message that actually control this. How to disallow the cancellation of Release of

  • What is the best method for multiple language interface?

    Hi, I need to adapt my CVI application to multiple languages.  But I have to be able to do this on the fly.  The Localizer is great for all the panel objects and this works great.  But I was wondering what the best method is for all the dialog box te