cancel
Showing results for 
Search instead for 
Did you mean: 

can i upload logo in simple reports

Former Member
0 Kudos

hi experts,

please tell me can i upload logo in simple reports , if yes then how.

best regards.

subhasis.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

IT IS POSSIBL USING OOPS CONCEPT GO FOR THIS CODE:--

REPORT y_pic_show .

DATA:

docking TYPE REF TO cl_gui_docking_container,

picture_control_1 TYPE REF TO cl_gui_picture,

url(256) TYPE c .

DATA : sum(4) , num1(4) , num2(4).

PARAMETERS: p_dummy(4) DEFAULT '4' .

PARAMETERS: p_dummy1(4) DEFAULT '5' .

AT SELECTION-SCREEN OUTPUT.

PERFORM show_pic.

START-OF-SELECTION.

num1 = p_dummy.

num2 = p_dummy1.

sum = num1 + num2.

WRITE : / sum.

&----


*& Form show_pic

&----


FORM show_pic.

DATA: repid LIKE sy-repid.

repid = sy-repid.

CREATE OBJECT picture_control_1 EXPORTING parent = docking.

CHECK sy-subrc = 0.

CALL METHOD picture_control_1->set_3d_border

EXPORTING

border = 5.

CALL METHOD picture_control_1->set_display_mode

EXPORTING

display_mode = cl_gui_picture=>display_mode_stretch.

CALL METHOD picture_control_1->set_position

EXPORTING

height = 150

left = 700

top = 10

width = 138.

CALL METHOD picture_control_1->load_picture_from_url

EXPORTING

url = 'PIX PATHNAME'.

IF sy-subrc NE 0.

  • Fehlerbehandlung

ENDIF.

ENDFORM. "show_pic

you may refer to this document to know all about pictures in SAP.

http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCCIIMAGE/BCCIIMAGE.pdf

http://help.sap.com/saphelp_erp2004/helpdata/en/e3/41a138c4397a42e10000009b38f842/frameset.htm

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Try this,

Build <b>'top_of_page'</b> and call <b>reuse_alv_commentry_write</b>.

And Upload the logo in OAER.

the remaining body of the simple report, let it be same.

Hope it works...

Thanks.

Reward if helpful.

Former Member
0 Kudos

Hai

S ofcourse u can upload logo into reports using OAER tcode..