How to add logo in report

Hello All,,
Can anyone help in knowing how can i add a logo on report. That is in our Z report.
Thanks in advance
Anu

See this example:
* Program: ZZ_ALV_REPORT_STUB
* Author : Clayton Mergen
* Date   :
* Purpose: Report using ALV function
* Notes:
* 1) Logos & wallpapers can be found in table BDS_CONN05
*    with class = PICTURES
* 2) Transaction OAER can be used to create PICTURES.
*    Run transaction OAER with class name = PICTURES, Class type = OT,
*    and Object key with whatever name you want to create.  In the
*    next screen, right clicking on screen and import
*                              Revisions
* Name    :
* Date    :
* Comments:
report zz_alv_report_stub
       no standard page heading
       line-size 200
       line-count 65
       message-id zz.
* Tables
tables:
  ekpo,
  trdir.
* Global Types
type-pools: slis.
* Global Internal Tables
data:
  i_fieldcat_alv  type slis_t_fieldcat_alv,
  i_events        type slis_t_event,
  i_event_exit    type slis_t_event_exit,
  i_list_comments type slis_t_listheader,
  i_excluding     type slis_t_extab.
* Display data
data: begin of i_data occurs 0,
        name    like trdir-name,
        clas    like trdir-clas,
        subc    like trdir-subc,
        cnam    like trdir-cnam,
        cdat    like trdir-cdat,
        myfield(1) type c,
      end of i_data.
* Global Variables
data:
  w_variant          like disvariant,
  wx_variant         like disvariant,
  w_variant_save(1)  type c,
  w_exit(1)          type c,
  w_repid            like sy-repid,
  w_user_specific(1) type c,
  w_callback_ucomm   type slis_formname,
  w_print            type slis_print_alv,
  w_layout           type slis_layout_alv,
  w_html_top_of_page type  slis_formname,
  w_fieldcat_alv     like line of i_fieldcat_alv,
  w_excluding        like line of i_excluding,
  w_events           like line of i_events,
  w_event_exit       like line of i_event_exit,
  w_list_comments    like line of i_list_comments.
* Global Constants
*constants:
* Selection Screen
selection-screen begin of block blk_criteria with frame title text-f01.
select-options:
  s_name for trdir-name.
selection-screen end of block blk_criteria.
selection-screen begin of block blk_params with frame title text-f02.
parameters:
  p_vari like disvariant-variant.
selection-screen skip 1.
parameters:
  p_grid radiobutton group rb01 default 'X',
  p_html as checkbox.
selection-screen skip 1.
parameters:
  p_list radiobutton group rb01.
selection-screen end of block blk_params.
* Initialization
initialization.
  perform init_variant.
  perform variant_default using p_vari.
  clear: s_name[].
  s_name-sign   = 'I'.
  s_name-option = 'CP'.
  s_name-low    = 'Z*'.
  append s_name.
* At Selection Screen PBO
at selection-screen output.
* At Selection Screen Value Request
at selection-screen on value-request for p_vari.
  perform variant_f4 using p_vari.
* At Selection Screen
at selection-screen.
  perform variant_fill.
* Start of Selection
start-of-selection.
  perform get_data.
end-of-selection.
  perform fieldcat_build.
  perform event_build.
  perform event_exit_build.
  perform exclude_build.
  perform print_build.
  perform layout_build.
  perform display_data.
* Top of Page
top-of-page.
* Top of Page During Line Sel
top-of-page during line-selection.
* At User Command
at user-command.
* At Line Selection
at line-selection.
* Macros
  define skip_1.
    write: /001 sy-vline,
                at sy-linsz sy-vline.
  end-of-definition.
*                                 Forms
*&      Form  variant_f4
form variant_f4 using p_variant.
  call function 'LVC_VARIANT_F4'
       exporting
            is_variant    = w_variant
            i_save        = w_variant_save
       importing
            e_exit        = w_exit
            es_variant    = wx_variant
       exceptions
            not_found     = 1
            program_error = 2
            others        = 3.
  if sy-subrc <> 0.
    message i000(zz) with text-g01.
  endif.
  if w_exit is initial.
    w_variant-variant = wx_variant-variant.
    p_variant         = wx_variant-variant.
  endif.
endform.
*&      Form  init_variant
form init_variant.
  clear: w_variant.
  w_repid              = sy-repid.
  w_variant-report     = w_repid.
  w_variant-username   = sy-uname.
  w_variant_save       = 'A'. "All types
endform.
*&      Form  variant_default
form variant_default using p_variant.
  wx_variant = w_variant.
  if not p_variant is initial.
    wx_variant-variant = p_variant.
  endif.
  call function 'LVC_VARIANT_DEFAULT_GET'
       exporting
            i_save        = w_variant_save
       changing
            cs_variant    = wx_variant
       exceptions
            wrong_input   = 1
            not_found     = 2
            program_error = 3
            others        = 4.
  case sy-subrc.
    when 0.
      p_variant = wx_variant-variant.
    when 2.
      clear: p_variant.
  endcase.
endform.
*&      Form  variant_fill
form variant_fill.
  clear: w_variant.
  if p_vari is initial.
    w_variant-variant = 'STANDARD'.
    w_variant-report  = w_repid.
  else.
    w_variant-variant = p_vari.
    w_variant-report  = w_repid.
    call function 'LVC_VARIANT_EXISTENCE_CHECK'
         exporting
              i_save     = w_variant_save
         changing
              cs_variant = w_variant
         exceptions
              others     = 01.
    if sy-subrc ne 0.
      message i000(zz) with text-g02.
    endif.
  endif.
endform.
*&      Form  fieldcat_build
form fieldcat_build.
  call function 'REUSE_ALV_FIELDCATALOG_MERGE'
       exporting
            i_program_name     = w_repid
*           i_structure_name   = 'TRDIR'
            i_internal_tabname = 'I_DATA'
            i_inclname         = w_repid
       changing
            ct_fieldcat        = i_fieldcat_alv.
* Modify displayed fields
  loop at i_fieldcat_alv into w_fieldcat_alv.
    case w_fieldcat_alv-fieldname.
      when 'NAME'.
        w_fieldcat_alv-hotspot   = 'X'.
      when 'MYFIELD'.
        w_fieldcat_alv-checkbox  = 'X'.
        w_fieldcat_alv-seltext_s = 'MyChkBox'.
      when others.
    endcase.
    modify i_fieldcat_alv from w_fieldcat_alv.
  endloop.
endform.
*&      Form  display_data
form display_data.
  w_callback_ucomm   = 'CALLBACK_UCOMM'.
  case 'X'.
    when p_grid.
      if p_html = 'X'.
        w_html_top_of_page = 'HTML_TOP_OF_PAGE'.
      endif.
      call function 'REUSE_ALV_GRID_DISPLAY'
           exporting
*               i_background_id             = 'SIWB_WALLPAPER'
                i_background_id             = 'SIWB_WALLPAPER'
                i_callback_program          = w_repid
                i_callback_html_top_of_page = w_html_top_of_page
*               i_structure_name            = 'TRDIR'
                i_default                   = 'X'
                i_save                      = 'A'
                is_variant                  = w_variant
                is_layout                   = w_layout
                i_callback_user_command     = w_callback_ucomm
                it_fieldcat                 = i_fieldcat_alv
                it_events                   = i_events
                it_event_exit               = i_event_exit
                it_excluding                = i_excluding
                is_print                    = w_print
*               i_screen_start_column       = 1
*               i_screen_start_line         = 1
*               i_screen_end_column         = 70
*               i_screen_end_line           = 30
           tables
                t_outtab                    = i_data.
    when p_list.
      call function 'REUSE_ALV_LIST_DISPLAY'
           exporting
                i_background_id         = 'ALV_BACKGROUND'
                i_callback_program      = w_repid
                i_default               = 'X'
                i_save                  = 'A'
                is_variant              = w_variant
                is_layout               = w_layout
                i_callback_user_command = w_callback_ucomm
                it_fieldcat             = i_fieldcat_alv
                it_events               = i_events
                it_event_exit           = i_event_exit
                is_print                = w_print
           tables
                t_outtab                = i_data.
  endcase.
endform.
*       FORM user_command                                             *
form callback_ucomm  using r_ucomm like sy-ucomm
                           rs_selfield type slis_selfield.
  message i000(zz) with r_ucomm.
  case r_ucomm.
    when '&IC1'.
      set parameter id 'RID' field rs_selfield-value.
      call transaction 'SE38'.
    when others.
  endcase.
endform.
*&      Form  get_data
form get_data.
  select * up to 15 rows from trdir
         into corresponding fields of table i_data
         where name in s_name.
endform.
*       FORM ALV_TOP_OF_PAGE                                          *
form alv_top_of_page.
  clear: i_list_comments[].
  w_list_comments-typ  = 'H'. "H=Header, S=Selection, A=Action
  w_list_comments-key  = ''.
  w_list_comments-info = 'Info 1'.
  append w_list_comments to i_list_comments.
  w_list_comments-typ  = 'A'. " H = Header, S = Selection, A = Action
  w_list_comments-key  = ''.
  w_list_comments-info = 'Begin of list'.
  append w_list_comments to i_list_comments.
  call function 'REUSE_ALV_COMMENTARY_WRITE'
       exporting
            i_logo             = 'ENJOYSAP_LOGO'
            it_list_commentary = i_list_comments.
endform.
*&      Form  event_build
form event_build.
  call function 'REUSE_ALV_EVENTS_GET'
       exporting
            i_list_type = 0
       importing
            et_events   = i_events.
  read table i_events
       with key name = slis_ev_top_of_page
       into w_events.
  if sy-subrc = 0.
    move 'ALV_TOP_OF_PAGE' to w_events-form.
    modify i_events from w_events index sy-tabix.
  endif.
  read table i_events
       with key name = slis_ev_end_of_list
       into w_events.
  if sy-subrc = 0.
    move 'ALV_END_OF_LIST' to w_events-form.
    modify i_events from w_events index sy-tabix.
  endif.
  read table i_events
       with key name = slis_ev_end_of_page
       into w_events.
  if sy-subrc = 0.
    move 'ALV_END_OF_PAGE' to w_events-form.
    modify i_events from w_events index sy-tabix.
  endif.
endform.
*       FORM alv_end_of_list                                          *
form alv_end_of_list.
  clear: i_list_comments[].
  w_list_comments-typ = 'A'. "H = Header, S = Selection, A = Action
  w_list_comments-key = ''.
  w_list_comments-info = 'End of list'.
  append w_list_comments to i_list_comments.
  call function 'REUSE_ALV_COMMENTARY_WRITE'
       exporting
            it_list_commentary = i_list_comments
            i_logo             = 'ZMYOBJECTKEY'
            i_end_of_list_grid = 'X'.
endform.
*       FORM alv_end_of_page                                          *
form alv_end_of_page.
endform.
*&      Form  print_build
form print_build.
  w_print-no_print_listinfos = 'X'.
endform.
*&      Form  layout_build
form layout_build.
  w_layout-zebra                = 'X'.
  w_layout-no_vline             = 'X'.
  w_layout-colwidth_optimize    = 'X'.
  w_layout-detail_popup         = 'X'.
  w_layout-detail_initial_lines = 'X'.
  w_layout-detail_titlebar      = 'Detail Title Bar'.
endform.
*&      Form  event_exit_build
form event_exit_build.
  clear: i_event_exit[].
* Pick
  w_event_exit-ucomm  = '&ETA'.
  w_event_exit-before = ' '.
  w_event_exit-after  = 'X'.
  append w_event_exit to i_event_exit.
endform.
*       FORM HTML_TOP_OF_PAGE                                         *
form html_top_of_page using r_top type ref to cl_dd_document.
  data:
    text     type sdydo_text_element,
    s_table  type ref to cl_dd_table_element,
    col_key  type ref to cl_dd_area,
    col_info type ref to cl_dd_area,
    a_logo   type ref to cl_dd_area.
* Split TOP-Document
  call method r_top->vertical_split
            exporting split_area  = r_top
                      split_width = '30%'
            importing right_area  = a_logo.
* Fill TOP-Document
  call method r_top->add_text
            exporting text  = 'Example of a Heading'
            sap_style       = 'HEADING'.
  call method r_top->new_line.
  call method r_top->new_line.
  call method r_top->add_table
            exporting no_of_columns = 2
                      with_heading  = ' '
                      border        = '1'
            importing table         = s_table.
  call method s_table->add_column importing column = col_key.
  call method s_table->add_column importing column = col_info.
  text = 'A key value marked'.
  call method col_key->add_text
            exporting text         = text
                      sap_emphasis = 'Strong'.
  call method col_info->add_gap exporting width = 6.
  text = '600' .
  call method col_info->add_text
            exporting text      = text
                      sap_style = 'Key'.
  call method col_info->add_gap  exporting width = 3.
  text = 'Block brick units'.
  call method col_info->add_text exporting text  = text.
  call method s_table->new_row.
  text = 'Storage Bin'.
  call method col_key->add_text
            exporting text         = text
                      sap_emphasis = 'Strong'.
  call method col_info->add_gap exporting width = 7.
  text = 'C-A-004'.
  call method col_info->add_text exporting text = text.
  call method s_table->new_row.
  text = 'Warehouse number' .
  call method col_key->add_text
            exporting text         = text
                      sap_emphasis = 'Strong'.
  call method col_info->add_gap  exporting width = 6.
  text = '200' .
  call method col_info->add_text
            exporting text      = text
                      sap_style = 'Success'.
  call method col_info->add_gap  exporting width = 3.
  text = 'marked success'.
  call method col_info->add_text exporting text = text.
  call method s_table->new_row.
  call method r_top->new_line.
  text = 'This last line is a comment in italics.'.
  call method r_top->add_text
            exporting text         = text
                      sap_emphasis = 'EMPHASIS'.
  call method r_top->new_line.
  call method a_logo->add_picture
*           exporting picture_id = 'ZZTESTBMP'.
            exporting picture_id = 'ENJOYSAP_LOGO'.
endform.
*&      Form  exclude_build
form exclude_build.
  w_excluding = '&GRAPH'. "Graphic
  append w_excluding to i_excluding.
endform.                    " exclude_build

Similar Messages

  • How to add Logo in Bex report

    Hi Guys,
                 How to add logo in a Bex report.

    Hi ABDUL KHADAR
    We can only add the logo at Work book level but not the query level @the query
    level it wont allow us to add.
    Jus open an ordinary excel sheet format it as you wish  Ctrl+A and fill with white
    color .Then jus save u r logo which u wont to upload in the desktop.
    Then go to file insert picture or file  and place it wher ever u wont in the work sheet
    and save it as a templete and then insert the query in this templete and format it
    as per your standarads.
    If any struck up feel free to let me know. We explain you clearly...
    hope its helpful..
    Cheers
    R M K
    **Assigning poitz ez da only way of saying thankz in SDN**

  • How To add Logo in ALV Report

    Hi,
    How To add Logo in ALV Report?
        I need step by step explanation.

    Hi uday,
    go through this hope u can understand.
    *&amp;amp; Report Z_OOALV_LOGO
    *&--Sample Program using ooalv-> by SrikanthV--
    REPORT z_ooalv_logo.
    ****DECLARATION FOR LOGO INSERT
    CONSTANTS: cntl_true TYPE i VALUE 1,
    cntl_false TYPE i VALUE 0.
    DATA:h_picture TYPE REF TO cl_gui_picture,
    h_pic_container TYPE REF TO cl_gui_custom_container.
    DATA: graphic_url(255),
    graphic_refresh(1),
    g_result LIKE cntl_true.
    DATA: BEGIN OF graphic_table OCCURS 0,
    line(255) TYPE x,
    END OF graphic_table.
    DATA: graphic_size TYPE i.
    CALL SCREEN 100.
    *&amp;----
    *& Module PICTURE OUTPUT
    text
    MODULE picture OUTPUT.
    DATA: l_graphic_xstr TYPE xstring,
    l_graphic_conv TYPE i,
    l_graphic_offs TYPE i.
    CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
    EXPORTING
    p_object = 'GRAPHICS'
    p_name = 'EDS'"IMAGE NAME - Image name from SE78
    p_id = 'BMAP'
    p_btype = 'BCOL'
    RECEIVING
    p_bmp = l_graphic_xstr
    EXCEPTIONS
    not_found = 1
    OTHERS = 2.
    graphic_size = XSTRLEN( l_graphic_xstr ).
    CHECK graphic_size > 0.
    l_graphic_conv = graphic_size.
    l_graphic_offs = 0.
    WHILE l_graphic_conv > 255.
    graphic_table-line = l_graphic_xstr+l_graphic_offs(255).
    APPEND graphic_table.
    l_graphic_offs = l_graphic_offs + 255.
    l_graphic_conv = l_graphic_conv - 255.
    ENDWHILE.
    graphic_table-line = l_graphic_xstr+l_graphic_offs(l_graphic_conv).
    APPEND graphic_table.
    CALL FUNCTION 'DP_CREATE_URL'
    EXPORTING
    type = 'image'
    subtype = cndp_sap_tab_unknown " 'X-UNKNOWN'
    size = graphic_size
    lifetime = cndp_lifetime_transaction "'T'
    TABLES
    data = graphic_table
    CHANGING
    url = graphic_url
    EXCEPTIONS
    dp_invalid_parameter = 1
    dp_error_put_table = 2
    dp_error_general = 3
    OTHERS = 4 .
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    EXIT.
    ENDIF.
    CREATE OBJECT h_pic_container
    EXPORTING container_name = 'LOGO'.
    CREATE OBJECT h_picture EXPORTING parent = h_pic_container.
    CALL METHOD h_picture->load_picture_from_url
    EXPORTING
    url = graphic_url
    IMPORTING
    RESULT = g_result.
    ENDMODULE. " PICTURE OUTPUT
    Reward points if helpful.
    Thanks

  • Print /add logo in reports 10g which is running in linux

    hi
    i want to print /add logo in reports 10g which is running in linux environment and want to change logo programmatically.
    how can i achieve this
    reports version is Report Builder 10.1.2.0.2

    Hi Thanesh,
    There are two possibilities either create a 'Z' one or go through standard one. I prefer you to try the standard one.
    Have a look on this link.
    [Add logo in PE51;
    Hope this will solve your problem.
    Regards,
    Gaurav

  • How to add an embedded report to custom UI?

    Dear colleagues:
    Since now I am doing investigation on this:How to add an embedded report to custom UI , so do you have some guideline doc for this?
    Requirement is:
    Customer want to add a custom report to a custom FS page. And it has some standard fields from contract. So do you have any ideas about this?
    Thanks & Best Regards,
    Qiang

    Hi Jens,
    Attachment is the guideline for how to add an embedded report to custom UI. However, so far as i know, there still a limitation that is about inport parameter.
    For example, now can show all data of accounts. but i just only want show one account data when click account. so you can share to us if you have any idea about it.
    Thanks &Best Regards,
    Qiang

  • HOW TO ADD COMMENTS IN REPORT IN WAD

    Hello
    How to add comments in report in wad...
    please reply
    thanks

    Hai Guru
    Please refer to note 1061397. Hope this helps.
    Shyam

  • How to add a sub report at the end of the main report whilst grouped

    Hi!
    I have a main report that is grouped by the Customers name and then details of transactions they did with the company.
    I need to add a letter at the end of each group for each customer (With their name displayed in the letter). I tried adding a sub report in the report footer, but it only appears once at the end of the report, rather than at the end of each group for each customer.
    How can I achieve the desired result?
    Regards
    Vik

    Vik,
    You are on the right track with the sub-report.
    1. Create your letter in a separate report.
    2. Add the Letter Report to your original report as a sub report in the group footer.
    3. Set the report links on the "Group By" field.
    This will give you a letter record for each report record with the same grouping as the main report.
    Hope this helps,
    Jason

  • How to add Logo in SAPSCRIPT

    Hi frnds,
    How I will upload Logo in SAPSCRIPT?
    I have created Header window, Now I want to add Logo in Header Window.
    Regards.

    Hi,
    These are the steps to be followed for uploading graphics in R/3 system
    1. First save the file as BMP
    2. Open the BMP file in IMaging (Goto -> Programs -> Accessories -> Imaging) and
    make it Zoom as 100% and save as *.TIFF
    3. Open SE38 and execute program RSTXLDMC
    4. Give your TIFF file path name
    5. Select Bcol (for Color)
    6. TEXT ID will be ZHEX-MACRO-*.
    7. Inplace of * write your own logo name (ZCOMPANYLOGO)
    8. Execute the program
    9. Now Goto SE71 create your ZFORM
    10. Create logo window
    11. Goto text element of logo window
    or
    In 4.6x :-
    1. Goto SE71 Change the mode to GRAPHICAL
    2. Choose the Graph Tabstrips
    3. Now type in some name for the LOGO WINDOW
    4. Press the IMPORT BUTTON and then IMPORT the BMP file from your DESKTOP
    5. The code will be written automatically. You just need to drag and drop wherever you want
    the graphics to be.
    regards,
    Munibabu.K

  • How to add characteristic in report without having in the multi provider.

    Hi All,
    I need one requirement to add characteristic in report that is not available in the multiprovider . That field is available on the table level in the BI. How should i bring same field into report level with out adding MP.    Note : should not add new filed in to exiting flow .
    Please give suggestion how do approach this scenario .
    Regards,
    Veera.

    Hi ,
    If you are working in BI7 then u can use infoset to join the cube and charecteristic(the field that ur going to add), I hope your infoprovider is a cube.
    Jay

  • How to add template to report?

    Dear All
    how to add a user defined template to a report
    we are using reports 6i
    Thankx and Regards
    Raj

    Hi Angamuthu
    problem is how to attache that tdf file to a report
    we have standard formats for reports , i want to enforce them in a templete and use in my reports
    i can use predefined templetes as we don't design thru
    wizard
    can u suggest a alternative solution
    Thanks for reading the request
    Raj.

  • How to add program to report tree

    Hi ,
    Can you please let me know how to add report to report tree..( No transaction code ,just only want to add report)
    Thanks,,

    Hello Parnith,
    There is the SE43N transaction (Area menu transaction update). Here you should be able to locate the corresponding area menu and insert your report in the report tree.
    There is also the SERP transaction. This is for old report tree transactions.
    Hope it helps you.
    Regards,
    Daniel.

  • How to add another new report painter in existing T-code?

    HI,
    Can someone guide me, how to add a report painter report ZAL into a existing T-code?
    My T-code contain 2 report, now i wish to add a new one. So when user execute this T-code, we can see these 3 report.
    Thanks

    Hi,
    add the new report to the report group (T-code GR52) where the 2 already existing reports belong to.
    In report painter you don't execute a report but always a report group including one or more reports.
    Best regards, Christian

  • How to Add plant in report?

    Hi ,
    I have to create a cost center report which is for actual and plan comparison.
    Situation is i don’t have a business area, i have only plants to value my costs in my report in the column. I am using CCSS table to data extract .I have a field name werks in the table .
    How to add Plant into my report ,Can any body help me on creating a set on this. Or is there any solution for this .

    Hi,
    If a field in FBL1N is not filled it might be because the field has to be created as a special field.
    In the Line item Display list in FBL1N follow this menu path: Settings -> Special fields, and add the fields you want from relevant table.
    The fields are later available for display,and you can choose them from the Line item Display list following this menu: Settings -> Display variant -> Current. From the hidden list you can now choose the fields you want to have shown. If the technical name is shown for the fields, the special fields are all starting with '1-U_'. It's important, that you add the Special field, if the field also exist as Standard field.
    The Special fields are shown in the buttom of the Hiddden list.
    Please also read the solution part of note 215798 for some very import- ant steps to be aware of.
    But, for having a field shown in the vendor Line Item Display (FBL1N) the field has to exist in the vendor Line Item. If this is not the case, you will evt. be able to see the field in FBL1N by using Offsetting account info.
    Check if field WERKS is in the structures RFPOS and RFPOSX. If not, then you need to add the field to the structures RFPOS and RFPOSX. When the structures have been extended with the field then you need to run the reports  RFPOSXEXTEND and BALVBUFDEL (in the same way as seen in the solution part in note 215798).
    Please assign points if it useful
    Regards
    Ravinagh Boni

  • How to add in crystal report

    hi i am developing a web application , i am using crystal report plugin in eclipse europa editor .
    my problem is that , there is a table which has a date colunm and i am adding all the dates together by using
    sum(DateDiff("yyyy",{Birth_date},{death_date)) as a function
    i am getting the data by record filter but above formula showing me only result for the last record , what happening to other records , i don't know.
    so please guide me .
    Thanks in advance...........                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi Rizwan,
    You can't with the report itself because once the refresh is complete it requires a full refresh to update any page. And there is no option to for example refresh just the subreport.
    RAS SDK has samples on how to add subreports, see the OverView tab for a link to the samples, but it still requires a refresh to be called.
    One way may be to use Subreports on Demand, URL's to another report.... Each subreport would run individually without refreshing the main report. It would like a Table Of Contents report though.
    So to be clear, adding pages is the same thing as adding more data. Problem is most of the data needs to be complete so that summaries and running totals etc. type of objects require the data to be complete to be able to render each page.
    So why do you need to do this? Can you explain your workflow?
    Don

  • How to add logos/picture in Login screen.

    Hi,
    I wanted to add logos/picture in Obiee login screen.How to achive this.Please let me now the solution.

    Oracle logo to Company Logo_
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\sk_blafp\login
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\sk_blafp\b_mozilla_4
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\.appmergegen_1291264099332\analytics.ear\ukjjdc\res\sk_blafp\b_mozilla_4
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\.appmergegen_1291264099332\analytics.ear\ukjjdc\res\sk_blafp\login
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\sk_blafp\b_mozilla_4
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\sk_blafp\login
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\_WL_user\FMW Welcome Page Application_11.1.0.0.0\upd42q\war\images
    Powered By_
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\app\res\s_blafp\images
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\AdminServer\tmp\.appmergegen_1291264099332\analytics.ear\ukjjdc\res\s_blafp\images
    Drive:\Oracle\Middleware\user_projects\domains\bifoundation_domain\servers\bi_server1\tmp\_WL_user\analytics_11.1.1\7dezjl\war\res\s_blafp\images
    Catolog to Workbench_
    Drive:\Oracle\Middleware\Oracle_BI1\bifoundation\web\msgdb\l_en\messages\uicmsgs
    saw.availabledata
    <WebMessage name="kmsgCatalogCaption"><TEXT>Catalog</TEXT></WebMessage>
    saw.catalog
    <WebMessage name="kmsgCatalogStartingWindowTitle"><TEXT>Oracle BI Catalog</TEXT></WebMessage>
    <WebMessage name="kmsgCatalogWindowTitle"><TEXT>%0% - Oracle BI Catalog</TEXT></WebMessage>
    saw.header
    <WebMessage name="kmsgHeaderCatalogPage"><TEXT>Browse Catalog Folders...</TEXT></WebMessage>
    Reference_
    http://prasadmadhasi.com/2011/10/04/images-and-logos-path/
    Customizing Oracle Business Intelligence Enterprise Edition 11g An Oracle White Paper
    http://www.oracle.com/technetwork/middleware/bi/customizing-oracle-biee-11g-176387.pdf
    also
    Oracle BI EE 11g – Styles, Skins & Custom XML Messages
    http://www.rittmanmead.com/2010/12/oracle-bi-ee-11g-styles-skins-custom-xml-messages/
    ttp://bintelligencegroup.wordpress.com/2010/09/02/customize-user-interface-in-obieeskin-and-style-files/
    Thanks,
    Balaa...

Maybe you are looking for

  • F-28 Incoming payment

    Hi all When i am trying to do the incoming payment F-28 for residual payment the system showing an error message "Consolidated companies and company code are different" what will be the reason of error,please let me know Regards Ansuman

  • External hard drive not recognized in Finder or Disk Utility

    Two weeks ago, my 2007 black Macbook stopped recognizing the hard drive. I was told by some IT friends that the controller had likely failed and I needed to purchase a new laptop. I removed the hard drive and placed it into an enclosure (turning it i

  • Adobe Photoshop CS5 is not working with Lion.

    Adobe Photoshop CS5 is not working with Lion. It is totally non responsive to a point where i cannot work. all other CS5 programs seem to be running well so far. any advice? if no, then how do i revert back to Snow leopard?

  • Mass downloading of Documents from DMS

    Dear SAP gurus, How to download the multiple documents from DMS in one step? Thanks in advance. Venkat

  • ORA-13754: "SQL Tuning Set" "" does not exist for user "SYS"

    While calling dbms_stats.seed_col_usage I got the following error. Can someone help me on how to resolve it sqlplus SQL*Plus: Release 11.2.0.1.0 Production on Thu Apr 14 14:37:38 2011 Copyright (c) 1982, 2009, Oracle. All rights reserved. Enter user-