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

Similar Messages

  • Can the database which is running in linux 32 bit can be migrated to 64 bit

    can the database which is running in linux 32 bit can be migrated to 64 bit,while converting oracle ebs R12.1.1 in linux 32 bit to linux 64 bit

    Hi ,
    it seems like duplicate of the post:migrating database from 32 bit to 64 bit
    Your query is already answered by hussein in that post.
    -Rk

  • Logo in report 10g

    hello,
    How can I add a logo (picture) in my report???:
    the problem is that if i use file attachment icon, you must let the picture
    in a precise folder (the report doesn't memorise the picture)
    a solution is perhaps to use a table with a blob column
    but i don't know how to simply upload the picture in this case
    i use oracle 9i/10g bases and report 10g
    thanks for your help
    Rosagio

    hi Denis!!!
    Thank you very much
    your solution is OK!!!
    I'm very happy
    Rosagio

  • 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

  • Oracle Portal, Application Express, Oracle Forms/Reports 10g - which one?

    Hi,
    I have Oracle 10g database and Application Express installed on one linux box.
    second linux box has Oracle HTTP server running from where i call the htmldb pages.
    3rd linux box has Oracle Application Server 10.1.2 installed along with SSO, Portal 10.1.4 , Forms Server etc.
    Now, i see there are 3 ways i can develop web applications
    1. using Application Express and http server which is very basic and simple.
    2. using Oracle Forms/Reports 10g and forms/reports server
    3. Oracle Portal 10.1.4 in Application Server 10.1.2
    Can someone guide me, which one of the above 3 is worth sticking on forever for developing web applications. i am really not sure which one of the above is best for Web developement in terms of long term planning. and i believe all 3 of the above can be integrated with Oracle SSO for authentication.
    Can someone guide me please to select one of the above and can you explain me why for my better understanding of the different tools?
    Thanks,
    Philip.

    Hi Philip.
    If you already have Oracle Portal, I think that portal is the best solution.
    Portal can be integrated with others applications using SSO.
    Oracle portal have a lot of features that help you to develop web applications.
    If portal does not offer what you want, you can develop your own portlets using java or plsql.
    Take a look at the default home page of oracle portal.
    Look better the features that portal offer to you.
    http://portalcenter.oracle.com
    Thanks.

  • Report printing problem in Oracle Report 10g

    Hi group,
    I have one report which I am callinng from form. Out put is comming directly in PDF format, While taking printout on EPSON Printer allignment is not comming properly.
    But If i convert in to text format and print from MS-DOS prompt on same printer it is comming properly.
    Now want to print same in report builder directly in first way. whole environment is on Oracle AS and server is LINUX and client machine is windows
    Please revert back, It can be a great help for me.
    Thanks & Regards,
    Narendra.

    you can solve this problem by using oracle remote printing utility(orarrp)
    Nizhad
    Software Engineer,
    Accel Frontline Limited,
    Kochi.

  • Can i get a print out of a report output which has LINE-SIZE = 400?

    Hello everybody,
    I have a task where in the output of a report which has LINE-SIZE = 400 needs to be printed.
    can i get a printout out directly in LANDSCAPE or do i need to write some code to get to the result?
    Please do suggest me.
    Helpful answers will surely b rewarded.
    Thanx in advance,
    Sanghamitra.

    Thanx one and all for your quick and prompt replies.
    Now is there any other way of priniting a report of line-size 400 on a fairly large paper ,other than using smart forms.
    Please do suggest.
    Thanx in advance,
    Sanghamitra.

  • Connecting cannon printer HP Slatebook 12 with Audio Beats that runs on Linux?

    I just purchase the new HP Slatebook 12 laptop with Audio Beats a few days ago and I would like to connect my Canon Pixma Printer/Scanner which is brand new to my laptop, but my problem is that my laptop has Linux not Windows which means the Canon printer setup software can't be uploaded in its drives because my HP Slatebook comes with Cloud for storage of my files. I also have a headset with mic that has a usb flash rather than the usual basic headphone jack. I really need assistance in connecting both for my online classes at Concordia University Texas which start the 1st of next week.
    Can someone please give me some assistance with this?
    Thanks

    I would suggest you ask your question in a Canon Forum.  
    Sorry, but I have no idea what a "headset with mic that has a usb flash" means!
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • LOGO in report painter

    HI Guru's.
    I want to add Logo in report developed in report painter. we have developed Balance sheet report with help of report painter.
    now i client want their logo on top of this report. So please advice on this issue.
    thanks in advance.

    Hello,
    I could not any such possibility to attach a logo in report painter report.
    However, you can achieve, in case if it a script or smart form.
    Regards,
    Ravi

  • Add on xl reporter nit installing

    I installed sap b1 2007 pl 15 client on windows xp system (sql 2005 & office 2007). now whent i login sap, during installation of add on xl reporter, it gives error
    run time error '-2147417851 (80010105)
    method '' of object '' failed
    every thing is working fine on other client systems.
    Pl help

    Is the user that is logged onto the client an administrator? Administrative rights will be required to enable the install to complete.
    Try deleting any folders that have created under C:Program Files>SAP>SAP Business One>Add ons>XL Reporter (or something like that!), delete the SM_OBS_DLL under start>Run>%temp% and start up SAP again to re-run the installation

  • 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**

  • I want to print the LOGO on the report output

    Hi ,
    i want to print the LOGO on the report output. How can tyhis possible ?

    using "SMWO" to upload LOGO image.
    add a customer "customer control" named P1 using "SE51"
    the following program for your reference:
    =============================================
    REPORT  ytest17.
    DATA ok_code TYPE sy-ucomm,
              save_code TYPE sy-ucomm.
    DATA  container TYPE REF TO cl_gui_custom_container.
    DATA  picture TYPE REF TO cl_gui_picture.
    DATA  init.
    CALL SCREEN 100.
    MODULE user_command_0100 INPUT
    MODULE user_command_0100 INPUT.
      save_code = ok_code.
      CLEAR ok_code.
      CASE save_code.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                    "user_command_0100 INPUT
    MODULE status_0100 OUTPUT
    MODULE status_0100 OUTPUT.
      IF init IS INITIAL.
        DATA url(255).
        CLEAR url.
        CREATE OBJECT container
        EXPORTING container_name = 'P1'.
        CREATE OBJECT picture
        EXPORTING parent = container
        EXCEPTIONS error = 1.
        IF sy-subrc NE 0.
        ENDIF.
        PERFORM load_pic_db CHANGING url.
        CALL METHOD picture->load_picture_from_url
          EXPORTING
            url = url.
        IF sy-subrc NE 0.
        ENDIF .
        init = 'X'.
      ENDIF.
    ENDMODULE.                    "status_0100 OUTPUT
    *&      Form
          text
    FORM load_pic_db changing p_url.
      data query_table like w3query occurs 1 with header line.
      data html_table like w3html occurs 1.
      data return_code like w3param-ret_code.
      data connect_type like w3param-cont_type.
      data connect_length like w3param-cont_len.
      data pic_data like w3mime occurs 0.
      data pic_size type i.
      refresh query_table.
      query_table-name = '_object_id'.
      query_table-value = 'TESTPIC'.
      append query_table.
    CALL FUNCTION 'WWW_GET_MIME_OBJECT'
      TABLES
        query_string              =  query_table
        html                      =  html_table
        mime                      =  pic_data
      changing
        return_code               =  return_code
        content_type              =  connect_type
        content_length            =  connect_length
    EXCEPTIONS
       OBJECT_NOT_FOUND          = 1
       PARAMETER_NOT_FOUND       = 2
       OTHERS                    = 3
    IF sy-subrc <> 0.
    pic_size  = connect_length.
    ENDIF.
    CALL FUNCTION 'DP_CREATE_URL'
      EXPORTING
        type                       = 'image'
        subtype                    =  cndp_sap_tab_unknown
        SIZE                       =  pic_size
      DATE                       =
      TIME                       =
      DESCRIPTION                =
        LIFETIME                   = cndp_lifetime_transaction
      CACHEABLE                  =
      SEND_DATA_AS_STRING        =
      FIELDS_FROM_APP            =
      tables
        data                       = pic_Data
      FIELDS                     =
      PROPERTIES                 =
      COLUMNS_TO_STRETCH         =
      changing
        url                        = 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.
    ENDIF.
    endform.
    *&      Module  CANCEL  INPUT
          text
    module CANCEL input.
    LEAVE PROGRAM.
    endmodule.                 " CANCEL  INPUT
    =============================================

  • Customise Sap Report -- Add logo and change report layout

    Hi All,
    I have a requirement to amend sap standard report to add logo and change layout, could some one pls point me to teh right direction. Should we .1 Create a new smartfrom if yes -- how to to create smartfroms
    2. Should we create new Zreport...3. Is Adobe Interactive forms any good---- cld you please share the steps to create Adobe Ine Form 4. is sap script any good way in my situation
    Thanks
    Smith

    Changes to SAP Standard are always a bit tricky, specially if we are talking about legal reports. If the standard report uses smartform, you can change the standard form without needing a SSCR key, so no need to create a Z report or smartform even, but like every change on SAP Standard, if further changes are made by SAP through Support packages you will always have to replicate them yourself everytime this happens. I would suggest creating a new Z report by copy of standard and new Z smartform, that way you can always recurr to the standard and see what was changed and then replicate them in you Z reports.
    To create smartform, go to TCode smarforms and you can create one by copy of an existing smartform.
    Adobe Interactive forms is more complex then smartforms and unless the standard uses a print form, i would not suggest you creating one as it will envolve a bit more knowledge.

  • Which label printers work with Reports 10g?

    Hi,
    I'm looking to buy a label printer for my application which is Forms/Reports 10g.
    I didn't have a lot of luck with Oracle Reports printing to non-standard printers, so any suggestion on what make / model that you have used in your projects is appreciated.
    By the way, the Application Server is 10g (9.0.4) installed on a Windows 2003 server machine.
    Thanks.

    Anyone?

  • Can we add custom print button to crystal report launched using jsp

    Hi,
    I need to add a print icon in crystal report. My requirement states that I should not use the print button given in the taskbar of crystal report. Can this be done?
    Thanks

    Are you using Crystal Reports for Eclipse?  If so, there is a new version out that suports Excel exporting:
    /people/blair.wheadon/blog/2009/01/16/announcing-crystal-reports-for-eclipse-20

Maybe you are looking for

  • What else are sample CDs good for?

    Newbie question here. This is what I know about software samplers like EXS24. You have sample collections that you load into the sampler, and can play back the samples with your MIDI controller. You can take individual drum sounds (kicks, snares, etc

  • Create or replace macro

    I am try use MACRO to define SET statement such as create or replace macro SAMPLE.'@BR_INIT_STATEMENT' as SET CACHE HIGH; SET MSG SUMMARY; SET NOTICE LOW: SET UPDATECALC OFF; SET CALCPARALLEL 1; SET CALCTASKDIMS 1; SET CLEARUPDATESTATUS OFF; SET LOCK

  • Create schema with all privileges

    hi I am creating Schema using following sql commands  with SYSTEM as user Create Schema Live2; CREATE COLUMN TABLE "Connections" ( "memberIdFrom" INTEGER NOT NULL, "memberIdTo" INTEGER NOT NULL, PRIMARY KEY ("memberIdFrom","memberIdTo") Then I goto S

  • CSS and animated GIFs?

    I'm having a weird issue trying to implement this animated gif into this homepage. Why is my gif all wonky looking? Thanks, Sean

  • 6110 navagator no good in australia

    the nokia 6110 navagator comes pre installed with very outdated maps , they claim they are 2006 which i doubt. Even so we are almost in 2008 and there is no sign not even a glimmer of hope for new maps. *We have all be sucked in* and left holding a u