Display specific report part

Hi Experts,
I am using the Crystal Reports Server V1 trial version. I want to display Xcelsius Dashboards through InfoView. Because the add-function for flash (swf) files isnt avaiable I choose the option to insert my swf files into Crystal Reports and add this to the Server.
When I create my Dashboard with the Dashboard Builder there are my Reports with the standard frame. But I only want to display the flash file. I thought that I can use the display specific report part function in Crystal Reports. So I defined it for the flash object and in InfoView I select the option too, but nothing happens.
Does somebody know how to use this function correctly?
Regards
Jan

hello,
if you have already defined your flash object as the default report part in the crystal reports > file > report settings then:
1) in infoview in your dashboard open corportate analytics and drag your report over
2) edit this analytic to use the parts viewer
3) ensure that you select on demand
4) select default report part
i have tested this on the cr server v1 and it works aok.
jamie

Similar Messages

  • Displaying WebI report parts via openDocument in BI 4.1 SP 3 Update

    1) We are using SAP BO 4.1 SP3 Update version.
    2) We have a requirement to display PARTS of webi report which has prompts as well.
    3) We referred the Opendocument PDF and used the below functionality to get what we need:
    sRefresh=Y&mode=part&sReportPart=UIREF:RID=1:BID=1
    The problem with this is we have a Prompt X which has a value say  A B C.
    So our final URL would be:
    http://[servername]:[port]/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=[CUID of WebI doc]&lsSX=A B C&mode=part&sReportPart=[Reference to the report part to be shown].
    4) Our problem is that if we pass parameters in Prompt X which has a SPACE (Like we have in A B C) the functionality goes for a toss. Also if we pass Dates like 01/01/2012-12/31/2012, the function doesnt work.
    5) This is the problem with VIEWING PARTS OF WEBI report only. Works fine if we wanna view full report.
    6) Is it a known issue ?

    Hi Ankit,
    For special characters like space, colon you have to use ASCII characters in URL. For e.g. if you want to write prompt as
    Enter Year:
    then it should be like :
    Enter%20Year%3A
    Please refer page 9 of below document :
    https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&ved=0CD4QFjAD&url=http%3A%2F%2Fwww.pieterverstraeten.com…
    Cheers
    Sahil

  • Font not displaying on Reports Output (RHEL 5) for 10g

    Hi, I know I've posted a question in the past about a font not displaying on Report Output for my Arial, Arial Narrow, and Courier New fonts. I worked with Oracle Support and found that Metalink Note#261879.1 fixed my problem with those 3 fonts. I ran the scripts and now that part works great.
    However, I have one font "ARIALUNI.TTF" that will not work. This is out specific barcode font we use. I've pushed it on Linux from my Windows by pushing it as a binary file to the ORACLE_HOME/guicommon/tk/admin/TTF directory. I even put it in the directory for TTF on Metalink Notoe 261829.1 and let it create the files, but it still doesn't find it when I ran a report that uses this font.
    I tried using font subsetting via the uiprint.ali and make a reference but it still doesn't seem to work.
    Is there something I'm missing that would cause any of these not to work. I thought maybe some files had to be created under the guicommon/tk/admin/AFM file directory but I'm not sure.
    I just want to have my 2 or 3 reports that use this barcode to work. Once I get them, I'm done and all my font issues are resolved. Any help is appreciated.
    Chris

    They are probably a very old Type 1 font. Try checking the dates on the font files. Your best bet would be to get the OpenType versions of those fonts and install them.

  • I want to display specific line to be color in alvlist how

    i want to display specific line to be color in alvlist
    i write the code as follows here document type is initial. then that line is to be
    appeared as color line but problem is initially it is appeared correct later i moved to next previous screens  error lines are to be colored where i have to clear 
      loop at it_doclist where blart eq space.
          gt_layout-info_fieldname  = 'COLOR_LINE'.
          it_doclist-color_line = 'C600'.
          modify it_doclist .
          clear:it_doclist.
      endloop.
    please help me exactly
    Thanks
    Ramana reddy

    u r requiremnt is not clear...but any how check this code....
    it has a form for assigning colors....
    rewardif useful
    REPORT zppb001_prd_posting_upload
           NO STANDARD PAGE HEADING LINE-SIZE 255
           MESSAGE-ID zpp.
    INCLUDE bdcrecx1.
    TYPE-POOLS  :slis.
    DATA:   wk_success(5) TYPE c,     "To store the successfull Hits
            wk_failure(5) TYPE c,     "To store the failed Hits
            l_mstring(600),           "To store Message texts
            t_date TYPE zservice_date,"To store Uploaded Date
            wk_lines(5) TYPE c,       "To store No of Records
            lines(5) TYPE c,          "To store No of Records
            wk_len(150) TYPE c,       "To store File path
            wk_alp TYPE i,            "To store path length
            lent TYPE i,              "To store path length
            b(4).                     "To store File extension
    DATA:   alvfld TYPE slis_t_fieldcat_alv WITH HEADER LINE,
            v_events TYPE slis_t_event WITH HEADER LINE,
            wk_events LIKE LINE OF v_events,
            it_list_comments TYPE slis_t_listheader,
            wk_list_comments LIKE LINE OF it_list_comments,
            wk_layout TYPE slis_layout_alv.
    CONSTANTS: c_formname_top_of_page TYPE slis_formname
                                   VALUE 'F_TOP_OF_PAGE'.
    --TO STORE FINAL DATA TO BE POSTED--
    Generated data section with specific formatting - DO NOT CHANGE  ***
    DATA: BEGIN OF record OCCURS 0,
            budat_002(010),
            bktxt_004(025),
            matnr_005(018),
            werks_006(004),
            alort_007(004),
            erfmg_008(017),
          END OF record.
    End generated data section ***
    DATA: BEGIN OF messages OCCURS 0,       "TO STORE FINAL STATUS DISPLAY
           budat_002(010),
           bktxt_004(025),
           matnr_005(018),
           maktx TYPE makt-maktx,
           werks_006(004),
           alort_007(004),
           erfmg_008(017),
           msg_e(400),
           msg_s(600),
           msgtyp TYPE c,
           line_color(4),
          END OF messages.
    DATA: BEGIN OF st_record1 ,
           matnr_005(018),
           werks_006(004),
           budat_002(010),
           bktxt_004(025),
           erfmg_007(017),
           erfmg_008(017),
           alort_007(004),
          END OF st_record1.
    DEFINE alv_macro.
      move : &1 to alvfld-col_pos,
             &2 to alvfld-fieldname,
             &3 to alvfld-seltext_m.
      if &2 = 'MATNR_005' or &2 = 'MAKTX'.
        alvfld-fix_column = 'X'.
      endif.
      append alvfld.clear alvfld.
    END-OF-DEFINITION.
    DATA : record1 LIKE TABLE OF st_record1 WITH HEADER LINE,
           it_excel LIKE TABLE OF alsmex_tabline WITH HEADER LINE,
           messtab1 LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE,
           it_acc LIKE TABLE OF record WITH HEADER LINE,
           it_rej LIKE TABLE OF record WITH HEADER LINE.
    SELECTION-SCREEN SKIP 1.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-002.
    PARAMETERS: p_file TYPE localfile OBLIGATORY .
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          static    = 'X'
        CHANGING
          file_name = p_file.
    AT SELECTION-SCREEN ON p_file.
      wk_len = p_file.
      CONDENSE wk_len NO-GAPS.
      lent = STRLEN( wk_len ).
      wk_alp = lent - 4.
      b = wk_len+wk_alp(lent).
      IF ( b NE '.txt' ) AND ( b NE '.xls' ).
        MESSAGE e939.
        CLEAR p_file.
        STOP.
      ENDIF.
    START-OF-SELECTION.
      PERFORM upload_fun.
      PERFORM open_group.
      PERFORM fill_bdc_table.
      PERFORM close_group.
      PERFORM assign_colors.
      PERFORM f_event_build.
      SORT messages BY matnr_005 ASCENDING.
      PERFORM assign_columns.
      PERFORM count.
      IF ctu = 'X'.
        PERFORM alv.
      ENDIF.
      FREE:messages,messtab1,record1.
    END-OF-SELECTION.
    --FORM UPLOAD_FUN--
    FORM upload_fun.
    REFRESH: record1, it_acc, it_rej, record, messages, messtab1, it_excel.
      PERFORM fetch_from_flat_file.
      CLEAR it_excel.
      DESCRIBE TABLE it_excel.
      IF sy-tfill = 0.
        MESSAGE i937. STOP.
      ENDIF.
      LOOP AT it_excel.
        CASE it_excel-col.
          WHEN '0001'. MOVE: it_excel-value TO record1-matnr_005.
          WHEN '0002'. MOVE: it_excel-value TO record1-werks_006.
          WHEN '0003'. MOVE: it_excel-value TO record1-budat_002.
          WHEN '0004'. MOVE: it_excel-value TO record1-bktxt_004.
          WHEN '0005'. MOVE: it_excel-value TO record1-erfmg_007.
          WHEN '0006'. MOVE: it_excel-value TO record1-erfmg_008.
          WHEN '0007'. MOVE: it_excel-value TO record1-alort_007.
        ENDCASE.
        AT END OF row.
          APPEND record1. CLEAR record1.
        ENDAT.
      ENDLOOP.
      DELETE record1 WHERE matnr_005 EQ ' '.
    --DO NOT UPLOAD WHERE PRD QTY = 0--
      DELETE record1 WHERE ( erfmg_007 = 0 OR erfmg_007 = ' ' )
                      AND  ( erfmg_008 = 0 OR erfmg_008 = ' ' ).
      DESCRIBE TABLE record1[].
      IF sy-tfill > 0.
    --MOVE ACCEPTED QTY AND FETCH THE RESPECTIVE STGLOC-**
        LOOP AT record1 WHERE erfmg_007 NE 0 AND erfmg_007 NE ' '.
          MOVE:    record1-budat_002 TO it_acc-budat_002,
                   record1-bktxt_004 TO it_acc-bktxt_004,
                   record1-matnr_005 TO it_acc-matnr_005,
                   record1-werks_006 TO it_acc-werks_006,
                   record1-erfmg_007 TO it_acc-erfmg_008.
          APPEND it_acc. CLEAR: it_acc,record1.
        ENDLOOP.
    --MOVE ELPRO FOR THE ACCEPTED ENTRIES--
        LOOP AT it_acc.
          SELECT SINGLE elpro INTO it_acc-alort_007
                                            FROM mkal CLIENT SPECIFIED
                                            WHERE mandt = sy-mandt
                                            AND matnr = it_acc-matnr_005
                                            AND werks = it_acc-werks_006.
          MODIFY it_acc TRANSPORTING alort_007. CLEAR: it_acc.
        ENDLOOP.
    --MOVE PRD QTY FOR REJECTED QTY--
        LOOP AT record1 WHERE erfmg_008 NE 0 AND erfmg_008 NE ' '.
          MOVE: record1-budat_002 TO it_rej-budat_002,
                record1-bktxt_004 TO it_rej-bktxt_004,
                record1-matnr_005 TO it_rej-matnr_005,
                record1-werks_006 TO it_rej-werks_006,
                record1-erfmg_008 TO it_rej-erfmg_008,
                record1-alort_007 TO it_rej-alort_007.
          APPEND it_rej. CLEAR: it_rej, record1.
        ENDLOOP.
    --MOVE ACCEPTED AND REJECTED READINGS TO FINAL TABLE
        APPEND LINES OF it_acc TO record. APPEND LINES OF it_rej TO record.
        FREE : it_rej, it_acc, record1.
      ELSE.
        MESSAGE i937.
        STOP.
      ENDIF.
    ENDFORM.                    " UPLOAD_FUN
    --FORM fill_bdc_table--
    FORM fill_bdc_table.
      IF NOT record[] IS INITIAL.
        LOOP AT record.
          PERFORM bdc_dynpro USING 'SAPLBARM' '0800'.
          PERFORM bdc_field  USING 'BDC_CURSOR' 'RM61B-BKTXT'.
          PERFORM bdc_field  USING 'BDC_OKCODE' '=ISTDA'.
          PERFORM bdc_field  USING 'RM61B-BUDAT' record-budat_002.
          PERFORM bdc_field  USING 'RM61B-BKTXT' record-bktxt_004.
          PERFORM bdc_field  USING 'RM61B-MATNR' record-matnr_005.
          PERFORM bdc_field  USING 'RM61B-WERKS' record-werks_006.
          PERFORM bdc_field  USING 'RM61B-ALORT' record-alort_007.
          PERFORM bdc_field  USING 'RM61B-ERFMG' record-erfmg_008.
          PERFORM bdc_dynpro USING 'SAPLCOWB' '0130'.
          PERFORM bdc_field  USING 'BDC_OKCODE' '=WEIT'.
          PERFORM bdc_field  USING 'BDC_CURSOR' 'G_COWB_HEADER-MNGTXT'.
          PERFORM bdc_transaction USING 'MFBF'.
          CLEAR messtab.
          messtab1[] = messtab[].
          LOOP AT messtab1 WHERE msgtyp = 'S' OR msgtyp = 'E'.
            SELECT SINGLE * FROM t100 WHERE sprsl = messtab1-msgspra
                                      AND   arbgb = messtab1-msgid
                                      AND   msgnr = messtab1-msgnr.
            IF sy-subrc = 0.
              l_mstring = t100-text.
              PERFORM store_messages.
              CLEAR l_mstring.
            ENDIF.
          ENDLOOP.
          MOVE-CORRESPONDING record TO messages.
         SELECT SINGLE maktx INTO messages-maktx FROM makt CLIENT SPECIFIED
                                                 WHERE mandt = sy-mandt
                                              AND matnr = messages-matnr_005
                                              AND spras = 'EN'.
          APPEND messages.
          CLEAR: messages, messtab1. REFRESH messtab1.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    "fill_bdc_table
    --FORM assign_columns--
    FORM assign_columns .
      REFRESH alvfld.
      alv_macro '1' 'MATNR_005' 'PART NO'.
      alv_macro '2' 'MAKTX' 'DESCRIPTION'.
      alv_macro '3' 'WERKS_006' 'PLANT'.
      alv_macro '4' 'BUDAT_002' 'POSTING DATE'.
      alv_macro '5' 'BKTXT_004' 'SHIFT'.
      alv_macro '6' 'ERFMG_008' 'QUANTITY'.
      alv_macro '7' 'ALORT_007' 'STGLOC'.
      alv_macro '8' 'MSG_E' 'ERRORS DUE TO'.
      alv_macro '9' 'MSG_S' 'STATUS'.
    ENDFORM.                    " assign_columns
    --FORM f_event_build--
    FORM f_event_build .
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type = 0
        IMPORTING
          et_events   = v_events[].
      READ TABLE v_events WITH KEY name = slis_ev_top_of_page
                                               INTO wk_events.
      wk_layout-info_fieldname = 'LINE_COLOR'.
      wk_layout-colwidth_optimize    = 'X'.
      IF sy-subrc = 0.
        MOVE c_formname_top_of_page TO wk_events-form.
        MODIFY v_events FROM wk_events INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " f_event_build
    --FORM f_top_of_page--
    FORM f_top_of_page.
      WRITE sy-datum TO t_date.
      CLEAR: it_list_comments[].
      wk_list_comments-typ  = 'H'. "H=Header, S=Selection, A=Action
      wk_list_comments-key  = ''.
    CONCATENATE 'UPLOADED STATUS FOR PRODUCTION POSTING ON - ' t_date INTO
                                 wk_list_comments-info SEPARATED BY space.
      APPEND wk_list_comments TO it_list_comments.
      CLEAR wk_list_comments.
      DESCRIBE TABLE messages LINES wk_lines.
      lines = wk_lines.
      wk_list_comments-typ  = 'S'. "H=Header, S=Selection, A=Action
      wk_list_comments-key  = ''.
      CONCATENATE 'Total No of Hits:' lines INTO wk_list_comments-info
                                                      SEPARATED BY space.
      APPEND wk_list_comments TO it_list_comments.
      CLEAR wk_list_comments.
      wk_list_comments-typ  = 'S'. "H=Header, S=Selection, A=Action
      wk_list_comments-key  = ''.
      CONCATENATE 'Successfull Hits:' wk_success INTO
                wk_list_comments-info SEPARATED BY space.
      APPEND wk_list_comments TO it_list_comments.
      CLEAR wk_list_comments.
      wk_list_comments-typ  = 'S'. "H=Header, S=Selection, A=Action
      wk_list_comments-key  = ''.
      CONCATENATE '    Failed Hits:' '   ' wk_failure INTO
                              wk_list_comments-info
                              SEPARATED BY space.
      APPEND wk_list_comments TO it_list_comments.
      CLEAR wk_list_comments.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          i_logo             = 'ENJOYSAP_LOGO'
          it_list_commentary = it_list_comments.
    ENDFORM.                    "F_TOP_OF_PAGE
    --FORM assign_colors--
    FORM assign_colors .
      LOOP AT messages.
        CASE messages-msgtyp.
          WHEN 'E'.
            messages-line_color = 'C601'.
          WHEN 'S'.
            messages-line_color = 'C501'.
        ENDCASE.
        MODIFY messages TRANSPORTING line_color.
      ENDLOOP.
    ENDFORM.                    " assign_colors
    --FORM COUNT--
    FORM count .
      CLEAR: wk_failure, wk_success.
      LOOP AT messages.
        CASE messages-msgtyp.
          WHEN 'E'.
            ADD 1 TO wk_failure.
          WHEN 'S'.
            ADD 1 TO wk_success.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    " COUNT
    --FORM ALV--
    FORM alv .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = sy-repid
          is_layout          = wk_layout
          it_fieldcat        = alvfld[]
          it_events          = v_events[]
        TABLES
          t_outtab           = messages
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
    ENDFORM.                    " ALV
    --FETCH_FROM_FLAT_FILE--
    FORM fetch_from_flat_file .
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = p_file
          i_begin_col             = 1 "From 1st Column
          i_begin_row             = 2 "From 2nd row
          i_end_col               = 7 "Till 7th Column
          i_end_row               = 65000 "Till Row
        TABLES
          intern                  = it_excel
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
    ENDFORM.                    " FETCH_FROM_FLAT_FILE
    --FORM STORE_MESSAGES--
    FORM store_messages.
      IF l_mstring CS '&1'.
        REPLACE '&1' WITH messtab1-msgv1 INTO l_mstring.
        REPLACE '&2' WITH messtab1-msgv2 INTO l_mstring.
        REPLACE '&3' WITH messtab1-msgv3 INTO l_mstring.
        REPLACE '&4' WITH messtab1-msgv4 INTO l_mstring.
      ELSE.
        REPLACE '&' WITH messtab1-msgv1 INTO l_mstring.
        REPLACE '&' WITH messtab1-msgv2 INTO l_mstring.
        REPLACE '&' WITH messtab1-msgv3 INTO l_mstring.
        REPLACE '&' WITH messtab1-msgv4 INTO l_mstring.
      ENDIF.
      CONDENSE l_mstring.
      IF messtab1-msgtyp = 'E'.
    CONCATENATE messages-msg_s l_mstring INTO l_mstring SEPARATED BY space.
        MOVE l_mstring TO messages-msg_e.
        MOVE 'E' TO messages-msgtyp.
        MOVE 'Document Not Posted' TO messages-msg_s.
      ELSEIF messtab1-msgtyp = 'S'.
    CONCATENATE messages-msg_s l_mstring INTO l_mstring SEPARATED BY space.
        MOVE l_mstring TO messages-msg_s.
        MOVE 'S' TO messages-msgtyp.
      ENDIF.
    ENDFORM.                    " store_messages

  • How to display multiple reports at the same time

    Hi,
    I'm trying to display multiple reports at the same time, each one in separates tabs or windows using Forms 11g 11.1.1.6
    I have a button which has a call to a procedure which makes use of rp2rro library to show the specific reports, for example:
    call_report('report1');
    call_report('report2');
    call_report('report3');
    call_report('report4');
    The main problem is that, just the last report is been displayed.
    Is there some way to display report1, report2 etc in separate tabs or windows ??
    Regards
    Carlos

    You shouldn't have a problem calling different reports at once. As long as you're using Forms 11g they show up in different windows.
    The question is how you are calling the report.
    Here is how I manipulate it.
    After I pass parameters with the ADD_PARAMETER built-in I set some key values (destype, desformat, desname) with the RP2RRO's procedures.
    Finally calling RP2RRO.RP2RRO_RUN_PRODUCT and then WEB.SHOW_DOCUMENT passing the correct procedure parameters the report comes up in a window. If you repeat the above changing the appropriate variables (the report_name in the RP2RRO_RUN_PRODUCT and so on) you can get multiple reports in different windows.

  • How to display a report in CrystalReportViewer when report is a Shortcut

    Hello,
    In BusinessObjects Enterprise XI R2, we have a shortcut to a report since we don't want to give a particular group of users access to the original folder. However, my objective is to display the "shortcut" report in a .NET web application.
    What I'm running into seems to basically be permissions errors when setting the ReportSource of the CrystalReportViewer to the ID of the shortcut. In InfoView, the same user can click the shortcut and the report comes up with no problems.
    So my question is how do I display this report in my application's viewer and still honor the privs of the shortcut, and of not the original report?
    Partial code listing...
    ' load the report
    Dim reportId As String = Me.SessionState.ReportId
    myReportViewer.ReportSource = MyInfoStoreManager.GetReportSource(myEnterpriseSession, reportId)
    myReportViewer.EnterpriseLogon = myEnterpriseSession
    The relevant code in the GetReportSource method is below...
    ' retrieve the report from BOXI Infostore
    Dim objReportFactoryService As EnterpriseService = myEnterpriseSession.GetService("PSReportFactory")
    Dim objFactory As Viewing.PSReportFactory = CType(objReportFactoryService.Interface, Viewing.PSReportFactory)
    Dim objReportSource As ISCRReportSource
    objReportSource = objFactory.OpenReportSource(intReportId)
    Return objReportSource
    Thanks,
    Horus

    Since you're using XI Release 2, there'd be limited options.  XI 3.x allow for greater control of rights inheritance, so you can specify no-view rights for the folder, but view rights for the contents of the folder.
    So with XI Release 2, since you can't control inheritance, you'd restrict rights to the parent folder, but give each report within specific rights tailored to the User or UserGroup.  If you have lots of reports, the rights admin overhead may be problematic, since you'd need to manage them per-object.
    Sincerely,
    Ted Ueda

  • How to display a report in a container

    Hello All,
    There are 2 scenarios:-
    1) On left side navigation panel, I have a tree control. On double click on a node of a tree, I want to display a "report output" on the right panel. I have created the left panel and right panel by splitting the main custom container using splitter control. But I am not able to submit a report output on double click event of tree node as I dont know how to specify the parent container for the report.
    2) I want to divide the custom container into 4 equal parts. Then each part should display four reports which are output of 4 different programs.
    Kindly help me out with his issue.
    Needless to say that points will be awarded
    Thanks n Regards,
    Abhishek

    Hi Abhishek,
    you can't run a program in an container. That's not possible. But you can handle your requirement using one of the following ways:
    Way 1:
    Call the program in the double click event handler method by using the the statement e.g. submit and return. The program is then called in a separate screen(not in the container).
    Way 2:
    Copy the functionnality of the program in e.g. function module(FM). This FM gets the input parameters, processes the input and returns the results. The results are displayed e.g. in an ALV Grid. The steps getting the display results and setting the display data for the ALV are handled in the double click event handler method.
    Best Regards, Edemey

  • Displaying a report in Java instead of using DHTML or ActiveX

    Post Author: karene
    CA Forum: General
    Greetings-
    We have Crystal Reports XI release 2, and BusinessObjects XI release 2
    We were using ActiveX to display our reports, and have switched to DHTML, which displays a more modern looking menu.  (There are probably other reasons, too).  But the ActiveX display behaves better: the menu at the top continues to display even when scrolling down the report, and the spacing matches what it looks like when printed.  Our customer is complaining about the DHTML report viewer, because the text is more squished together, and then there is a lot of white space.  The reports when printed look fine, but they often just view the report on the screen.  (And the menu scrolls off the screen when going to the bottom of the report.)
    We're calling the reports using a URL that includes the OpenDocument.aspx and the document number from BusinessObjects.
    I checked into the Java viewer, and it has the more modern menu, but it stays on the screen, and it also has the same spacing as the ActiveX viewer.  We think it should make the customer happy.  We've looked at the documentation, and it says to call the report using OpenDocument.jsp in the url. 
    It won't work.  It tells us the report can't be found or the request completed (another guy did that part -- I'll ask him for the details if necessary). 
    When we're in BusinessObjects, and displaying the report (whether by ActiveX, DHTML, or Java), the url at the bottom of the screen includes 'report_view.aspx'.  So we're wondering if there's something in BusinessObjects itself that we need to change in order to use the Java viewer.
    I've googled and not found any references to this problem (which doesn't mean they aren't there, just that I haven't found them).  It seems odd that no-one would complain about the differences in display between the ActiveX and DHTML.  And it doesn't appear that anyone else is having problems using Java.  Can anyone give us some guidance?  Thank you.
    -karene

    From what I remember, there are just too many runtime dependencies (handling callbacks, asynchrony, etc) to use a web service control outside of a container.
    As far as using clientgen within a project, I usually just have a separate build script to run clientgen when I need to, but you are correct, it certainly can be a pain.
    There are in fact plans to make clientgen much easier from eclipse. I'm not at a level to speak to any details, schedules, etc., but if you have suggestions for how you'd like things to work, etc, please post them here.
    -jacobd

  • I have Iphone 5 and have an issue with deleting part of the messages in Imessage conversation. The trash button is not displayed to delete part of the imessage. I see only delete all option. Is it a bug?

    I have Iphone 5 and have an issue with deleting part of the messages in Imessage conversation. The trash button is not displayed to delete part of the imessage. I see only delete all option. Is it a bug?

    Hi An Iphone user,
    If you are having issues deleting a specific message from an iMessage conversation (not seeing the Trash icon), you may want to double-check that you are following the steps outlined in the following article:
    How do I delete a message?
    To delete a message, tap and hold the message bubble, then tap More.
    Tap Delete All to delete all the messages. Or tap to select the messages you want to delete, then tap .
    After you delete a message, you can recover it only by restoring from a backup.
    Send messages with your iPhone, iPad, or iPod touch - Apple Support
    Regards,
    - Brenden

  • Webi report part(include Opendoc Link) ondesktop did not work in BI Widgets

    My customer followed <BI Widgets User Guide>(XI3.1) to create a webi report part(include Opendoc Link) onto desktop.
    Page 26:
    To convert Report Part into a Widget ,drag and drop the Report Part from the Web Intelligence Viewer onto the desktop.
    As a widget, the Report Part will include the following BI Widgets features:
    - Automatic refresh
    - User controlled size and positioning
    - Saved display and data context state
    - Optional setting as the top application window
    - Full XI R3 security
    - Web Intelligence opendoc links to detailed reports.
    But it can not be clicked(hyperlink did not work).
    My customer follow the SAP Note 1244968 to create again, it still can not be clicked.
    For I can't reproduce this issue, could you tell me what's it probably related to?
    SAP Note 1244968:
    Symptom
    Trying to use Hyperlinks in a BI Widget created from a WebIntelligence
    report
    Environment
    XIR3
    Workflow
    1. Login in Webintelligence
    2. Create on efashion a Webintelligence report with the
    objects:Year,Sales Revenue
    3. In the Edit panel add a column to the table and insert the
    variable :=If([State]="DC"; HTMLEncode("http://uk.yahoo.com"); "")
    4. In the Properties Display/Display/Read cell content as Hyperlink
    5. Run the report and save it
    6. Open the Webintelligence report with HTML view and click on the
    hyperlink you are redirected to the Yahoo website
    7. Log in BI Widget
    8. Right click on the right inside icon of BI Widget and click on
    Document List Explorer
    9. Find the Webintelligence report and double click on it
    10. Click on the table and drag and drop it to your desktop
    11. The BI Widget gets created
    12. Click on the column containing the Hyperlink:nothing happens.
    Cause
    There is no functionality of using Hyperlinks in a BI Widget created
    from a Webintelligence report
    Resolution
    Enhancement Request ADAPT01119581 has been created
    Environment details:
    Srerver Environment: OS Version: RedHatEnterpriseLinuxES4.0 update5
    Client Environment: OS Version: WindowsXP
    Browser: IE6
    JRE Version: 1.6.003_
    Web & Application Server: Tomcat 5.5.20
    Database character: AL32UTF8, JA16SJIS
    Connection: native, ODBC, OLEDB
    NLS LANG: Japanese Japan.JA16SJIS

    Hi Soniya,
    These are the steps:
    1. Log in into infoview
    2. Change the preferences (Click in the Preference button in the main tool bar), in the WebIntelligence section change the Select a default view format: to Interactive.
    3. Click OK
    4. Open the report where you want to add the hyperlink
    5. Right click in the column or cell to add the hyperlink
    6. Click Hypelink > New
    7. You will see the Create Hypelink window, click Browse the select which report do you want to link
    8. Fill in the parameter, prompts, etc.
    and that's it, hope it's clear now. If you have any question let me know.

  • The feature: "Report part gallery" is not supported in this edition of Reporting Services.

    Struggling trying to get off the ground on same basic reporting functionality - I have a report that basically just dumps out the contents of a table for now.  When I attempt to publish the report, I get "The feature: "Report part gallery"
    is not supported in this edition of Reporting Services." for both the single param I am trying to define for the report and the Tablix report part.  What
    can I do with this version of Reporting Services?  Ultimately, I need to create a few very simple reports and then be able to display them in a UI developed in Visual Studio 2013 via a Web Form.  It seems that Visual Studio 2013 does not
    offer a report viewer so that is another issue entirely (hoping the one for 2011 will work).  I am just trying to design and publish a few simple reports right now and can't even get past that right now.

    Hello,
    What's the version and edition of SSRS did you used?
    Report Part Gallery is only available in Standard Edition and above. If you using SSRS express edition, you can try to create a subreport which ccontain the Tablix report part content, and then add the subreport in other reports to meet the similar requirement.
    You can refer to the following blog about compare Subreport with Report Part.
    http://www.mssqltips.com/sqlservertip/2314/ssrs-report-parts-versus-sub-reports-faq/
    As for display SSRS report in Visual Studio, you can using the ReportViewer controls in Visual Studio.
    http://msdn.microsoft.com/en-us/library/ms251671.aspx
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Specific report with special template

    Hello Friends I have designed 4 templates 1 FOR BMW - Auto, 1 for bmw - HR
    etc.
    Question # 1 : I now want to make the portal display 4 tabs Auto, HR, FMA, FECS
    by making a copy of 0analysis_pattern
    So if user execute the report selecting HR Tab it execute the report with that template.
    Please help me how can i set up this do I need a master template that links all 4 or I can do this by some portal setting we are on BI 7.0 2004S SP14
    Question#2 Also I have a requirement of making custom template for dasboards where i want to use that template for specific report. please suggest with steps on how can I execute only specific report with special template that mean my special template will overwrite the settings 4 tabs Auto, HR, FMA, FECS and that report will be executed with special template only,.
    Thanks
    Soniya

    1. Create one more template in WAD by copiing 0ANALYSIS_PATTREN. we have an TABs Web Item. You need to use this web Item in your WAD Template. You need to do this using Commands. When ever you click on any Tab, it should call specific Bex Query (Not Web Template you Created).
    1. Create one temple which copy of 0ANALYSIS _PATTREN.
    2. drag TABS web Item .
    3. define the Sequence of reports in TABs Web Item Properties.
    4. Set the Properties of the ANALYSIS Web Item upon execution of every Tab. you need to set these parameters using Commnds.
    2. Create a brand new template by coping 0ANALYSIS_PATTREN. make necessary changes to new template use this template for where you want. this template will be different from earlier 4 Tabs one.
    Hope this helps.
    Nagesh Ganisetti.

  • Regarding displaying the report information in Geographical map

    Hi All,.
    I have a specific requirement where I have to display the number of Telephone connections activated in a geographical area (GEO map) . How to do it.
    Can any body provide the step by step process to display the reporting information in maps.

    Hi,
    To do this you have to have the settings done in Info object maintenance where in the Map should have been integrated already.
    Once that is done, in BEx designer you can have the setting by cloicking the icon.
    Hope this helps to start with.
    Assign points if useful.
    Regards,
    Venkat

  • Specific report as default page

    Hi!
    Is there a way to show a specific report (rdl) if providing our users http://servername/reports?
    At the moment the user first must enter username and password and then is forwarded to http://servername/Reports/Pages/Folder.aspx which shows folders containing reports (rdl).

    Hello,
    In SQL Server Reporting Services (SSRS), Reporting Services uses role-based security to grant user access to a report server. If we want to restrict users’ permission to access report. We can configure the item-level role to get the effect.
    By default, if we configure report manager with Browser role of the root folder, users will have permission to access all folders in the report manager. Then, we can delete the Browser role for the other folders to restrict users to access. After that, when
    user access report manger it will not display other folder in the web page. There is an article about Setting Permissions in Reporting Services, you can refer to it.
    http://technet.microsoft.com/en-us/library/aa337491(v=sql.105).aspx
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Granting Run Report permissions on a specific report only

    Guys,
    Is there a way to grant access to users only on a specific report so that users can run that report.
    For example, we want to give access to a user group on a report "All deployments for a specified package and program".
    Environment: SCCM 2012 R2
    Steps Performed:
    1. Created a security role called "Run specific reports"
    2. Selected permissions for this role are ONLY, "Run Report" under Packages node
    2. Added user group TB\XYZ in this role
    As a result:
    - User groups TB\XYZ were added in the security of all the reports in category "Software Distribution - Package and Program..."
    - Users run the report "All deployments for a specified package and program" but don't see any values in Package drop down list. If we supply report parameter (package ID) in the report URL, it still does not work and shows incorrect
    parameter value.
    - Users can see all other reports and folders in SSRS e.g. when they access
    http://servername/reports - this is not what we want.
    Requirements:
    1. What we want is to grant user group access only on one report "All deployments for a specified package and program" and all the related reports so that users can drill down further reports.
    2. User cannot read data using SCCM console
    3. User should not see/run other reports (we want to provide users direct report URL passing package/program ID as a paramter)
    -- S Ahmad

    How is granting read permission only to those object that you want them you have access to giving them too much permissions?
    The permission in CM12 R2 are far better (from a reporting stand point) than in CM12.
    Exactly which report are you trying to grant accces too and why?
    What is the business case for this?
    I just want to grant permissions on "All deployments for a specified package and program" report in such a way that users can further drill down to following three reports:
    -Status of a specified package and program deployment
    -All system resources for a specified package and program deployment in a specified state
    -Package and program deployment status messages for a specified client and deployment
    So total of 4 reports. In SCCM 2007, it was easy to give access in the properties of the reports only (asp based reporting). However in CM12 (or R2), reporting is based on SSRS and what I've found is that we have to grant rights on objects those are part
    of above reports e.g. packages, collections, workstations etc.
    Giving "Run Report" rights to users does not grant access on view the information related to packages, collection or workstatons so report shows as blank. Another problem with "Run Report" permission for "Packages" in Security role is that it grants "Run
    Report" access to all the reports in Software Distributions section.
    -- S Ahmad

Maybe you are looking for

  • Ability to hide characteristic from user in Query Definition

    Hello All, Is there a way (table entry, enhancement, mod, or other) to make a characteristic within a cube not be available for selection within the BEx query designer.  Although relevant for the cube we do not want it available to the users for repo

  • Cannot figure out why "ORA-01000 Maximum open cursors" is shown...

    Hello there ... I am programming a PL/SQL Code that is throwing 0RA-01000 Maximum Open Cursors Exceeded. Having already read quite a lot about ORA-01000 errors, I know I should be closing cursors, and have already tried setting OPEN_CURSORS parameter

  • Vendor VS Customer

    Dear Sir, Any report is available  to get customer and vendor data at one place. Regadrs, Suman .

  • IPhoto editing problems...please help!

    Hi! I have iPhoto on a Mac bought in 2008. Recently, it's started not to save all the edits to a photo, especially the 'reduce noise' which I use a lot for portraits. It also fails to retain some edits when I export or email a photo. Help me! Thank y

  • Undocumented error number when doing Spatial Query

    Can anyone tell me why I get these errors? ERROR at line 1: ORA-29902: error in executing ODCIIndexStart() routine ORA-13236: internal error in R-tree processing: [failed to allocate memory] ORA-06512: at "MDSYS.SDO_INDEX_METHOD", line 83 ORA-06512: