Application Development and Automation 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: 
Read only

How to insert Logo in module pool programming

Former Member
0 Likes
1,030

Plz any one can explain me that how we will inseart Logo on screens by using module pool programming (in GUI programming) .

5 REPLIES 5
Read only

Former Member
0 Likes
733

Hi hanuma,

Regards,

Sravanthi

Read only

Former Member
0 Likes
733

Hi Hanuma,

Check this link:

Regards,

Chandra Sekhar

Read only

Former Member
0 Likes
733

Hi,

Please search SDN first for all such easy questions. You will get lot of links. Even some of them will give you extra info then your requirment.

However chek this link

Regards,

Anirban

Read only

Former Member
0 Likes
733

Hi,

Check this thread , you wil get lots of information-

Regards,

Sujit

Read only

valter_oliveira
Active Contributor
0 Likes
733

Hello.

I'll give you an example of inserting a personal photo in UI programming. Hope it helps you.

First of all, in your screen (painter), insert a custom control and give it a name (PHOTO in my example).

Then, in your screen PBO, insert a coding like this:


 CLEAR handle.
 CALL FUNCTION 'HR_IMAGE_INIT'
    EXPORTING
      p_pernr        = pernr
      p_tclas        = 'A'
      container      = 'PHOTO'
    IMPORTING
      handle         = handle
    EXCEPTIONS
      no_document    = 1
      internal_error = 2
      OTHERS         = 3.
  CALL FUNCTION 'HR_IMAGE_SHOW'
    EXPORTING
      p_pernr        = pernr
      p_tclas        = 'A'
      handle         = handle
    EXCEPTIONS
      invalid_handle = 1
      no_document    = 2
      internal_error = 3
      OTHERS         = 4.

Regards.

Valter Oliveira.