BW - Reporting - Combox Box

Hi,
I have the following BW reporting requirements
- say for example:- in my info cube there are 3 characteristics and 2 key figures
- there should be 3 combo box w.r.to 3 different characteristics
- check box to select key figures
- depend upon the above selection of characteristic, if say for example user is choosing char 1 and char 2 with 2 key figure, he can see the result in respective chart area.
Has any one handled this type of reporting..
Please help..
Cheers
Rajiv

Hi,
Data deletion is not needed in case of upgrade, the simple reason behind that is if you think of upgrading production system and deleting all the current data then situation will become very uncomfortable so don't worry about data and simply go for system upgrade.
Regards,
Durgesh.

Similar Messages

  • Convert seconds to [h]:mm:ss format on report text box

    I want to convert seconds to hh:mm:ss format on the report text box.
    I use =Format(Sum([MyTime])/(24*60*60),"hh:nn:ss"), but it does not work if the hours more than 24 hours, since the format is for  the time format for the day.
    I need the result shows more than 24 hours, because I want to show how many hours and minutes from my seconds value.
    I can use [h]:mm:ss for Excel that it gives me the total hours more than 24 hours.
    I tried to use the following to my text box
    Int((sum(MyTime)) / 3600) & Format(Int((sum(MyTime) / 60) Mod 60, "\:00") & Format(sum(MyTime) Mod 60, "\:00"),
    but for some reason it only shows seconds part without minute and hour part of the value.
    Your help and information is great appreciated,
    Regards,
    Souris,

    I want to convert seconds to hh:mm:ss format on the report text box.
    I use =Format(Sum([MyTime])/(24*60*60),"hh:nn:ss"), but it does not work if the hours more than 24 hours, since the format is for  the time format for the day.
    I need the result shows more than 24 hours, because I want to show how many hours and minutes from my seconds value.
    Hi sourises,
    You can use the next function. Place it in a general module.
    Function Sec_to_str(seconds)
    Dim uur As Integer
    Dim min As Integer
    Dim sec As Integer
    Dim cur_sec As Variant
    cur_sec = seconds
    If (IsNull(cur_sec)) Then
    Sec_to_str = Null
    Else
    sec = cur_sec Mod 60
    cur_sec = cur_sec \ 60
    min = cur_sec Mod 60
    cur_sec = cur_sec \ 60
    uur = cur_sec
    If (uur = 0) Then
    Sec_to_str = Format(min, "#0") & ":" & Format(sec, "00")
    Else
    Sec_to_str = Format(uur, "#0") & ":" & Format(min, "00") & ":" & Format(sec, "00")
    End If
    End If
    End Function
    Imb.

  • How to modify the "To Print" Steps in the Print the Report Dialog box

    From the Crystal Reports Viewer Toolbar, when selecting the Print option,
    a 'Print the Report' Dialog box opens. Is it possible to modify the 'To Print' steps?
    We tried modifying  (commenting-out the To Print steps) in strings_en.js and export.js, but
    when running, the changes do not show up.
    We are using Crystal Reports for Visual Studio 2008, Crystal Reports Viewer Version=10.5.3700.0
    Thank you.

    A warning 1st. Modifying the export.js file is not supported and may lead to all kinds of issues. Also, as soon as somebody else installs an app on that machine, the js files will get overwritten and thus removing your changes.
    Second, I do not think the print dialog is defined in a JS file. In CR 10 I think we built our own print dialog and there is no control over it (e.g.; no exposed APIs).
    I think your best bet will be to create a printer dialog as per your requirements and  launch it from your our own print button.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Re-show the FPGA Successful Compile Report dialog box

    Hi, everyone,
    Could anyone tell me how to re-show the FPGA Successful Compile Report dialog box?
    I clicked the check box "do not show this massage in the future" on the dialog
    It won't show up anymore
    I need to know the accurate onboard clock rates on my FPGA.
    so the "Target specific properties" can not satisfied me...
    Is there anyone know how to solve this question? ~~Thank you

    To reenable the compile report you must modify LabVIEW's INI file. Make sure the line nirviShowCompileReport=TRUE exists in the ini file. Let us know how that works out!
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • Combox Box date format

    In combox box, the labels are mapped to date format cells, when I change the insertion type to Filtered rows then the date is no more displayed in date format. It is displayed as a number. If the insetion type is other than filtered rows then it is displaying correctly.
    How can I sort out this problem.........
    Thanks in advance

    Siva,
    Goto properties of Combo Box component:
    Appearance-->Text >Click Labels>Number format
    Change the number format to Date
    -Anil

  • Crystal Report dialog box issues

    I am very new at .NET, and this is my second post to this forum.
    I've created a Crystal Report within a project using Visual Studio 2005 Professional Edition, on a Windows XP machine.
    The report is handled by a CrystalReportViewer, which has its ReportSource set to the report.
    Via a dialog box, the report asks for a signon and password for a SQL Server database.  Then, via a second dialog box, it prompts for a parameter required by the report.
    All of this works ok, but I have two issues:
    1) I would like to set the database signon and password so that the user doesn't have to enter them each time he runs the report.
    2) If the Cancel button is clicked on any of the dialog boxes, it renders the report unusable until I shut down the application and reopen it.
    I have looked online for two days, but have not been able to find a solution to these above problems.  It is probably simple, but I'm not seeing it.
    I am attaching the relevant code for the button that runs the report.
        Private Sub cmdChecks_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdChecks.Click
                CrystalReportViewer2.DisplayToolbar = True
                CrystalReportViewer2.Visible = True
                CrystalReportViewer2.Height = 600
                CrystalReportViewer2.Width = 1000
                CrystalReportViewer2.Left = 10
        End Sub
    Can anybody help me with this?
    Thank you!

    Hi,
    I would like you to know the code of the logon based on the object models-
    If you are using the ConnectionInfo then use the below code:-
    //For web application
    ConnectionInfo crConnection = new ConnectionInfo();
    // Connection Information
    crConnection.ServerName="D-2818-W2K";
    crConnection.DatabaseName="Northwind";
    crConnection.UserID="sa";
    crConnection.Password="sa";
    crReport.Load(Server.MapPath("CrystalReport1.rpt"));
    Tables crTables=crReport.Database.Tables;
    foreach(CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
              TableLogOnInfo crTLOI = crTable.LogOnInfo;
              crTLOI.ConnectionInfo=crConnection;
              crTable.ApplyLogOnInfo(crTLOI);
              crTable.Location=crTable.Location;// for multiple table selection
    CrystalReportViewer1.ReportSource=crReport;
    ====================================================================================
    //For desktop application
    ConnectionInfo crConnection = new ConnectionInfo();
    // Connection Information
    crConnection.ServerName="D-2818-W2K";
    crConnection.DatabaseName="Northwind";
    crConnection.UserID="sa";
    crConnection.Password="sa";
    crReport.Load(Application.StartupPath + "//CrystalReport1.rpt");
    Tables crTables=crReport.Database.Tables;
    foreach(CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
              TableLogOnInfo crTLOI = crTable.LogOnInfo;
              crTLOI.ConnectionInfo=crConnection;
              crTable.ApplyLogOnInfo(crTLOI);
              crTable.Location=crTable.Location;// for multiple table selection
    CrystalReportViewer1.ReportSource=crReport;
    =====================================================================================
    If using ReportDocument object model
    //For web application
    ReportDocument crReport= new ReportDocument();
    crReport.Load(Server.MapPath("CrystalReport1.rpt"));
    crReport.SetDatabaseLogon("sa","sa");
    CrystalReportViewer1.ReportSource =crReport;
    =====================================================================================
    //For desktop application
    ReportDocument crReport= new ReportDocument();
    crReport.Load(Application.StartupPath + "//CrystalReport1.rpt");
    crReport.SetDatabaseLogon("sa","sa");
    CrystalReportViewer1.ReportSource =crReport;
    To download sample code click [here|https://boc.sdn.sap.com/codesamples].
    You can also take help from [Dev library|https://www.sdn.sap.com/irj/boc/sdklibrary]
    Hope this helps!!
    Regards
    Amit

  • Crystal Reports Image box does not display images.

    Post Author: xbhavesh
    CA Forum: .NET
    i have CR report which has a Imagebox to display images from db table. i am storing the images in a table as path. in my dev machine when i load the .aspx page with the crystal report it shows the image in the box but when i run it from the web server the image does not show.
    even from the .rpt file i get the image and all data.
    anyone know how can i get this working?
    the images are stored in a mapped network drive and the version of cr is XI R2.

    Please post to Business One forum

  • Crystal Report Lines / Boxes not show in Excel

    In Crystal Report 2008, I created a report with lines and boxes inserted. I then imported into SAP B1 8.8. The report looks fine in crystal report viewer with all the correct formatting. I exported the report as Ms Excel (with formatting).
    After exported to Excel, the report looks fine for the most part but all the lines and boxes are not showing at all. I went back to CR designer and tried to mofify the format of the lines / boxes but they still not showing in Excel. is there any way to fix the display of those boxes and lines?

    Hi,
    Format like lines/Boxes cannot be exported. If you want the exact layout, print to PDF file may be your only option.
    Thanks,
    Gordon

  • How to make a column in interactive report dropdown box

    Hi Friends,
    In simple reports we are having one option to make a column as a dropdown box.Is there any such option in
    interactive reports.Please help,
    Thanks,
    Nav

    Hi Nav,
    You can create a lov using the APEX_ITEM.SELECT_LIST in report query. http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/apex_item.htm#insertedID12
    For e.g.
    http://apex.oracle.com/pls/otn/f?p=50942:63
    Thanks,
    Manish

  • Reports - Check Boxes

    Hi All,
    I'm not getting idea how to approach this requirement.
    My requirement is
    I have one report with check box for each record output in the list.
    Here in this report i'll check i.e. put tick mark in the check box, then the checked list of records should be written to the other report.
    Can you please let me know the solution.
    Jeevi.

    report Ztest no standard page heading.
    data: imara type table of mara with header line.
    data: check_box(1) type c,
          report_lines type i.
    start-of-selection.
    * Create the gui status with BACK button in standard place
    * and a READ button in the application toolbar
      set pf-status 'CHECK'.
      select * into corresponding fields of table imara
               from mara up to 100 rows.
      loop at imara.
        write:/ check_box as checkbox, imara-matnr, imara-matkl.
        hide imara-matnr.
      endloop.
      report_lines  = sy-linno - 1.
    top-of-page.
      write: 'List of materials'.
      uline.
    top-of-page during line-selection.
      write:  'Material.....'.
      uline.
    at user-command.
      case sy-ucomm.
        when 'READ'.
          check_box = space.
          set pf-status 'CHECK' excluding 'READ'.
          do report_lines times.
            read line sy-index field value check_box.
            if check_box = 'X'.
              write:/  'You have selected material', imara-matnr.
            endif.
          enddo.
      endcase.
    DEMO_LIST_READ_LINE
    refer this code if u want furtehr help.
    END-OF-SELECTION.
      lines = sy-linno - 1.
    SET PF-STATUS 'ZSTATUS'.
    AT USER-COMMAND.
          wa_output-cb = space.
          SET PF-STATUS 'ZSTATUS' EXCLUDING 'SAVE'.
          DO lines TIMES.
            READ LINE sy-index FIELD VALUE wa_output-cb.
              IF wa_output-cb = 'X'.
            MODIFY i_output  FROM wa_output INDEX sy-tabix TRANSPORTING cb.
            ENDIF.
          ENDDO.
    CASE sy-ucomm.
    WHEN 'SAVE'.
    *      DELETE i_output WHERE cb = 'X'.
       LOOP AT i_output WHERE cb = 'X'.
        MOVE i_output TO i_fina.
       APPEND i_final.
       ENDLOOP.
      ULINE.
      FORMAT INTENSIFIED OFF.
      FORMAT COLOR COL_HEADING.
      WRITE:/001 'CB' ,
             003 'Material No',
             015 'Mat type',
             024 'Mat group'.
      FORMAT COLOR OFF.
      FORMAT INTENSIFIED ON.
      ULINE.
      IF NOT i_output[] IS INITIAL.
        LOOP AT i_output INTO wa_output.
          WRITE:/001 wa_output-cb AS checkbox,
                 003 wa_output-matnr,
                 015 wa_output-mtart,
                 024 wa_output-matkl.
          CLEAR wa_output.
        ENDLOOP.
      ENDIF.
    WHEN 'BACK'.
    LEAVE SCREEN.
    ENDCASE.

  • Crystal Reports - check boxes on forms

    Does anyone know if it is possible to embed check boxes ( ticked or crossed based on True / False values) in Crystal Reports?
    I have a large number of forms to develop which use Yes / No values in UDF's and I want to display tick or cross in check boxes based on these values!
    Thanks

    Somewhat 1 year ago I issued a iTar on that,
    is a known bug that is apparently not worsewhile to fix.
    cu

  • Trouble automatically emailing reports from BOXI

    I am running BOXI R3 on a Linux cluster.  The cluster has 8 nodes.
    I want to schedule Webi Document reports to run automatically and email them (as excel files) to certain recipients.
    I provisioned the Adaptive job servers with the email server info.  I also provisioned the Destination Job Server with the same email server info. 
    10.25.255.5 is the email server I defined in the job servers.
    I scheduled a report to run and deliver via email to two recipients.   At the option of using u201CUse the Job Server's defaultsu201D u2013 I uncheck that and manually enter the email addresses of the recipients. 
    The status showed failed and gave this info:
    *Error Message: server error. [Error initializing SMTP server. Return code: http://TCP send failed.. Reason: 10.25.155.5:25].: http://CrystalEnterprise.Smtp*
    Any thoughts you may have would be appreciated.
    Other info that was given:
    Title: SMS Delivery Success Rate
    Document Type: Microsoft Excel
    Status Failed
    External Destination: Mail the instance to: "email-address-1" and carbon copy the instance to: "email-address-2" with a subject of: "SMS Delivery Success Rate" .
    Owner: sprintuser
    Creation Time: 3/5/2010 2:41 PM
    Start Time: 3/5/2010 2:44 PM
    End Time: 3/5/2010 2:44 PM
    Server Used: qusrea12.AdaptiveJobServer
    Parent Object Path: SMS Standard Report Pack/
    Remote Instance in Federated Cluster: No
    Formats: Microsoft Excel
    Parameters: 2/1/2010;2/28/2010;
    Error Message: server error. [Error initializing SMTP server. Return code: http://TCP send failed.. Reason: 10.25.155.5:25].: http://CrystalEnterprise.Smtp
    Thanks for any help.
    Jeff

    Thanks for the input.
    i checked and can manually initiate a connection from the boxi server to the email server (10.25.155.5 port 25).
    I do have another question.  When provisioning the destinations in the Adaptive Job Server and Destination Job Server - is it mandatory to have something in the DOMAIN field?  At present I do not.  I only have something in the HOST field (the smtp server ip address).
    Thanks

  • SSRS Drill through report - Text Box Properties, Action - Go to Report

    Apologies for the potentially very basic nature of my question, I am fairly new to using SSRS (using SQL Express 2014) and struggling with creating a drill through report using other reports.  Where the problem is, is when I go to the Text Box
    Properties - Action - Go To Report.  Where it says to specify a report, I click on Browse and it only allows me to look in 'Recent Sites and Servers' - I therefore cannot navigate to where my other report that I wish to link is stored.  What am I
    missing? Any suggestions appreciated. Thank you

    If you dont have the report to which you need to navigate within the same project, you should be using jump to URL option and specify full report server url of the second report with only parameter part replaced by the actual field from which you need to
    pass the value
    Another way is to create a linked report for the report to which you need to navigate within the same project  as your first report and then use jump to report option to include the linked report along with its parameters and corresponding values.
    http://www.mssqltips.com/sqlservertip/2308/sql-server-reporting-services-linked-reports-example/
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Crstal report printing box like font when direct printng in firefox 23.0.1

    I am using Firefox 23.0.1 version and my crystal report direct printing by clicking the print button printing box like fonts but before this version it print well .As the same report is printing in the IE it is printing well.So question is that what update in firefox 23.0.1 makes this crystal report printing error.Has anyone a proper solution ?

    Did you change the character encoding for Firefox? If you are getting what looks like empty boxes instead of letters, it usually means that the character codes being used are not recognized by the font being used. It could also be that the font is corrupted. Did you check the font that you want to use?

  • Version 22 operating on Windows XP continuously crashes; CPU surges and can not see the Firefox Health Report (all boxes checked and share data on)???

    Not sure how much clearer I can be.
    Windows XP version 5.1 with Service Pack 3
    Firefox Version 22
    Can not view Firefox Health Report even thou all selections are made for this to happen
    I share data with Mozilla

    If Firefox is crashing we need the Crash IDs that are obtainable from ''about:crashes''. The crash IDs start with ''bp-''
    Standard reply:
    We're sorry to hear that Firefox is crashing. In order to assist you better, please follow the steps below to provide us crash ID's to help us learn more about your crash.
    #Enter about:crashes in the address bar (that's where you enter your website URL) and press Enter. You should now see a list of submitted crash reports.
    #Copy the 5 most recent crash ID's that you see in the crash report window and paste them into your response here.
    Thank you for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes]] article.

Maybe you are looking for

  • No SMS send or receive ability after updating 3GS to ios5

    Synced up my husband's iPhone 3Gs this past Sunday night for the first time ever to update it from ios 4.1 to ios 5.  Since then, he has been unable to send or receive ANY text messages.  I tried a backup and restore last night and was able to get ON

  • How can I hide data when crossing 3 dimensions?

    I want to hide data when every member of Dimension B or C is crossed with every member of the dimension A This script hide data for all possible combinations except between Dimension A and dimension C scope(descendants([DimA].[DimA].[DimA Level 2].Me

  • ADO Error: an insufficient number of arguments....

    Im currently using Access 2000 which is connected to a SQL database. I have a query (Or View) that runs every month. The problem i had was i had to manually make some changes every month to get to the data i needed so i changed this View into a Funct

  • ReturnToPortal redirection issue?

    I am using WCI 10.3 (Java) and using the API to call portletResponse.returnToPortal() after performing an action in a portlet on a community page. When this happens, it forwards back to the community home URL instead of the community page URL. Has an

  • Tuning_learn

    hi experts ! i wanted to learn tuning and internal concepts of memory and IO in oracle. can u give me any useful URL to understand the tuning wait events easily ?