Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to put Company Logo in a SAP R/3 Login Screen

Former Member
0 Kudos

Hi,

1)How can we put our own text in the login screen?

2) how do we put the company logo in the post login R/3 screen?

Regards,

Shobhit

1 ACCEPTED SOLUTION

athavanraja
Active Contributor
0 Kudos

check out this link.

Check out OSS note #205487.

Regards

Raja

3 REPLIES 3

athavanraja
Active Contributor
0 Kudos

check out this link.

Check out OSS note #205487.

Regards

Raja

jayanthi_jayaraman
Active Contributor

Former Member
0 Kudos

Hi,

U can insert logo in both the cases.

Check this

http://www.sap-img.com/abap/alv-logo.htm

* Build report title
  PERFORM build_report_title USING gd_report_title gd_logo.
  DATA:  gd_logo             TYPE sdydo_value,
*&---------------------------------------------------------------------*
*&      Form  BUILD_REPORT_TITLE
*&---------------------------------------------------------------------*
*       Build table for ALVtree header
*----------------------------------------------------------------------*
*  <->  p1        Header details
*  <->  p2        Logo value
*----------------------------------------------------------------------*
FORM build_report_title CHANGING
      pt_report_title  TYPE slis_t_listheader
      pa_logo             TYPE sdydo_value.

  DATA: ls_line TYPE slis_listheader,
        ld_date(10) TYPE c.

* List Heading Line(TYPE H)
  CLEAR ls_line.
  ls_line-typ  = 'H'.
* ls_line-key     "Not Used For This Type(H)
  ls_line-info = 'User Message Service'.
  APPEND ls_line TO pt_report_title.

* Users name (Status Line- TYPE S)
  ls_line-typ  = 'S'.
  ls_line-key  = 'Name '.
  ls_line-info = gd_myname.
  APPEND ls_line TO pt_report_title.

* Status Line(TYPE S)
  ld_date(2) = sy-datum+6(2).
  ld_date+2(1) = '/'.
  ld_date+3(2) = sy-datum+4(2).
  ld_date+5(1) = '/'.
  ld_date+6(4) = sy-datum(4).

  ls_line-typ  = 'S'.
  ls_line-key  = 'Date'.
  ls_line-info = ld_date.
  APPEND ls_line TO pt_report_title.

** Action Line(TYPE A)
*  CLEAR ls_line.
*  ls_line-typ  = 'A'.
*  CONCATENATE 'Report: ' sy-repid INTO ls_line-info  SEPARATED BY space
  .
*  APPEND ls_line TO pt_report_title.
ENDFORM.                    "build_report_title

  CALL METHOD gd_userlist->set_table_for_first_display
     EXPORTING
               is_hierarchy_header  = gd_hierarchy_header
               it_list_commentary   = gd_report_title
 <b>              i_logo               = gd_logo</b>
*               i_background_id      = 'ALV_BACKGROUND'
               i_save               = 'A'
               is_variant            = gd_variant
     CHANGING
               it_outtab            =  it_emptytab      "Must be empty
               it_fieldcatalog      =  gd_fieldcat.