Apex 4.1.1 Difference in Saving Private Interactive reports

Hi,
our customers found a difference in saving reports (interactive report) and i am not sure if it is a bug or a feature.
Environment
Redhat Linux 5.8 (64bit)
Oracle 11.2.0.3.0 64bit
Apex 4.1.1.00.23
Description:
- If i change a saved report (move columns or change filter etc.) i go to the action menu choose 'save report' and my saved report are changed permant and in the session. Thats ok and are to be expected.
- If i change a saved report and click on the link_ of the saved report (on top of the Interacive report, the dialog box seems to be the same), only the session version of the report gets changed!
I have checked this several times with the view APEX_APPLICATION_PAGE_IR_RPT.
Is this a bug?
regards,
Wolfgang

Hi Wolfgang,
The behavior you are seeing is not a bug, but rather designed behavior. The saved report link in the report settings is rename report link. If you hover over the link, Rename Report bubble displays. You can change the report attributes such as name, public and description. To save the report settings (filter, highlight, sort, control break, etc.), you need to click Actions > Save Report to save.
Regards,
Christina

Similar Messages

  • Saving private interactive report overwrites the primary report

    Hi,
    Having this issue in Apex 4.1.1 and 4.2 (haven't tried it in versions prior to 4.1.1 yet).
    So I got my standard IR, and trying to create a private report with control breaks, aggregations.
    Once I save it as a private report, It applies the same on my primary report.
    It's no big issue as I can flip back to Primary report and delete the control breaks, aggregations but is some kind of bug? Ideally it shouldn't modify my primary report unless I try to save it as "Default Report Setting".
    Cheers.

    Hi,
    Try switching back to your Primary Report in the list of reports then choose Reset in the actions menu. This should then reset it back to your original report.
    Thanks
    Paul

  • Saving user Interactive Reports in Production, when migrating a new version

    Hi All,
    Interactive Reports allow individual users from creating their own custom reports.
    If I were to migrate a modification to the Application, will these overwrite the user's Reports?
    If it does, is there any way to save the user reports in Production, while we migrate an updated version of the application?
    Thanks.
    Kevin

    Hi,
    This is a very commonly brought up issue. If you keep the same application ID from development to production and don't export the interactive reports from development then they will not be overwritten.
    The original metadata will be used. There is an excellent blog post from Joel Kallman of Oracle on this topic which gives much more detail: http://joelkallman.blogspot.co.uk/2010/07/where-did-my-saved-interactive-reports.html
    I used the methods discussed in the post when I needed to solve this problem.
    Thanks
    Paul

  • APEX 5: Problem displaying breadcrum (Create) button on interactive report

    Hello There
    I am trying to build a small app in APEX 5. I am taking the default 'Sample Database Application' (SDA) as an example for design.
    In SDA the interactive report of Customer a breadcrumb 'Create which is displayed on the top right corner. I am trying to replicate the same in my interactive report, but in vain.
    I have attached the printscreen for your reference. Could you please guide and advise me on how to get the same functionality of breadcrumb create button,etc same as in displayed in SDA into my custom app in APEX 5?
    Thanks a lot for helping me out
    Regards
    Don

    hi ,
    i had used like this .. it is working...
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
                            R_SELFIELD TYPE SLIS_SELFIELD.
      clear : v_flag.
      CASE R_UCOMM.
        WHEN 'DATA'.
    LOOP AT IT_TEMP.
         if it_temp-checkbox =  'X'.
              v_flag = 'X'.
              v_pernr1 = IT_TEMP-PERNR.
    *--Get compensation data and populate final internal table
              refresh it_fin.
              CALL FUNCTION 'Z_HR_COMP_STATEMENT'
                EXPORTING
                  PERNR = v_pernr1
                  BEGDA = s_date-low
                  ENDDA = s_date-high
                TABLES
                  FINAL = it_fin.
              if not it_fin[] is initial.
                delete adjacent duplicates from  it_fin comparing pernr.
                read table it_fin index 1.
                move-corresponding it_fin to it_final.
                append it_final.
                clear it_final.
              endif.
            endif.
         enddo.
    ENDLOOP.
          if not v_flag is initial.
    *------ display final data
            PERFORM final_display.
          else.
            message s000 with 'Select atleast one pernr'.
          endif.
      endcase.
    ENDFORM.                    "USER_COMMAND
    regards,
    venkat.

  • Export Private Interactive Report

    Hi All,
    While exporting app,  i missed the priavte user saved reports .
    Is there any way to export these private saved reports alone rather than doing complete app export?
    Suggest me .
    Cheers,
    San

    I used the below command for exporting
    APEXExport -db -user -password -applicationid
    Will this export all my saved reports etc...?
    Kindly help me out
    Cheers,
    San

  • User Saved Interactive Reports like in the old days?

    Hello!
    Is there a way to display user saved (private) interactive reports in 4.0.2 like they were displayed in 3.2.1 (tabs instead of the Reports Select List)?
    BR Paul

    Hi,
    I don't know, if it officially possible, but do not think.
    But this is possible with some adjustments in your template/code.
    Here can you see my little example with saved interactive reports shown in a different SQL region.
    http://apex.oracle.com/pls/otn/f?p=2071:201
    Based on the query you can create the tabs and "fill" the tabs with the content.
    Leonid

  • Upgrade To 4.2 Saved Interactive Reports

    We are currently upgrading our environments to Apex 4.2 from 3.2.
    Some of our applications have saved interactive reports.
    Is there anything special I need to do, so we don't lose these ?
    Gus

    Hi Gus C,
    At the time of Export please check
    Under Export Preferences
    Select Yes in Export Private Interactive Reports
    see below for info
    Export Supporting Object Definitions =     Yes
    Export Public Interactive Reports      = Yes
    Export Private Interactive Reports =              Yes
    Export Interactive Report Subscriptions =     No
    Export Developer Comments      = Yes
    Export Translations      = No
    This will export your Saved Interactive Reports.
    Hope this will helps ,
    Regards,
    Jitendra

  • Saved interactive reports

    Joel has a nice writeup about how saved public interactive report settings are handled when applications are moved around.
    Some questions...
    Since the IDs of all of the application meta data have changed, all of your users' customized reports in the previous version of the application are forever left orphaned until they're cleaned up by an internal APEX batch process
    1. Which batch process is this referring to? One of the jobs in dba_scheduler_jobs setup during the install process? Which one exactly? Is there any documentation on all the jobs installed and what each one does?
    2. Is there a way to run these jobs manually as a one-off/adhoc activity without waiting for their scheduled run? I tried logging in as SYSTEM, setting the security_group_id and running apex_040000.wwv_flow_maint.daily_maintenance and apex_040000.wwv_flow_cache.purge_sessions but that didn't seem to do anything that I could tell. Do they have to be run as SYSDBA?
    Upon import of a new version of the application, all meta data associated with application 645 is first deleted except the Customized Interactive Reports. In essence, these are left "dangling" until the new application 645 is installed.3. I found that when an application is deleted using the Builder Delete Application wizard, even the saved interactive reports are deleted. I am not sure I see why this is so. An application could be deleted in error and restored from source control but the user saved IR settings are gone for ever! May I suggest that the wizard be changed to not delete the saved reports?
    Thanks

    Bump

  • Interactive report with apex 3.2 oracle 11g

    Hello all,
    We are using oracle apex 3.2 oracle 11g .
    i am using interactive reports using apex where the query is a outer join. In the interactive rport i am using collections frame work. apex_collection.create_collection_from_query_b
    I am getting the following error ..
    ORA-04030 OUT OF PROCESS MEMORY WHEN TRYING TO ALLOCATE 16328 BYTES
    Pls let me know .
    thanks/kumar

    Are you saying the you are creating a collection using the create_collection_from_query_b API and then using the select c001,c002,.. from apex_collections in the Query of the IR?
    Is the creation of the collection failing (process) or the collection is getting created and you are getting the error when region tries to render the report?
    Regards

  • Is there a difference between saving a word doc with images as a pdf or printing to pdf?

    Is there a difference between saving a word doc with images as a pdf or printing to pdf. Images are sometimes missing when the document is  saved as a pdf or they are visible to the document owner but seem to disappear when viewed after submission to grants.gov. and proposal Central.
    Using Acrobat 9.5.5 and Office 2010 and Office 2011 Mac

    Is there a difference between saving a word doc with images as a pdf or printing to pdf. Images are sometimes missing when the document is  saved as a pdf or they are visible to the document owner but seem to disappear when viewed after submission to grants.gov. and proposal Central.
    Using Acrobat 9.5.5 and Office 2010 and Office 2011 Mac

  • Saved Interactive Reports after APEX Upgrade

    Hi,
    When you do an APEX Upgrade are saved interactive reports kept?
    Martin

    I have been experiencing lost saved "as Named Report" Interactive reports, whenever I migrate the application from test to prod.
    To clarify how we operate.
    We have a test APEX environment that is separate to production. The Test app has a different App_id but uses the same schema name. In test the application Id is 1xxx (eg 1201) and in test 2xxx (2201). I export Test 1201 and then import into Prod changing the App_id to overwrite 2201. I always lose the saved reports. I just tried an experiment of creating the saved report in Test and seeing if it migrates to prod, but of course it does not.
    How should I operate the two different Test and Prod environment to be "best practice" and not lose "as Named Report" Interactive report saved by the end-user?
    thanks Peter

  • How much MB or GB does Saving Private Ryan have ?

    I have an Ipad1
    I have Total stoarge 5.0 GB I have Available 4.8 GB but the movie won't download on to my video's so please help me.I see the saving private ryan photo on the video's but when I click it it doesn't work.
    I am glad if you reply to this question.

    The HD version is 7.19GB and the SD version is 2.59GB. You have to leave about 10% or so of the available storage free, so you just don't have enough space to download either version.
    You have to delete some content or you will not be able to download it.

  • Colored Textures for FCE HD such as Saving private Ryan, Brother where art

    Wondering if anyone can tell me how to get a certain effect for a project.
    I would like to use different colors, Cool Blue, Slight tan/sepia - War Look, etc.
    I know Magic Bullet has software but Only for FCP...
    Can I create this on my own in FCE HD?
    I tried the tint but it just isn't getting it. I would like to maintain the talents skin tone as normal but have the backgrounds tinted...hope this makes sense.
    Thanks
    TIM

    Why not ask in the Final Cut EXPRESS forum? All we know here is FCP.
    And FYI, Saving Private Ryan, Oh Brother, Band of Brothers...the overall color was applied to everything, including the skin color. But you need a good plugin that makes it look right, because the TINT option just doesn't quite do it.
    Hmmm...try the Nattress Film Effects...www.nattress.com. There is a demo. See if it will work with FCE.
    There are presets in there like the Sepia looks...a bunch just like MB.
    Shane

  • What is the difference between saving to "Documents" and "Macintosh HD" and when should you use each one?*

    What is the difference between saving to "Documents" and "Macintosh HD" and when should you use each one?

    When you save to the folder with the little house icon, the file is placed at
    /Users/your_user_name/
    You would really have to go out of my way to save at:
    (the shortcut for the Boot Drive, regardless of its name).
    I am not sure how you decided that Time Machine is not saving your files. The default is for Time Machine to do incremental Backups of everything on all attached drives, except for certain temporary information in Cache files. If you have four Users, Time Machine will back them all up.
    Looking at the raw Time Machine backups will tell you very little, because it does lots of its work with Hard Links, and because it does incremental backups, so only files that changed since the last Backup are saved at thet cycle. The way to determine whether Time Machine is saving things is to display the window you care about in the Finder, then invoke the "Star wars"/ "Back, back, back in time" Interface.

  • Is there a difference between saving on your HD and saving on a DVD disc ?

    I understand that when I save a photo or page on my HD I only copy the link and when the photo or page is removed I won't be able to see it.
    Also when I click on a page with a photo that was on my HD, it will show no image just text, if I'm not connected to the internet. But once I'm connected it will show it.
    So saving a page with photos on your HD actually doesn't mean a thing; your page is not saved ! meaning you can't see it whenever you want, even years from now. If they remove the page, you won't see anything (just text and sometimes not even that).
    So, once I save/copy the picture on a DVD disc is it permanent ? will I be able to see it even if they remove the photo from the Web ?
    Maybe I'm naive but once it is on a DVD disc I should see what is on the DVD disc, just like I watch today a VHS tape with "The Odd Couple" or "Taxi" although these shows are not on the air, the stations doesn't even exist anymore but it's all irrelevant because I COPYED the show, it is physically on my tape and therefore I can see it anytime I want. Isn't it the same with a disc ?
    In other words is there a difference between saving something on your HD and saving it on a DVD disc ?
    --------

    it depends what you want to achieve and what configuration you have on your DSL modem/router.
    Resetting TC and run connection wizard from the Airport utility.
    Post the problems.

Maybe you are looking for

  • How can I deauthorize a computer that can no longer connect to the internet or is no longer working ?

    How can I deauthorize Itunes on a computer that can no longer connect to the internet or is no longer working ?

  • BSEG-ZUONR can't change by BTE 1120

    Hi, gurus,         I want to change the field BSEG-ZUONR with the DN number,  I use BTE 1120  to implement it, but it doesn't work. I refer https://www.sdn.sap.com/irj/sdn/nw-development?rid=/library/uuid/207835fb-0a01-0010-34b4-fef1240ba9b7  and fol

  • Cannot upgrade to itunes 10

    when i try to download itunes 10 it looks like it will load, but nothing happens. When i called support they told me to uninstall 9.2, but my system says "The windows installer could not be accessed. This can occur if you are running windows in safe

  • One time service's service order

    Dear All, One time service order's service is giving error msg that " enter all mandatory fields and asking for service code" Actually we have configured that in 1 time service's service order , SO wont ask for service code and it will work without m

  • Hello there! Pages is slow on my iPhone 4S

    Hello there! My Pages is slow on my iPhone 4S. Would anybody know how it can work faster, like the former Pages vrsion used to work on my iPhone 4S?