1. 程式人生 > >ABAP螢幕開發-螢幕插入圖片

ABAP螢幕開發-螢幕插入圖片

相關T-CODE

SE78:維護需要在螢幕上插入的圖片

SE80:畫螢幕&Coding

*&-------------------------------------------------------------------*
*&    定義變數
*&-------------------------------------------------------------------* 
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.


*&-------------------------------------------------------------------*
*&      Module  STATUS_0100  OUTPUT
*&-------------------------------------------------------------------*
*       PBO
*--------------------------------------------------------------------*
module STATUS_0100 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    = 'ENJOY' "圖片名稱(SE78中維護)
      p_id      = 'BMAP'
      p_btype   = 'BMON'  "(BMON = black&white, BCOL = colour)
    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'               "#EC NOTEXT
          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 =  'CUST_CONTROL'.  "“定製控制”控制元件名稱
   "建立圖片例項       
   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.                 " STATUS_0100  OUTPUT