| Home • Tips • Tutorials • Forums • Certification Q's • Interview Q's • Jobs • Testimonials • Contact Us | ||
Document Categories:
What's New?
Contribute?Sample SpecsWhat's Hot? |
Display Logo on ScreenBy Suresh Kumar Parvathaneni You can display logo(s) on your screen using the custom control function. A
custom control is an area on the screen, created using the screen painter.
Custom controls are used to embed controls. Container controls are instances of
special global classes from the SAP Control Framework. The global class for
custom controls is called CL_GUI_CUSTOM_CONTAINER. To link a custom control to a
container control, pass the custom control name to the CONTAINER_NAME parameter
of the container control constructor when you instantiate it. The following is a
sample program to demonstrate the logo display using the custom control. This
program was written in SAP4.6C. Design a screen with the custom control, by name
PICTURE_CONTAINER. It has the following flow logic: Code REPORT ZSURESH_TEST . * Type declarations..................... TYPES pict_line(256) TYPE c. * data declarations...................... DATA :init, container TYPE REF TO cl_gui_custom_container, editor TYPE REF TO cl_gui_textedit, picture TYPE REF TO cl_gui_picture, pict_tab TYPE TABLE OF pict_line, url(255) TYPE c. CALL SCREEN 100. * Dialog modules...................................... MODULE status_0100 OUTPUT. SET PF-STATUS 'SCREEN100'. IF init is initial. init = 'X'. CREATE OBJECT: container EXPORTING container_name = 'PICTURE_CONTAINER', picture EXPORTING parent = container. ENDIF. IMPORT pict_tab = pict_tab FROM DATABASE abtree(pi) ID 'ENJOY'. CALL FUNCTION 'DP_CREATE_URL' EXPORTING type = 'IMAGE' subtype = 'GIF' TABLES data = pict_tab CHANGING url
= url. CALL METHOD picture->load_picture_from_url EXPORTING url = url. CALL METHOD picture->set_display_mode EXPORTING display_mode = picture->display_mode_fit_center. ENDMODULE. MODULE cancel INPUT. LEAVE TO SCREEN 0. ENDMODULE.
|
|
|
Please send us your feedback/suggestions at webmaster@SAPTechnical.COM Home • Contribute • About Us • Privacy • Terms Of Use • Disclaimer • Safe • Companies: Advertise on SAPTechnical.COM | Post Job • Contact Us ©2006-2007 SAPTechnical.COM. All rights reserved. All
product names are trademarks of their respective companies. SAPTechnical.COM
is in no way affiliated with SAP AG. Graphic Design by Round the Bend Wizards |
||