Detail information in multiple areas of a report

Post Author: Theresa Rose
CA Forum: Crystal Reports
I need detail information to show up on multiple areas of a report that I am working on.There are different areas on a form that I am working on that require multiple lines of detail information. I have tried using a subreport, but when it goes to a second page it doesn't show the correct detail information.

Thanks Gupta.
Please let me know if this BI WAD command is available in 3.5 also or in just 7.0. we are in 3.5 now. if it is 3.5 as well, can you please tell me how to get there.
Thanks
Krishna

Similar Messages

  • Detail Information to show in multiple areas of a report

    Post Author: Theresa Rose
    CA Forum: General
    I need detail information to show up on multiple areas of a report that I am working on.There are different areas on a form that I am working on that require multiple lines of detail information. I have tried using a subreport, but when it goes to a second page it doesn't show the correct detail information.

    Ok, I think I got it. I needed to blank out Number of Rows(item), Maximum row count and only populate Number of Rows. I was sure I did that before and it didnt work.
    Do you think that the Sessions in Apex can cause unexpected results? I have found that when I make changes I have to log all the way out of Apex, close my browser and reopen everything to ensure that my change took. Does anyone else have this issue? I can move this into a different thread if need be.
    Thx!

  • Detail information showing up on multiple areas of a report

    Post Author: Theresa Rose
    CA Forum: Crystal Reports
    I need detail information to show up on multiple areas of a report that I am working on.There are different areas on a form that I am working on that require multiple lines of detail information. I have tried using a subreport, but when it goes to a second page it doesn't show the correct detail information.

    those are imessages, you guys must be using the same apple id for imessages.
    go to settings>messages>send &recieve and check whether the same id is listed in the all the phones, if so change to a different id or remove it.

  • How to find user details o who are using bw reports

    Hi BW Experts,
    I want to know the details of users who are using bw reports.Your help is greatly appreciated.
    Thanks & Regards
    Pakki

    Hi,
        You can see it BW statistical reports. Once check 0BWTC* (3.5)  or 0TCT* (7.0) cubes are availble in your system or not ?
    Please check these links.
    http://help.sap.com/saphelp_nw04/helpdata/en/8c/131e3b9f10b904e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/f0/3c8c3bc6b84239e10000000a114084/plain.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5401ab90-0201-0010-b394-99ffdb15235b
    Or else you can only get this information if the query/ workbook is enabled for statistics logging in transaction RSDDSTAT.
    If it is enabled you can goto table RSDDSTAT ( 3.5) or RSDDSTAT_OLAP( 7.0 ) to see the users who executed the query . These tables store all the information per query session and you will find more than one rows per session but you can find the information you want i.e. users executing a particular query.
    Also Tcode: SU01 will give you all the user lists in the server.
    Regards
    Pcrao.

  • "Failed to open the connection" problem related to multiple tables in the report?

    Post Author: Gadow
    CA Forum: Data Connectivity and SQL
    System specifics:
    Web environment using ASP.Net 2.0 (from Visual Studio 2005 Professional)
    Crystal Reports 2008, v. 12.0.0.549, Full
    We have set up the following method for displaying reports via our website:
    User is sent to a report-specific page. The user is given some filtering options specific to the report that will be viewed. When the user has specified the data filters, the user clicks a button.
    The page wraps up the report parameters -- selection query, formula values, report location, the name to be displayed, etc. -- into a class which gets put into the Session object.
    The page redirects to DisplayReport.aspx. ALL reports redirect to this page.
    DisplayReport.aspx retrieves the report parameters from Session. A ReportDocument object is created and loaded, then set with the data from the parameters class.
    A ConnectionInfo object is created and set with the relevant log on credentials. All of the reports draw from the same database, so the connection information is hard-coded as the same for all reports. The page then iterates through all of the tables in the Database.Tables collection of the ReportDocument and calls ApplyLogOnInfo to each table using the ConnectionInfo object.
    The page is rendered and the user gets the filtered report.
    We currently have seven reports. Five reports work fine and display the correctly filtered data with no error messages. Two reports generate a Failed to open the connection error and do not display. I have verified that the queries being sent to DisplayReport.aspx are valid, and as I said the connection information itself is hard-coded in the one page that displays the reports and this is identical to all reports.
    The five reports that do work all have a single data table, either an actual database table or a single view. The two reports that do not work all have multiple tables. As far as I can tell, this is the only difference between the sets; all seven reports are based on the same DSN and I have verified the database on all of the reports. All of the reports were written using Crystal Reports 8, and all of the reports display fine in a Windows app I wrote some years ago using Crystal Reports 8. Again, the only difference between those reports that do work and those that do not is the number of tables used in the report: one table or view in the reports that display, more than one table (tables only, none use views) in the reports that do not display.
    As for the code I am using, below are the relevant methods. The function MakeConnectionInfo simply parses out the components of a standard SQL connection string into a ConnectionInfo object. DisplayedReport is the ID of the CrystalReportViewer on the page.Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs)
            Dim o As Object = Session("ReportParams")
            Dim ReportURL As String = ""
            'Verify that there is a ReportParameters object
            If o Is Nothing OrElse o.GetType IsNot GetType(ReportParameters) Then 'Redirect to the error page
                Response.Redirect("/errors/MissingReport.aspx")
            End If
            ReportParams = CType(o, ReportParameters)
            'Verify that the report exists
            ReportURL = "/Reports/ReportFiles/" + ReportParams.ReportName
            ReportPath = Server.MapPath(ReportURL)
            If Not File.Exists(ReportPath) Then
                Response.Redirect("/errors/MissingReport.aspx?Report=" + ReportParams.ReportTitle)
            End If
            InitializeReport()       
        End Sub
        Protected Sub InitializeReport()
            Dim RD As New ReportDocument
            Dim CI As ConnectionInfo = MakeConnectionInfo(DB_Bonus)
            Dim RPF As CrystalDecisions.Shared.ParameterField = Nothing
            RD.Load(ReportPath)
            If ReportParams.SelectString <> "" Then
                Dim Adapt As New SqlDataAdapter(ReportParams.SelectString, DB_Bonus)
                Dim DS As New Data.DataSet
                Adapt.Fill(DS)
                RD.SetDataSource(DS.Tables(0))
            End If
            For Each kvp As KeyValuePair(Of String, String) In ReportParams.Formulas
                Dim FFD As FormulaFieldDefinition = Nothing
                Try
                    FFD = RD.DataDefinition.FormulaFields(kvp.Key)
                Catch ex As Exception
                    'Do nothing
                End Try
                If FFD IsNot Nothing Then
                    Select Case FFD.ValueType
                        Case FieldValueType.DateField, FieldValueType.DateTimeField
                            If IsDate(kvp.Value) Then
                                FFD.Text = String.Format("Date()", Convert.ToDateTime(kvp.Value).ToString("yyyy, MM, dd"))
                            Else
                                FFD.Text = "Date(1960, 01, 01)"
                            End If
                        Case FieldValueType.StringField
                            FFD.Text = String.Format("""""", kvp.Value)
                        Case Else
                            'For now, treat these as if they were strings. If things blow up here,
                            'we will need to add the appropriate formatting for the field type.
                            FFD.Text = String.Format("""""", kvp.Value)
                    End Select
                End If
            Next
            For Each T As CrystalDecisions.CrystalReports.Engine.Table In RD.Database.Tables
                Dim TLI As TableLogOnInfo = T.LogOnInfo
                TLI.ConnectionInfo = CI
                T.ApplyLogOnInfo(TLI)
            Next
            DisplayedReport.ReportSource = RD
        End Sub
    Does this approach not work with reports containing multiple tables, or is there something I'm missing? Any meaningful suggestions would be much appreciated.

    Dear Dixit,
    Please refer to the Crystal report landing page to get the details
    information about the support for crystal report issues.
    Please use the following thread to post your questions related to
    crystal report.
    SAP Business One and Crystal Reports
    Regards,
    Rakesh Pati
    SAP Business One Forum Team.

  • Build a project report with detail information

    Hi,
    I want to build a project report in BW and am not sure if my idea is feasable....
    The report should consist of two parts:
    the head part consists detailed information about a project like ID, status, owner, start date.
    The body part contains information about a key figure 'worked hours' drilled down by department and drilled through by calendar month.
    I am completely free where I want to store the data to have it available in the report. My idea was to store project head information in an ODS and to store the key figure 'worked hours' in a cube with the characteristics project, month and department.
    What would be the best way now to build a report on these information. As far as I know, a normal query is always used to show key figures, but not detailed information of a project. How can I report the information that I want to show in the report header?
    Thanks for any help!
    Cheers
    Tatjana

    What is the source of the data coming?
    if you are using a custom report and if u thinking data is not huge.. keep every thing in one ODS and drag in the reports of the required fields..
    Regards,
    Hari

  • Lines are showing multiple times on Invoice Report

    Hi,
    If Payment Terms are Installments then lines are showing multiple times on Invoice Report.
    Suppose Payment Terms are 10 Installments then (Item, Description, Qty, Unit Price and Extended price) lines are showing 10 times.But I need to display only one time line data (Item, Description, Qty, Unit Price and Extended price).
    Please help me to achieve this.
    Thanks,
    Subbarao.

    Hi,
    Thank you very much for your reply.
    I used following ways:
    1) <?xdosxlt:distinct_values(LINE_NUMBER)?>
    2) <?if:position()=1?><?LINE_NUMBER?><?end if?>
    But no luck to achieve the requirement.
    I too thought like your Idea (like displaying multiple) but client wants me to display the only one line data.
    Thanks,
    Subbarao.

  • 'No detailed information exists for this person'  while adding new reviewer

    Hi All,
    <b>This is an extremely urgent issue.</b>
    We are getting the following message in SRM while adding a new approver to the Shopping cart once the - 'No detailed information exists for this person'
    <b>We have implemented the following OSS Notes in the SRM 5.5 system, Release 700 after rasing a call with SAP.
    SAP Pilot OSS note - 1002957
    Other OSS Notes -
    999528 Adding Ad Hoc Approver fails due to comit erro...
    722357 Ad hoc: Commit control with ad hoc enhancement...
    990467 Commit Problem with AdHoc Agents...
    984582 Problems with Posting Container Data (ad Hoc
                            agent...
    947296 Inserted/changed approver is not transferred...
    910925 SRM Workflow: Ad-hoc agent not found...
    803628 BADI workflow: You cannot add an approver</b>
    Here are the details
                          <b>Cannot add additional approver</b>
                            We are now on SRM 5.5 and a document attached shows the
                            patch levels
                            from SPAM.
                            In shop transaction, it is possible to change the
                            default approvers,
                            but not possible to Add.
                            When we add, the system shows the list of available
                            approvers, allows
                            selection, but "transfer" button does not actually
                            transfer.
                            When the cart is saved, the added approval shows as "no
                            approval
                            available".
                            We are using the standard workflows for 2 step approval.
                            A document is attached to show what happens and the
                            results of checks
                            we have performed.
                            BUS2121 also shows as ok when checked.
    Any pointers what could be possible reasons.
    <b>Points for sure. !!</b>
    Regards
    - Atul

    Hi Atul,
    Here is the list.
          |-----     0000702787 EBP 4.0: Message "Enter a country"
          |-----     0000732828 E-mail messages for work items with incorrect line break
          |-----     0000735026 Memory problems at BBP_GETLIST_INDEX_FILL
          |-----     0000804317 SRM40/SUS/PO: PO inbound with error BBP_PD 147
          |-----     0000862851 PO not ordered due to different locations error
          |-----     0000902956 Changing Account assignment category BE Limit service PO
          |-----     0000911446 No reservation is created
          |-----     0000917869 SRM 5.0: PPOMV_BBP - Vendor address tab page
          |-----     0000919553 SRM 5.0: Termination of output preview for invalid partner
          |-----     0000920363 Shopping cart transfer: Sourcing indicator is not set
          |-----     0000924218 SRM 5.0: wrong error message for non existant auth. PurchOrg
          |-----     0000924811 SRM5.0: Javascript error on document screen
          |-----     0000926750 Shopping cart: Unit of measure is not restored
          |-----     0000926878 Link for expanding details in the shopping cart too small
          |-----     0000927142 SRM5.0: Browser hangs up during attachment upload
          |-----     0000938168 SRM50: Message "No default value from vendor master"
          |-----     0000938296 JavaScript runtime error in the bid invitation
          |-----     0000940805 BBPS_SC_APP_SOS cannot be enhanced
          |-----     0000941935 External requirements displayed as a reference
          |-----     0000942742 Update is cancelled if new source of supply is found
          |-----     0000944592 No location when vendor has changed
          |-----     0000944918 ECS: Find back end purchasing group as a responsible group
          |-----     0000945601 Termination when you display purchase order item detail
          |-----     0000948425 Shopping basket changeable although already approved
          |-----     0000953238 Shopping cart history in the sourcing cockpit
          |-----     0000954066 Follow-On Documents Tab does not get Highlighted
          |-----     0000954409 Error message during approval of a confirmation
          |-----     0000955377 Long runtimes for workflows with blocks
          |-----     0000956108 Empty worklist after clicking button 'Find'
          |-----     0000956723 BBPMAININT:Bus. partner display switches to maintenance mode
          |-----     0000956797 RUSRM50: Limit Purchase Order Functional Area Error Message
          |-----     0000957884 Category Management: Data disappears after program SAVE
          |-----     0000958045 BBPSC04: Delete icon not hidden despite screen variant
          |-----     0000958349 Final delivery with quantity 0
          |-----     0000959528 During PO creation wrong error message BBP_PD 428
          |-----     0000960169 Favorites not saved for 'Purchase for'
          |-----     0000961422 BBP_MON_SC: No search help for 'Created By'
          |-----     0000962093 BBP_VENDOR_CREATE: Refresh BP data
          |-----     0000962252 BBP_GETLIST_INDEX_FILL: Incorrect processing statistics
          |-----     0000962474 Error after changing partner data
          |-----     0000964132 Approval Preview for Rejected Items: Wrong User's Inbox
          |-----     0000964361 Cannot find employee of vendor
          |-----     0000964455 Country for the PO box is initial
          |-----     0000964911 Kopieren von Alertkategorien: Containerelemente verschwinden
          |-----     0000966072 Download of material fails - set type COMM_PR_UNIT
          |-----     0000966323 Service Item: Not able to create PO in ERP backend
          |-----     0000967429 Approval buttons not updated after release
          |-----     0000967615 Performance of BBP_PD_PO_GETDETAIL may be poor
          |-----     0000968110 Transfer canceled, account assignment acc. to value/quantity
          |-----     0000968251 BBPSC02:In source of supply preferred vendor not validated
          |-----     0000969091 SRM does not support passwords longer than 8 characters
          |-----     0000982293 Ext requirements: Purchasing group data not transferred
          |-----     0000982448 Impossibility to delete an item in PO
          |-----     0000982674 Change PO quantity does not update account assign quantity
          |-----     0000983130 Search for back-end purchase orders using the requester name
          |-----     0000984184 BADI BBP_ALERTING active but its implementation isn't called
          |-----     0000985179 Delete button active for backend service entry sheets
          |-----     0000990264 Multiple confirmations cannot be posted for service & limit
          |-----     0000996104 No catalog when confirming back-end blanket purchase orders
          |-----     0001003408 BBPCF: Cannot Add Catalog Item to Confirmation for Limit PO
         0001010791 Flag Confirmation based Invoice Verification set erroneous
    Kind regards,
    Yann

  • Using 1 dataset for multiple tables in the report

    All,
    Say I have a stored procedure with some parameters and the result set looks like this:
    State   ACount    BCount     Description
    VA           10            20           Category1
    TX           15            25           Category1
    VA           30            40           Category2
    TX           40            50           Category2
    NY           5              5             Category3
    NJ           10            10           Category3
    Now, what I want is 3 separate tablixes (tables) in my report using my stored procedure (just 1 dataset for all these tables). I want the result to be dispalyed something like this:
    Category1 (1st tablix)
    State   ACount    BCount     Description
    VA           10            20           Category1
    TX           15            25           Category1
    Category2 (2nd tablix)
    VA           30            40           Category2
    TX           40            50           Category2
    Category3 (3rd tablix)
    NY           5              5             Category3
    NJ           10            10           Category3
    I want Category1, Category2 and Category3 to be 3 different tablixes in my report using the same stored procedure.
    How can I accomplish that? Let me know if you have any questions.

    Hi SqlCraze,
    I also design the report using Report Designer. So you can directly do the same steps as I post.
    In the fourth step that "Insert the corresponding fields to the second table" means directly insert State, ACount, BCount and Description fields. Please note that the list control is used to split one table into several tables based on the
    Description group: one table only displays the values when Description=Category1, one table only displays the values when Description=Category2, another table only displays the values when Description=Category3. We needn't add filters in the table, just add
    the list.
    For more information about the list control in Reporting Services, please refer to the following blog:
    http://blogs.technet.com/b/microsoft_in_education/archive/2013/03/09/ssrs-using-a-list-item-to-display-details.aspx
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • Multiple Regions as Single Report...

    Hi all,
    I am looking to incorporate multiple regions as a single report...
    Did a quick search in the forum ....i have seen some discussions on multiple reports in a single region....
    my sample application details are as below....
    http://apex.oracle.com/pls/otn/f?p=4500:1000:410975692726494
    workspace name : bi_development
    username: apexforum
    pwd : apexforum
    application name: multiple region in one report.
    Thanks in advance.

    Yes, you can do it.
    Take a look at http://xlspe.com

  • Where are the diagnostic reports, or why aren't there any?

    Hello
    I understand that under mavericks, diagnostic reports are supposed to be found either in
    /Library/Logs/DiagnosticReports/ (System Diagnostic Reports),
    or in 
    ~/Library/Logs/DiagnosticReports (User Diagnostic Reports).
    Unfortunately, even after a number of crashes, they aren't. While in my case, the system DiagnosticReports folder exists, but contains nothing but powerstats, in the user library, not even the folder is there.
    So, either they are elsewhere, or they aren't being generated. In the first case, my question would be: Where are the diagnostic reports? In the latter, it would be: Why aren't there any (despite the system crashes)?
    (A similar question is to be found here: https://discussions.apple.com/message/24773940#24773940 , but ended with an open question. I'm starting a new thread, because this old one is marked as answered.)
    Thanks a lot.

    These are logs to help if a program crashes, or has other issues.
    If there are no issues, no logs are produced.
    See: http://support.apple.com/kb/ht4063
    Diagnostic and usage reports may include the following information:
    Details about application or system not responding, application unexpectedly quitting, or kernel panics
    Information about events on your computer (for example, whether a certain function, such as waking your computer, was successful or not)
    Usage information (for example, data about how you use Apple and third-party software, hardware, and services)
    Here's an example of one of my DiagnosticLogs:
    Process:         Preview [799]
    Path:            /Applications/Preview.app/Contents/MacOS/Preview
    Identifier:      com.apple.Preview
    Version:         7.0 (826)
    Build Info:      Preview-826000000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [159]
    Responsible:     Preview [799]
    User ID:         501
    Date/Time:       2014-02-13 20:34:49.464 -0500
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  1B59A7FC-F3E6-021D-3D42-C1AE03E74EA3
    Sleep/Wake UUID: 465C3455-1DE9-4244-9DFC-41A34BC596F5
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array'
    terminating with uncaught exception of type NSException
    abort() called

  • How to select multiple row in ALV report

    Hi friends,
    1. How to select multiple row in ALV report
                   ( How to set tab in ALV report and want to select multiple line.)
    Thanking you.
    Subash

    Hi Sahoo,
    If you are using the class CL_GUI_ALV_GRID. In methods SET_TABLE_FOR_FIRST_DISPLAY.
    in layout structure you will find field SEL_MODE
    pass :
    LS_LAYOUT-SEL_MODE = 'A'.
    In PAI.
      CALL METHOD GRID->GET_SELECTED_ROWS
        IMPORTING
          ET_INDEX_ROWS = T_ROWS
          ET_ROW_NO     = T_ROWID.
    Hope these will solve your problem.
    Regards,
    Kumar M.

  • How to Separate Existence Check / Details Information in an HGrid

    I need to display an HGrid that represents an employee hierarchy. In addition to the hierarchy I need to display columns in the HGrid result table that query data from tables outside of the tables that define the recursive hierarchy.
    I was able to get my HGrid to work with all the specified columns but to do so I integrated the information from those additional tables into my HGrid view objects.
    Unfortunately this is making my HGrid very slow to load initially because of the repeated queries (one for existence and one for retrieval of data) on the HGrid view objects and the queries against my additional tables are relatively intensive.
    Is there anyway to setup an HGrid such that you can define a view object and requisite view links to support defining the hierarchy and then a view object/link to support going after the detailed information such that the detailed query only executes once for each node? If so, how would I do that?
    If you need any other information please let me know.
    I'm on Oracle EBS 11.5.10

    Bump!

  • Information of Print Area is missing in VB6 Addin of version Excel 2007 and Excel 2010

    Hallo, 
    I have a problem with my old VB 6 COM Addin. My document has Print Area, but when I use my addin to open this document. The information of print area is lost. 
    This problem takes place only in the following situations.
    If the PrintArea is set in Excel 2007 and 2010, it will be missing. But in Excel 2003 without problem.
    From the code, the  ".ActiveSheet.PageSetup.printArea" is always empty, although when the print area is configurate in Excel 2007 and 2010
    What is the possible reason of this problem?
    Thanks very much.

    There are several things I don't follow in the details you gave
    "I click an excel document in the third-part program and Excel 2007 will be open automatically"
    - Describe the 3rd party program you open the workbook in if not Excel"
    - What do you mean by "click and Excel document", what do you click and where is the document
    - Why click on an Excel document (workbook, worksheet something else?) to get a 3rd party app to automate Excel, then does some other workbook load?
    It's very confusing!
    Did you try the code in VBA in the instance of the workbook whose sheet you want to return the Print Area
    Re: Excel Object Library is 9.0
    Did you set a reference to XL-9 in the test app with my code then transfer to a different system with 2007?
    However, a ref to xl-9 shouldn't be a problem if the code compiled with that ref. If the app/dll is transferred to a different system it will pick up the Excel GUID in that system, which is exactly the same for all versions since Excel97. The only time it
    would be an issue is if code compiled with a new object model is not supported when used with an older Excel object model.
    The fact my code appears to work without error returning the message "Print Area not defined" suggests it is referring to a different workbook, ie one in which the Print-Area has not been defined. Double check which workbook it is referring to,
    eg
    Private Sub cbPrintArea_Click(ByVal Ctrl As Office.CommandBarButton, _
    CancelDefault As Boolean)
    Dim ws As Excel.Worksheet
    Dim s As String, s2 As String
    On Error Resume Next
    s = xlApp.Caption
    If Err.Number Then
    MsgBox "xlApp error " & vbCr & Err.Description
    Exit Sub
    End If
    Set ws = xlApp.ActiveSheet
    s2 = ws.Parent.Name & vbCr & _
    ws.Name & vbCr & _
    ws.Range("A1").Value & vbCr
    If Err.Number > 0 Then
    MsgBox "failed to reference ActiveSheet"
    Else
    s = ws.PageSetup.PrintArea
    If Err.Number Then
    MsgBox Err.Description
    Else
    If Len(s) = 0 Then s = "Print Area not defined"
    MsgBox s2 & vbCr & s
    End If
    End If
    End Sub
    This should confirm the workbook name, activesheet name and value in A1 (before running maybe add the current time in A1 with ctrl-shift-;  in the same workbook as the print-area has been defined)
    Peter Thornton

  • What are the Dashboard reports in sap crm 7.0?

    Hi, Experts.
    Could you guide me what are the dashboard reports are in sap crm 7.0 related sales and marketing, service.if I want to modify existing report how can I do and where I need to do ? If I want to create new dashboard report is there any designing tools are there? How can I create custom dashboard report?
    After creating how we can link in web ui. I searched in forum but I didnu2019t find any information regarding this. Please kindly guide me. related to interactive reports how can i create  and how can link to web ui just provide sample inputs.
    Regards,
    Jemmi.

    Hi,
    For interactive CRM report, please try link
    http://help.sap.com/bp_crm70/BBLibrary/Documentation/C41_BB_ConfigGuide_EN_DE.doc
    On page of
    http://help.sap.com/bp_crm70/CRM_DE/HTML/index.htm
    you may find some other info related to BW analytics, maybe there is info for dashboard? I am not so sure.
    Hongyan

Maybe you are looking for

  • Error while loading the Hierarchy from R/3 to BI.

    Dear all , I am trying to load a hierarchy FROM R/3 to BI . When I am executing the Info package its showing an below Error. Hierarchy object is u201CWBS elementu201D The level of the node ID 01494179 does not suit the lev. of the higher lev. node Th

  • InDesign 5.5 constant crashing Lion (clean installation). Please help.

    I have been having a constant battle to get InDesign to work on my iMac since installing Lion. I have erased my hard disk twice to reinstall the system from scratch (installing Snow Leopard first, then Lion - all my Time Machine backups in SnowLeopar

  • Invoice number vs PO document number

    Hi Experts, Can any one explain me how to join the Invoice account number,PO document number and  dates of PO and invoice generated dates? I want to merge all these fields in one single table. So need some joining condition to merge all these fields.

  • Help... dont know what's the problem.. accessing another class

    (im new to java =c) well i have a file named accessfiles.java as my main page and i have another java file named try1.java i can access try1.java from accessfiles.java using a simple case..... but how come i cant return to accessfiles.java? is it wit

  • Fonts corrupted

    Fonts are embeded in Illustrator CS4,but afer conveting through indesign to PDF. Fonts are showing jung format. Plese check and advice