BI Report in Web UI - Cross Navigational Link

HI Gurus,
I made the neccessary customizing settings in CRMC_UI_NBLINKS to display my BI reports in the CRM Web-UI.
Now I want to use the 'Cross Navigational links for InfoObjects' to be able to navigate from a BI report to a CRM UI component.
I am using a report about activity partners (0BP_ACTIVIT/0BPARTNER).
My settings in CRMC_UI_NBLINKS for this report:
InfoObject: 0BP_ACTIVIT
Navigational Link ID: Z_XXX
Seq.: 1
Object Type: BP_ACCOUNT
Object Action: B Display
Text: BP Link
However in the context menu on the report I do not see any 'BP link'. I tried 3.x and 7.x web templates and 3.x and 7.x queries, no luck.
What am I missing?
Regards,
Michael

Hi,
We are facing the same problem.
Can you tell us how you solved it, if you did.
Thank you,
A.Morais & I.Llopis

Similar Messages

  • Web Dynpro: several navigation links connect to one outbound plug of a view

    Hi,
    I have two questions in general Web Dynpro. (I have not found precise answer for the question yet)
    1) What should happen in the following case?
    We have three views in a component. The outbound plug of the first view is connected to the inbound plug of the second and third view via navigation links. Which view should appear, if i fire the outbound plug of the first view?
    Some documentation says, this case is not allowed, some documentation says it is allowed...
    2) If the previous case is allowed, what should happen in the following case?
    In a child component, a window outbound plug is connected to a view inbound plug. Beside this, I implement an inbound plug of the window, where i fire this outbound plug of the window.
    Now, the interface view is embedded into a parent component window. In the parrent component I connect the outbound plug of the interface component to an inbound plug of a parent view (which is also embedded into the window). I also connect an outbound plug of the parent view to the interface view inbound plug.
    What will happen if I fire the parent view outbound plug? Will the parent view or child view appear?

    Hi Huszar,
    I'm a newbie and found your question interesting. So I played a little with this issue and hope I found something to help you.
    But  I wonder in why you want to use such a constellation the first place. What is your purpose? For me the idea itself doesn't make much sense... Did you by chance actually think of one of the following purposes:
    You want two different action elements (e.g. 2 buttons) to fire different conenctions. Then you should use different outbound plugs. Connect the two buttons and the two links to different methods so that the corrsponding plug and button have the same method.
    You want to decide by value or state which view to show. Then you should use two different outbound plugs as well and decide in the button's event handler mehtod which plug to fire , e.g.: if <condition> then <firePlugA> else <firePlugB>.
    Generally, if you connect two views in a window via link you must chose a method to use or create a button. If you chose a method (event handler) the effect in the Java file is that the  method (onActionButtonX()) will call the corresponding firePlugOut-method.
    Unfortunately in the firePlug-method itself there was no hint about the plug's destination. As I connected the same method for button and two plug targets, Web Dypro for no obvious reason always chose the same target. I did not find a possibility to directly chose the target from one outbound plug, so I guess this information is stored somewhere in the background logic.
    Did I get the point or did you think of something completely different? Or maybe you just asked theoretically? In that case I don't seem to get the idea.
    Kind regards,
    Jana

  • Add the Z report to the Navigation Link

    We are working on the SAP CRM 4.0 with Web client as a interaction center.
    As per our requirement we need to add custom report to the navigation link.When the user clicks on this link the report should appear in Web client.
    At present i am trying with SAP provided display customer functionality.That link is fetching me SAP Netweaver website instead of CRM BP transaction.
    Pls advise as how i can i achieve this.
    Thanks.

    Hi -
    Changes to be done in Z_QUINNOX_PAYMENT_SUMMARY
    methods:
    1. GET_ACTION_DEFINITION
      class cl_crm_ic_abox_constants definition load.
      concatenate cl_crm_ic_abox_constants=>bor_action
                  'REPORT'  "#EC NO_TEXT
                  'EXECUTE'  "#EC NO_TEXT
                  'CRMSYS'  "#EC NO_TEXT
             into rv_result.
    2. CLASS_CONSTRUCTOR
      class cl_crm_ic_abox_constants definition load.
      gv_atype =
        cl_crm_ic_abox_constants=>bor_action.
      gv_method  =
        'EXECUTE'. "#EC NOTEXT
      gv_bortype =
        'REPORT'. "#EC NOTEXT
      gv_mappedlogsys =
       'CRMSYS'.  " 'R3SYS46C'. "#EC NOTEXT
      gv_version =
        '2.0'. "#EC NOTEXT
    Is return data flow requested?
      gv_is_return_df_requested =
        'X'. "#EC NOTEXT
    similarly set the BOR obj name et all in the CONSTRUCTOR also....check the class 'CL_CRM_IC_ABOXSAMPLE_CREATESO' and make the changes accordingly.....you can ignore the t.code parameters which they have passed, jus add the relavant BOR obj details and the log sys details in the relavant places....
    Now in ur BOR obj method 'EXECUTE', call the report using the SUBMIT prog stmt.....
    This shd work.....
    _Aarthi.

  • Unable to pass the values from one report to another using navigation links

    Hi All,
    I am facing a strange issue where I have to pass a column value from one report to other.
    I have kept navigation link in the 1st report and 'is prompted' option in the 2nd report
    Issue was , I'm not getting the filtered result in the 2nd report (all the records are being displayed)
    Can anyone advice where I was going wrong
    Thank you,
    AO

    Hi,
    The column which you have given navigation link and 'is prompted' column should same and exist in both the reports.You have to give the guided navigation in the value interaction of the column in the report1.
    mark if helpful/correct.........
    thanks,
    prasanna

  • Steps to link a report to Web Application Form. Post Your Opinion

    Hi friends,
    After going through it what is your opinion. please do post your opinion.
    Could any one give the complete steps of Linking a report to web form so that when called / clicked the link the report can display the data.
    I have unchecked the "Report Option -> Save Data with Reports". So that the report could not take extra space.
    I have DB connection code in my .aspx.vb file, it is as follows:
    Private Sub ConfigureCrystalReports()
    Dim fileName As String = "Reports\" & ReportID & ".rpt"
    Dim reportPath As String = Server.MapPath(fileName)
    myRepDoc = New ReportDocument()
    myRepDoc.Load(reportPath)
    myCrystalReportViewer.ReportSource = myRepDoc
    myCrystalReportViewer.RefreshReport()
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
    If Session("reportConnectionInfo") IsNot Nothing Then
    Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
    myConnectionInfo.ServerName = ConnInforArrList(0)
    myConnectionInfo.DatabaseName = ConnInforArrList(1)
    myConnectionInfo.UserID = ConnInforArrList(2)
    myConnectionInfo.Password = ConnInforArrList(3)
    Else
    lblMessage.ForeColor = Drawing.Color.Red
    lblMessage.Text = "Session is off. Please Relogin to See the Report."
    End If
    SetDBLogonForReport(myConnectionInfo, myRepDoc)
    SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
    myCrystalReportViewer.SelectionFormula = GetFieldName(ReportID) & "='" & Session("CompCode") & "'"
    myCrystalReportViewer.Visible = True
    End Sub
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
    Dim myTables As Tables = myReportDocument.Database.Tables
    For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
    Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
    myTableLogonInfo.ConnectionInfo = myConnectionInfo
    myTable.ApplyLogOnInfo(myTableLogonInfo)
    Next
    End Sub
    Private Sub SetDBLogonForSubreports(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
    Dim mySections As Sections = myReportDocument.ReportDefinition.Sections
    For Each mySection As Section In mySections
    Dim myReportObjects As ReportObjects = mySection.ReportObjects
    For Each myReportObject As ReportObject In myReportObjects
    If myReportObject.Kind = ReportObjectKind.SubreportObject Then
    Dim mySubreportObject As SubreportObject = CType(myReportObject, SubreportObject)
    Dim subReportDocument As ReportDocument = mySubreportObject.OpenSubreport(mySubreportObject.SubreportName)
    SetDBLogonForReport(myConnectionInfo, subReportDocument)
    If myReportObject.Name = "Subreport1" Then
    Dim lvSec As Section = subReportDocument.ReportDefinition.Sections("DetailSection1")
    If Not lvSec Is Nothing Then
    Dim t1 As TextObject
    t1 = lvSec.ReportObjects("txtEmpName")
    t1.Text = Session.Contents("EmpName")
    Dim t2 As TextObject
    t2 = lvSec.ReportObjects("txtRepID")
    t2.Text = Request.QueryString("REPID")
    End If
    End If
    End If
    Next
    Next
    End Sub
    Please do help me out as the data of report is not getting displayed on the report.
    After going through it what is your opinion. please do post your opinion.
    While creating the Report has the following Report Options on / checked.
    1. Database Server is Case-Incensitive
    2. Use Indexes Or Server For Speed
    3. Verify on First Refresh
    4. Show Preview Panel
    5. Display Alerts on Refresh
    6. Select Distinct Data for Browsing
    Do I have check or uncheck any other option?
    Thanks and regards
    Edited by: Md. Mushtaque on Sep 6, 2008 2:50 PM
    Edited by: Md. Mushtaque on Sep 8, 2008 9:27 AM
    Edited by: Md. Mushtaque on Sep 8, 2008 12:14 PM

    Sir AG,
    Thanks a lot for replying and spending your valuable time for my problem.
    Sir, I just want to put this in your knowledge that my application is web based application and I am calling these reports through web forms i.e. of ASP.NET coded in vb from .aspx.vb files.
    So as per the code I have attached, I have this
    Option Explicit On
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Next for ReportDocument Object:
    Dim fileName As String = "Reports\" & ReportID & ".rpt"
            Dim reportPath As String = Server.MapPath(fileName)
            myRepDoc = New ReportDocument()
            myRepDoc.Load(reportPath)
            myCrystalReportViewer.ReportSource = myRepDoc
    Above is the code used by me in Page_Init  and I have already tested it from Page_Load. I have got few suggestions from this forum that I should put this code in Page_Init only.
    Lastly:
    The database connectivity code:
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
            If Session("reportConnectionInfo") IsNot Nothing Then
                Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
                myConnectionInfo.ServerName = ConnInforArrList(0)
                myConnectionInfo.DatabaseName = ConnInforArrList(1)
                myConnectionInfo.UserID = ConnInforArrList(2)
                myConnectionInfo.Password = ConnInforArrList(3)
            Else
                lblMessage.ForeColor = Drawing.Color.Red
                lblMessage.Text = "Session is off. Please Relogin to See the Report."
            End If
            SetDBLogonForReport(myConnectionInfo, myRepDoc)
            SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
    SetDBLogonForReport(myConnectionInfo, myRepDoc)
    Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
            Dim myTables As Tables = myReportDocument.Database.Tables
            For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                myTableLogonInfo.ConnectionInfo = myConnectionInfo
                myTable.ApplyLogOnInfo(myTableLogonInfo)
            Next
        End Sub
    This code I have got from a sample of the forum itself.
    Sir, after all these effort and the unchecking of option "Save Data with Report" on calling the reports from my forms it is showing blank report. No data from the database is coming form the database.
    I have uncheked the option "Save Data with Reports" to get the updated data each time the report has been called but now the status is that nothing is coming.
    Thanks again for you precious and valuable effort to help me but the my problem is unsolved, So sir please if you could put an eye on it and help me out to get rid of this problem, I will be very thankful to you for your kind help.
    Thanks and regards
    Mushtaque

  • ANN 1-hr webinars: Buttons for PDF Navigation/ Interactive Checklists/ Cross-File Links & Bookmarks

    Free; no fluff, no hype, no nonsense; starting 9am PDT
    • Creating Buttons for PDF Navigation using FrameMaker Hypertext Markers
    Wed, April 16
    https://www3.gotomeeting.com/register/817461086
    • Creating Interactive PDF Checklists with FrameMaker-to-Acrobat TimeSavers + Form Assistant
    Wed, April 23
    https://www3.gotomeeting.com/register/886165534
    • Cross-File Links and Bookmarks in PDFs Authored with FrameMaker
    Thu, May 1
    https://www3.gotomeeting.com/register/911390886
    Shlomo Perets
    MicroType, http://.microtype.com
    FrameMaker/Acrobat/Captivate training & consulting • FM-to-Acrobat TimeSavers/Assistants

    The Bookmark Panel to the left of the pdf is not displaying - I have checked everything (and double checked under preferences to ensure that under Documents > Open Settings > Restore last view settings when reopening documents is Not checked.)
    Have reinstalled Acrobat and still am having issues. The only thing I did was open AcrobatLive and converted a doc to a fillable form - I am getting error messages with that now as well.

  • Linked Reports with Web Intelligence Rich Client

    Hi,
    Is it possible to build a linked report with WebI Rich client without using InfoView?
    Assume the following simple report which select some fields of a file transfer information.
    TransferID      Filename   Transfer Status
    1                        a                       OK
    2                        b                       OK
    3                        a                       NOK
    Now I want to click on the record with TransferID 3 and get some more information for that particular record such as:
    TransferID      Filename   Transfer Status  Date  Duration
    3                        a                       NOK         Feb 24      5
    In other words, I'd like to do select of that table with the where condition "TransferID = 3" which corresponds to the record I clicked in my initial report.
    Thanks a lot,
    Kurt

    Hi Kurt
    Have you found any solution for "to link two tables in one WebI report without InfoView".
    I will appreciate if you can share the same.
    Regards
    Naveed

  • Steps to link a report to web form

    Hi friends,
    Could any one give the complete steps of Linking a report to web form so that when called / clicked the link the report can display the data.
    I have unchecked the "Report Option -> Save Data with Reports". So that the report could not take extra space.
    I have DB connection code in my .aspx file, it is as follows:
    Private Sub ConfigureCrystalReports()
            Dim fileName As String = "Reports\" & ReportID & ".rpt"
            Dim reportPath As String = Server.MapPath(fileName)
            myRepDoc = New ReportDocument()
            myRepDoc.Load(reportPath)
            myCrystalReportViewer.ReportSource = myRepDoc
            'myCrystalReportViewer.RefreshReport()
            Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
            If Session("reportConnectionInfo") IsNot Nothing Then
                Dim ConnInforArrList As ArrayList = DirectCast(Session("reportConnectionInfo"), ArrayList)
                myConnectionInfo.ServerName = ConnInforArrList(0)
                myConnectionInfo.DatabaseName = ConnInforArrList(1)
                myConnectionInfo.UserID = ConnInforArrList(2)
                myConnectionInfo.Password = ConnInforArrList(3)
            Else
                lblMessage.ForeColor = Drawing.Color.Red
                lblMessage.Text = "Session is off. Please Relogin to See the Report."
            End If
            SetDBLogonForReport(myConnectionInfo, myRepDoc)
            SetDBLogonForSubreports(myConnectionInfo, myRepDoc)
            myCrystalReportViewer.SelectionFormula = GetFieldName(ReportID) & "='" & Session("CompCode") & "'"
            myCrystalReportViewer.Visible = True
        End Sub
        Private Sub SetDBLogonForReport(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
            Dim myTables As Tables = myReportDocument.Database.Tables
            For Each myTable As CrystalDecisions.CrystalReports.Engine.Table In myTables
                Dim myTableLogonInfo As TableLogOnInfo = myTable.LogOnInfo
                myTableLogonInfo.ConnectionInfo = myConnectionInfo
                myTable.ApplyLogOnInfo(myTableLogonInfo)
            Next
        End Sub
        Private Sub SetDBLogonForSubreports(ByVal myConnectionInfo As ConnectionInfo, ByVal myReportDocument As ReportDocument)
            Dim mySections As Sections = myReportDocument.ReportDefinition.Sections
            For Each mySection As Section In mySections
                Dim myReportObjects As ReportObjects = mySection.ReportObjects
                For Each myReportObject As ReportObject In myReportObjects
                    If myReportObject.Kind = ReportObjectKind.SubreportObject Then
                        Dim mySubreportObject As SubreportObject = CType(myReportObject, SubreportObject)
                        Dim subReportDocument As ReportDocument = mySubreportObject.OpenSubreport(mySubreportObject.SubreportName)
                        SetDBLogonForReport(myConnectionInfo, subReportDocument)
                        If myReportObject.Name = "Subreport1" Then
                            Dim lvSec As Section = subReportDocument.ReportDefinition.Sections("DetailSection1")
                            If Not lvSec Is Nothing Then
                                Dim t1 As TextObject
                                t1 = lvSec.ReportObjects("txtEmpName")
                                t1.Text = Session.Contents("EmpName")
                                Dim t2 As TextObject
                                t2 = lvSec.ReportObjects("txtRepID")
                                t2.Text = Request.QueryString("REPID")
                            End If
                        End If
                    End If
                Next
            Next
        End Sub
    Please do help me out.
    Thanks and regards

    Hello Md. Mushtaque,
    Please post this query to the [.NET Development - Crystal Reports|SAP Crystal Reports, version for Visual Studio; forum.
    This forum is dedicated to topics related to custom application development or deployment with Crystal Reports in .Net. This includes full versions of Crystal Reports as well as those versions of Crystal Reports bundled with Microsoft Visual Studio .Net.
    The forum is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports .NET Development queries remain in one place and thus can be easily searched in one place.
    Thanks a lot,
    Falk

  • How to define new Navigation Link in IC web

    Hi,
    while creating the navigation bar id, we have to give atleast one of the following inputs
    1 Navigation Link or
    2.Class Name or
    3.Launch Transaction ID
    I know how to create launch transaction id,but i found that the out put of the trasaction is in gray mode.Even for Standard Transaction IDs also i am getting the out put in the same gray mode.
    so i want to go for other alternative that is navigation link, i have taken one standared Navigation link(CaseManagementSearchView) using F4 help and assign to Navigation bar id, then i got the output(got in Edit mode).
    So i want to create my own "Navigation Links", and i want assign them to Navigation bar id.
    Can any Body tell me the step by step process for How to create Navigation Link.
    That would be very help ful to me.
    If you people are having any document related to this, i am requesting you please send the document to [email protected]
    Points will be rewarded,
    Cheers,
    Venu

    Hi Venu,
    1. Navigation links are created in BSP_WD_WORKBENCH - IC WebClient  Workbench .
    2. Put BSP application CRM_IC_RT_REP and the Runtime profile name DEFAULT ( or if you have your own Zprofile created you can even enter that) and Execute.
    3. Go to Runtime Repository in the viewareafolder choose navigationArea drill down till you come till IC_BASE/NavBarView where you can see the Navigation.It consists of all posible navigation links.
    4. A navigation link consists of the following details:
       -  Source view.
       - outbound plugs
       - Target view
       - inbound plug
        Hence to create a navigation link one needs to specify the following details.
    Regards,
    Shalini Chauhan

  • Back button from cross-document link shows Security Settings pane

    I have a PDF with many cross-document links (links to page views in another PDF within the same folder). When users have these set to open in the same window, the expected actions occur: the source document closes (or appears to close) and the destination document opens to the chosen page view. However, once we password protect the PDFs, we notice an odd behavior. When the Back button is used to get back to the source document, it takes the user back to the appropriate spot; however, if the user had their bookmarks pane open in the source document, the Security Settings pane is open instead when Back is used.
    So, to summarize:
    - Cross-document link from source doc to destination doc, preference set for these to open in the same window.
    - Source doc and destination doc both password protected.
    - Initial view setting for both docs is Bookmarks Panel and Page.
    - User has bookmarks pane open in source doc, clicks on cross-document link.
    - Source doc closes, destination doc opens as desired.
    - User presses Back button.
    - Destination doc closes, source doc reopens to the appropriate location - but bookmarks pane is now replaced by the Security pane.
    We'd really like to find a way to avoid this; this is a pretty useless pane to have open and the structure of these docs means that users are frequently going to view them with their bookmarks open. Is this a bug? Is there a setting I can dig for? We think it's not happening in Acrobat 9 (I can't confirm, but this is what my client  has said) but is happening in 10 and 11, and also in the current version of Reader.
    Can anyone shed any light?

    Remember that here you have of community of fellow end-users. Not the Acrobat Engineering team eh.
    afaik - It is build in behavior. Similar to defaulting to display of the pages thumbnail pane in the navigation panel when an "insert" page is done.
    There is a certain logic to it so it may have been deliberate. As an end-user I'm not appreciative of such. Some "developer staged user assistance" I can do without.
    You may want to consider a submission via:
    Adobe - Feature Request/Bug Report Form 
    Be well...

  • Button of  report in WEB UI Client not working.

    Dear experts!
    I program a report in SAP GUI. Display data by ALV grid using function module. Then, i create a button, when i click this button, program will call a function module to export data to excel. I fix the path to save file excel is on my local computer. I test in SAP GUI, these functions run very good. I create logical link to bring this report to WEB UI. But after i run this report, i click button to export data to excel, system has not any message and i follow the path i have fixed about, but i do not find the file excel.
    Anyone can explain and resolve this problem with me?
    Thanks a lot!
    Longndtb.

    Hi,
            GUI methods for file handling do not work in the web session. The browser by itself has no access to the user's PC and this is on purpose for security reasons. You have options. You can create a SICF node to generate the report as a downloadable content or use activex objects to directly write files in user's PC or run a SAP GUI report in a background session.
    Regards,
    Arun Prakash

  • Navigation Link failes : _layouts/15/AreaNavigationSettings.aspx fails to load on subsites

    PROBLEM: The navigation link in Site Settings will only works on the root site. Any sub site I get the notorious "Sorry, something went wrong An unexpected error has occurred." 
    When I look at the logs I see the following that relate to the correlation ID below.  Any ideas on how to get Navigation working?
    This was caused when I migrated sites from one farm to another and only if I created a new site collection and replaced the root site with one from the other farm.  
    What I've Tried:
    I've done this on other site collections where I moved the sites but made them subsites and did not overwrite the root site and the navigation feature works fine.  Even sites where I
    didn't do a migration it worked great.
    I've tried the following found at this link which seems to be the most popular solution but I've had no luck.
    https://praveenix.wordpress.com/2014/03/16/sharepoint-2013-left-navigation-and-top-navigation-bar-does-not-render-links-and-shows-error-an-error-occurred-while-rendering-navigation-for-requested-url/
    Anyone have any ideas on how to get Navigation working?
    LOGS:
    Application error when access /_layouts/15/AreaNavigationSettings.aspx, Error=Object reference not set to an instance of an object.  
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.GetInheritedNavigationCaption(StandardNavigationSettings settings)    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.OnLoad(EventArgs e)    
    at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    System.NullReferenceException: Object reference not set to an instance of an object.   
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.GetInheritedNavigationCaption(StandardNavigationSettings settings)    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.OnLoad(EventArgs e)    
    at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.NullReferenceException: Object reference not
    set to an instance of an object.     at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.GetInheritedNavigationCaption(StandardNavigationSettings settings)    
    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaNavigationSettingsPage.OnLoad(EventArgs e)    
    at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at System.Web.UI.Page.HandleError(Exception e)    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at System.Web.UI.Page.ProcessRequest()    
    at System.Web.UI.Page.ProcessRequest(HttpContext context)    
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    This also appear in the logs:
    UserAgent not available, file operations may not be optimized.    at Microsoft.SharePoint.SPFileStreamManager.CreateCobaltStreamContainer(SPFileStreamStore spfs, ILockBytes ilb,
    Boolean copyOnFirstWrite, Boolean disposeIlb)     at Microsoft.SharePoint.SPFileStreamManager.SetInputLockBytes(SPFileInfo& fileInfo, SqlSession session, PrefetchResult prefetchResult)     at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedStreamBufferFactory.CreateFromDocumentRowset(Guid
    databaseId, SqlSession session, SPFileStreamManager spfstm, Object[] metadataRow, SPRowset contentRowset, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres)     at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32
    rowOrd, Object ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres)     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet,
    String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean&
    pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String&
    pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies,
    Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId)     at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte
    bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument,
    Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object&
    pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object&
    pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId)     at Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String
    bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean&
    pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object&
    pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel,
    UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId)     at Microsoft.SharePoint.SPWeb.GetWebPartPageContent(Uri
    pageUrl, Int32 pageVersion, PageView requestedView, HttpContext context, Boolean forRender, Boolean includeHidden, Boolean mainFileRequest, Boolean fetchDependencyInformation, Boolean& ghostedPage, String& siteRoot, Guid& siteId, Int64& bytes,
    Guid& docId, UInt32& docVersion, String& timeLastModified, Byte& level, Object& buildDependencySetData, UInt32& dependencyCount, Object& buildDependencies, SPWebPartCollectionInitialState& initialState, Object& oMultipleMeetingDoclibRootFolders,
    String& redirectUrl, Boolean& ObjectIsList, Guid& listId)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean mainFileRequest, String
    path, Boolean impersonate, Boolean& isAppWeb, Boolean& fGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl, String& webUrl, String&
    siteUrl, Guid& siteId, Object& buildDependencySetData, SPWebPartCollectionInitialState& initialState, String& siteRoot, String& redirectUrl, Object& oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64&
    bytes)     at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetWebPartPageData(HttpContext context, String path, Boolean throwIfFileNotFound)     at Microsoft.SharePoint.ApplicationRuntime.SPVirtualPathProvider.GetCacheKey(String
    virtualPath)     at System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate)     at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath
    virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)     at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath
    virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)     at System.Web.Compilation.BuildManager.GetVPathBuildResult(HttpContext context, VirtualPath virtualPath,
    Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean ensureIsUpToDate)     at System.Web.UI.MasterPage.CreateMaster(TemplateControl owner, HttpContext context, VirtualPath masterPageFile, IDictionary contentTemplateCollection)    
    at System.Web.UI.Page.ApplyMasterPage()     at System.Web.UI.Page.PerformPreInit()     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     at System.Web.UI.Page.ProcessRequest()     at System.Web.UI.Page.ProcessRequest(HttpContext context)    
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     at
    System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb)     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest
    wr, HttpContext context)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr
    rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)    
    at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr
    nativeRequestContext, IntPtr moduleData, Int32 flags)     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)

    Hi Craig,
    I understand you encountered the issue with navigation link in the sites after migrated to another one.
    The issue might be caused by
    Navigation links that were added by site owners as relative links in the old site continued to work, and links that were added and managed automatically by SharePoint continued to work as well.
    Please try the script in the article below and see if it fix the link:
    http://sharepointtaproom.com/2014/11/12/how-to-fix-broken-navigation-links-after-sharepoint-upgrade-or-migration/
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Running Report in Web Pl/Sql

    Hi All!!
    Which commond should i use to run the Report from Web PL/Sql of
    Designer?
    Thanx
    Pritam

    Hi,
    I am not BOBJ Admin so I don't have on the top of my head that how to do but here two links which might help you.
    [http://blog.mastering-sap-and-businessobjects.com/]
    [http://www.forumtopics.com/busobj/viewtopic.php?p=165424]
    Regards,
    Bashir Awan

  • Can not display BI report in Web ui

    I created reporting profile with both bi and interactive reporting active and assigned to the business role functional profile
    I gave the BI connection client in the report that I wanted. When I select the report in webu ui, it's taking me to a sign on pad. I assume this for BI sign on pad and When i enter sign on, it's not taking me any where.
    This just a standard report in CRM My top 5 quotations. All necessary steps in basic bi connection, basic sales analytics are done too
    How does the the connection between BI and crm works?
    Please advise

    Hi Experts,
    We are using Webiu 2007 with BI 7. 
    We linked our sandbox to RWT system to test the report output. In my CRS, I have source system RWT defined and the same way in BI also we have assigned CRS to link these systems together. It is my understanding that when we select the report, we are just calling the from BI into CRM.  I have done the following steps in CRM
    1) Created reporting profile in CRM analytics as both BI and CRM interactive reporting activated
    2) Assigned this reporting profile to business role
    3) I selected My-Top-5 quotation report and gave the BI system in display  bi reports
    4) I can see the report on webui.
    Problem: When I selected the report,  a logon pad appears and I enter RWT user id and password, it's doing nothing.  But, I have another user who is logging in for the first time got an error "Error loading template "OTPLB_OCRM_QUTO_Q0001_1 notification number BRAIN276". When the same new user tried to login second or third time, it's not showing the error and nothing is happening when we enter userid and pass word.  But, we can logon to GUI RWT.
    We tried to pull a query view report and web template reports see if we can display data. The BI team gave me couple of info objects keys. 
    1) I created the report with object key and type as one for 3.x template and one for 3.x query view
    2) Created logical links for these two reports and selected these two reports in business role. Now the reports are showing in webui
    3) When I select any of these, it taking to a blank screen without any logon screen. 
    BW team says that these reports are running with data in their system.
    Can someone please help?

  • OBIEE Guided Navigation Link - How to open in New page.

    Hi,
    I am using Guided navigation links in OBIEE dashboards to link some of my reports.
    When i click on the Link it opens the report on the same page. Instead i have to open the report in a new page. This Option is available in 'Link OR Image' section, not in 'Guided Nav. Link' section. Please suggest me if there is any way to achieve this.
    Thanks
    Swami

    Hi
    We have the same need: from within a report we have guided navigation to a detail report, that uses the values of the record in the master report as filterparameters. When clicking a row in the master report , we should open the detail report in a new window, while leaving the master report in the dashboard open. How can we achieve this?
    Swami just mentioned the Link or Image object to indicate that this possibility of choosing the same or a new window is present there, and asked where to find the same choosing option for guided navigation.
    Frits

Maybe you are looking for