Bookmark problem BI report

Hello,
I created a Bookmark after making some changes to a report and saved it. If I open the bookmark again, it shows the original report. Changes are not reflected in the bookmark.
Whereas bookmark for the same report is working fine for my colleague.
What could be the problem ?
Please help !

Hi,
Check if the personalization is active for your user in the template. You can either attach the URL parameter &USE_PERSONALIZATION=false to the bookmark, or you call the context menu and search for 'personalize web application' -> 'delete personalization'.
Best regards,
Janine

Similar Messages

  • Wad bookmark problem in win 7

    Hi,
    we cant use the bookmark in web reports since we change to win 7 from xp, we tried in a xp pc and it works fine but no t in win 7
    Best regards
    Juan

    Hi Juan,
    Do you have IE8? If yes then this problem could be caused by the problem described in the SAP note 1451027,
    could you check the information in the note?
    Best Regards,
    Des

  • Problem refreshing reports with params in the Interactive viewer from ASP

    I have a problem getting reports to refresh by clicking the Interactive Viewer's refresh button and reusing the supplied parameters. I am seeing this exact same problem on both V9.2 and 11.5 unmanaged RAS servers.
    I am using the following  function code to set the reports parameters:
    Public Sub PassParameter(param_index, param_value, param_is_multi,param_range_kind)
        Dim param_old ' parameter field in the report
        Dim param_new ' parameter field that will replace old parameter
    Dim paramValue ' discrete parameter value
    Dim aValues
    Dim rValues
    Dim iLoop
    Set param_old = clientDoc.DataDefinition.ParameterFields.Item(param_index)
    Set param_new = objFactory.CreateObject("CrystalReports.ParameterField";)
    If param_range_kind = 1 then
    Set paramValue = objFactory.CreateObject("CrystalReports.ParameterFieldDiscreteValue";)
    paramValue.Value = param_value
    else
    Set paramValue = objFactory.CreateObject("CrystalReports.ParameterFieldRangeValue";)
         rValues = split(param_value, "|")
    paramValue.BeginValue = rValues(0)
    paramValue.EndValue = rValues(1)
    paramValue.LowerBoundType = 2
    paramValue.UpperBoundType = 2
    end if
    param_old.CopyTo param_new
    if param_is_multi = 0 then
    param_new.CurrentValues.Add paramValue
    else
         aValues = split(param_value, ",")
       For iLoop = LBound(aValues) to UBound(aValues)
    param_new.CurrentValues.Add Trim(aValues(iLoop))
        Next
    end if
    clientDoc.DataDefController.ParameterFieldController.Modify param_old, param_new
        ' Clean up
        Set paramValue = Nothing
        Set param_new = Nothing
    End Sub
    and then redirecting to another ASP page to invoke the viewer (the report "clientDoc" object is passed to the viewer asp page a s a session variable). The code of the viewer page is:
    <%
    Response.ExpiresAbsolute = Now() - 1
    Response.Charset=";UTF-8"
    Dim clientDoc
    Set clientDoc = session("clientDoc")
    Dim ObjFactory, RptAppSession
    Set ObjFactory = CreateObject("CrystalReports.ObjectFactory";)
    Dim viewer
    Set viewer = ObjFactory.CreateObject("CrystalReports.CrystalReportInteractiveViewer";)
    viewer.PageTitle = "Interactive Report - " & Request("rptnam")
    viewer.IsOwnForm = true
    viewer.IsOwnPage = true
    viewer.HasRefreshButton = true
    viewer.EnableParameterPrompt = false
    viewer.ReuseParameterValuesOnRefresh ; = true
    viewer.HasExportButton = false
    ' viewer.HasPrintButton = false
    viewer.ReportSource = clientDoc.ReportSource
    Dim BooleanSearchControl
    Set BooleanSearchControl = ObjFactory.CreateObject("CrystalReports.BooleanSearchControl";)
    BooleanSearchControl.ReportDocument = clientDoc
    viewer.BooleanSearchControl = BooleanSearchControl
    viewer.ProcessHttpRequest Request, Response, Session
    %>
    If I set viewer.EnableParameterPrompt = false then I get an erro upon clicking the viewer's refresh button (error is: Missing parameter values. webReporting.dll error '8004100e' ), but if I set viewer.EnableParameterPrompt = true, then I get the automatically generated prompts appear but they are all empty. Either way, RAS doesn't remember the supplied parameters. I know the parameters are being read by RAS as the report's contents prove this fact, but they are not remembered after refreshing. If the automatically generated prompts are filled in and submitted, subsequent refreshes work correctly.
    How do I get the report viewer to reuse the parameters that have been set programmatically after a refresh? BTW, changing my implementation to anything other than using ASP against an unmanaged RAS server is not an option at this time.
    Thanks in advance!
    Dave.

    Hi Dave,
    I don't have a "nice" set of code lines but below hard codes one parameter name and value:
                ISCRParameterField newParameterField = new ParameterFieldClass();
                newParameterField.ParameterType = crParameterFieldTypeEnum.crParameterFieldTypeReportParameter;
                newParameterField.Name = "YourParamName"; // you can make a collection here
                newParameterField.ReportName = "";
                newParameterField.Type = CrFieldValueTypeEnum.crFieldValueTypeStringField;
                newParameterField.AllowMultiValue = true;
                newParameterField.AllowCustomCurrentValues = true;
                Fields parameterFields = reportClientDocument.DataDefinition.ParameterFields;
                ISCRField existingParameterField;
                RowsetMetaData rowsetMetaData = new RowsetMetaDataClass();
                Fields fields = new FieldsClass();
                ArrayList defaultValues = new ArrayList();
                reportClientDocument.DataDefController.ParameterFieldController.SetCurrentValue("", @"YourParamName", @"YourParamValue");
    Thanks again
    Don

  • Mailing Problem in Reports Writer 3.0 (URGENT)

    Hello,
    I 'm facing mailing problem in Reports Writer 3.0.
    All Reports files (.rep) are stored on NT Server(in a particular
    dir) and I have full permission (on that dir).
    After running the report, when I try to send mail then it gives
    the following error
    REP-4203: Error occurred while sending a mail message.
    REP-4221: Cannot access attachment file.
    So pls. suggest me.
    Thanks
    PSR
    null

    This is the wrong forum for reports issues - particularly for such an old version :-) However, you'll have to write a user exit to do that kind of stuff. And no don't ask me how, it was all too long ago, but there should be a section on that in your manual.

  • Problem in reports 6i  while using delimiter option.

    Hi,
    I am facing problem in report writer while using delimiter option.
    Report summary
    ==============
    In my report I am having two queries in data model and two different repeating frame for each in layout.
    These quires are called based on the user parameter. That means if user parameter is 1 then query 1 is called and the report is kick off and same for query 2 when user parameter is 2).
    Problem Encountered
    =================
    Both these reports are running fine while using pdf option to generate report .
    While using delimiter option only one of the query is able to generate report (based on which ever is created first and rest will give 0 byte file).
    I have also trapped it while using messages and it is logically flowing fine.
    I think report writer does not support such scenario.
    please expedite on this.
    thankx
    peyush

    Hi,
    There are no such limitations with Reports. If I understand properly, you run the Report twice, in each run, you are trying to execute different query, and you generate two dilimited Reports output files? This should work fine. Try out the latest Reports 6i patch-10 for this. You can even approach Oracle Support with your testcase. FYI, with Reports 6i patch-11, a new feature "dlimited data" is introduced which will give delimited output with a data dump i.e it would not be dependent upon the Reports layout. You can probably try out this new feature also.
    Thanks,
    Rohit Hi Rohit,
    Thanks for the information.
    well I am generating single output file on each run .
    the problem is somewhat funny.
    I have build query2 in data model after query1.
    query 1 is giving me correct output both in .PDF and delimiter version.
    But query2 is giving me 0 byte file for delimiter version although in .PDF it is running fine.
    When I took out query2 to another module it is running fine for both.
    I hope this make sense.
    Moreover if u still not clear about the problem and thinks that u can help me out please send me ur mail id so that I can send you the RDF copy.
    Thanks
    Mohit...

  • RAXINV - Strange problem in Report Builder

    I'm having a very wierd problem in Report builder 6.0.8.27.0. I'm simply trying to add two additional columns to the AR Invoice report (RAXINV) so that they get included in the XML output. This report has a main query called Q_INVOICE which is basically a dummy query to set the column aliases and at the end of the query it does a UNION with the user parameter &common_query.
    So, what I have done is gone into the common_query parameter and added the two extra dummy columns before the FROM statement (I've tried adding at different places but always the same result). Once that is done I've then gone into the Q_INVOICE query and added the same two columns. When I hit the OK button to update the query is when my problems start.
    There is a group in the report called G_ORDER_BY that has the field ORDER_BY in it. After clicking ok to update the query the G_ORDER_BY now has a field called BILL_CUST_NAME1, but the XML tag is still saying ORDER_BY. This happens to many fields in the report (the names are changed/corrupted) and as such the report is now useless as it won't compile.
    I have no idea why this would happen and I've never seen anything like this before.
    Can anyone provide any help on this ? I've logged an SR on this too but wanted to try here also incase someone had already crossed this problem.

    Dave,
    Not sure if its relevant or not, but I just fixed this issue, you need to change your query in three places, common_query parameter, build_query program unit and the main query itself in report editor.
    Cheers,
    Zeeshan

  • Sign problem in Report

    Hi Folks,
    I  have a problem in reporting.
    We are getting a data from flat file and loaded in to ICELIM cube and later that will pull into Managerial Consolidation Cube.
    P99T is account member and its ACCTYPE is EXP and its a parent member.
    We created a one report based on ICELIM cube its showing negative values for the member P99T. Created another report based on Managerial Consolidation Cube, Here the same member showing Positive values. 
    Can any one please let me know what is the problem is?
    I need Positive values in Both reports.
    Regards,
    G. Saida Reddy

    Hi vadim,
    Thank you for you response,
    Recently I take over this project, Previously one guy is handled all those things.
    But if "Descendants of P99T is Applicant count=EXP(ACCTYPE), FT=EXP(ACCTYPE), Applicant Rate= EXP(ACCTYPE)" then P99T is meaningless - how can you aggregate count, FT and rate????
    Can you please let me know the what is the exact point your are saying from above.
    we have positive signs for base members of  ICELIM and Managerial Consolidation.
    Now it is not possible to change moving data from ICELIM to Managerial Consolidation.
    can you please let me now the issue for sign in the report?
    Regards,
    G. Saida Reddy

  • When will Firefox supply an addon to remedy the bookmark problem. I like firefox but non of the repairs work. I am a low tech user who depends on firefox .

    I need Firefox to provide an update to resolve the bookmark problem. I tried some of the tips to no avail. firefox is the expert. Please do what is necessary.

    I cannot make bookmarks and lost all I had. I tried the solutions here on the forum but that does not work.
    I get the message: the bookmark and history will not work because one of the files of Firefox is used by another application.
    Some safety sorfware can cause this problem.
    The solutions in the forum did not solve the problem.
    There is also a website where I cannot login. I get this message: The system could not log you in since you failed the human verification test.
    But I did the correct verification test.
    Can someone help me?

  • Looking for a Status for Bug 12586745 - CREATE BOOKMARK LINK IGNORES REPORT

    Back in May we had opened an SR with Oracle, and
    they assigned our SR to Bug 12586745 - CREATE BOOKMARK LINK IGNORES REPORT PROMPTS
    Where can I find more information on this BUG and possible solutions to it
    Please let me know where can I fidn this information
    Thank ou

    I don't understand what you want. Do you want a link that will download a Dashboard to Excel? Why do you want to replace the "Create Bookmark..." link? What's that got to do with your requirement?

  • Problem printing report

    I have a small problem printing reports which exist of 1 page.
    1st report is printed OK
    2nd one is bad
    3rd one is bad
    4rd one is bad
    5th is OK again... and so further.
    When I choose a different printer, all prints are OK. When I print from another PC on the same printer, all prints are OK.
    I assume some settings are disturbing the prints; can anyone suggest where I should take a look?

    are you using a dot matrix printer or a laser printer?

  • Problem running reports

    I finally configured and was able to start the reports server on my Solaris box. The listener is running. When I run a report, either by command line using rwrun60 or from a form using RUN_REPORT_PRODUCT, the report kicks off without error but will not finish. I have to kill the process, and no output results. I had no problems when running from NT, so I'd bet the problem is in the configuration not the report itself. Any ideas?

    I'm still working this problem.
    I have a printer configured, and have no problem generating report in character mode and send directly to printer.
    I did have to add localhost access to Xwindows with
    $ xhost +localhost
    Now I have valid display value.
    Unfortunately, still having the same problem. rwrun60 kicks off, but gets hung. I have no problems running forms on the this server. Any other ideas?

  • Soritng problem in report

    Hi all
    I have a problem in report runtime decision.
    I have created a report say report1....and on runtime i decide its runtime sorting order by passing a column value
    through my USER PARAMETER to the ORDER BY clause.
    But the problem is that the data model has its own BREAK ORDER as well for each column.
    How can i change that property at runtime.
    Kindl guide me if any one knows the solution.
    Thanx,
    Qaiser Qayum Malik.

    Hi,
    Pl see this thread:
    Order By within repeating frame
    By the way, break order decides the sorting order ONLY if the report has break-groups. If your report has a single group, the order by clause should work.
    navneet.

  • Creating bookmark in BI report problem

    Hi!
    When having generated a certain report in a BI report running in a SAP portal i can right click and choose "Broadcast and Export" -> bookmark.
    But when I open the bookmark then I get the initial BI Report as it looked before I was putting any credentials inside it and getting the report generated.
    Is this problem a backend problem or is this a portal problem?
    BR
    Jesper

    Hi Jesper,
    The bookmark should work fine. If it is saved properly. If it opens the query without any changes, then it might be a problem with bookmark functionality in portal.
    Another way to cross check is to click on the "bookmark id" which is generated on the top right corner of the page as soon as u save a bookmark. It should navigate u to the saved bookmark query in another window.
    Regards,
    Swetha

  • Nonsensical top level PDF bookmark in Crystal report exported from InfoView

    Thank you for any help or suggestions!
    I am using Crystal Reports 2008, the CMC repository, and InfoView.  I am producing PDF reports, many with bookmarks based on the group tree. 
    I have found that when I run my report off my workstation, all is fine, but when I run the same report out of InfoView, the top level bookmark is a string of nonsensical numbers and characters.
    Is there a way for me to ensure that this top level bookmark is something readable, perhaps the name of the report? 
    Thank you for your help!

    Hi,
    I ran into this problem just recently myself.  The report would export just fine out of the designer but when I would try to export it from CMC it would give me a root bookmark named along the lines of "~crw{33FB2DCD-838A-(more gibberish)....}.rpt"
    I eventually figured out how to solve it.  I am using Crystal XI R2, not 2008, but I suspect you may be able to resolve the issue using the same steps.  I believe that the gibberish name that you are seeing is the actual technical name of the report as it is stored on the Enterprise server.  In order to get it to display a nice formatted name of your choosing, open up your report in the report designer.  Now go to the File menu and select Summary Info.  In the Title section, provide the name of the report that you would like to see at the root of the bookmark.  You are esentially setting up an alias for it.  Now when you export, you should see the new name that you typed in as the main part of the bookmark.
    Hope this works for you!
    Edited by: Wjrudo on Nov 30, 2009 8:55 PM

  • Disappearing bookmarks problem is escalating

    For over a year people have been reporting that all of their Ipad Safari bookmarks have been disappearing. two fixes were 1. Reboot the iPad. 2. Kill the Safari process. In my new (Christmas 2013) iPad mini, neither of these fixes works. I have been able to re- find most of the lost information, but what should I do in future? Is there a really good alternative browser available that doesn't have this problem?

    I guess this is how it was designed ;-(
    If you want all the URL's hidden (not exposed on the internet) behind the portal gateway then rewriting is needed. When rewriting is used the URL's are prepended. So bookmarks are with the gateway prepended.
    Other portal software solutions, use the revere proxy approach but then all the intranet hostnames need to be known in the internet DNS.
    I guess that most people implementing the sun portal eventually will hit this problem. One of the problems is also that before you can use that bookmark, it redirects you first to the desktop again in order to get your session.
    What also adds to this, is that the rewriter can cause so additional work in making the rewriting rules work. So you need to test this with every application.
    Probably the solution is somewhere in the middle:
    -use the portal server to login in the desktop
    -if bookmarks and rewriter are an issue then use a reverse proxy aside from the portal. And for SSO you implement a Identity agent on this reverse proxy.

Maybe you are looking for