plz listen carefully sir,in alv reports how i insert logo
into alv grid(if it is tcode 'oaer' )?tell me procedure,
in the same report how insert background logo tell me the
procedure please?
Answers were Sorted based on User's Feedback
Answer / sandeep
you can use function reuse_alv_commantry_write.
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / mahender
CL_GUI_ALV_TREE_SIMPLE WITH THIS GLOBAL CLASS WE CAN CREATE
LOGO IN ABAP ALV'S.
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / sujoy pal
to show LOGO in ALV grid with header details,
in REUSE_ALV_GRID_DISPLAY,
I_CALLBACK_HTML_TOP_OF_PAGE = 'TOP_OF_PAGE'
*****at the end of main program*******
form TOP_OF_PAGE.
**********Declaration*************
data : glistheader type slis_t_listheader,
llistheader type slis_listheader.
******Populate header data************
clear llistheader.
llistheader-typ = 'H'.
llistheader-info = 'This is Grid Title'.
append llistheader to glistheader.
CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
EXPORTING
it_list_commentary = glistheader
I_LOGO = 'ENJOY_SAP_LOGO'
* I_END_OF_LIST_GRID =
.
endform.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ashokreddy
hi,
for displaying LOGO in ALV GRID CONTROL, we work with
Predefined global class. CL_GUI_ALV_TREE_SIMPLE. FOR
displaying LOGO. AND we use CL_GUI_CUSTOM_CONTAINTER for
identifies the location where we r goinh to display.
DECLARATIONS;
TYPE-POOLS: SDYDO, SLIS.
DATA: L_LOGO TYPE SDYDO_VALUE," FOR DISPLAYING LOGO
L_LIST TYPE SLIS_T_LISTHEADER. " FOR LIST HEADING
DATA: LOGO TYPE SCRFNAME VALUE 'SLOGO',
CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
LOGO1 TYPE REF TO CL_GUI_ALV_TREE_SIMPLE.
** CREATE INSTANCE FOR ABOVE DEFINED CLASSES IN PBO EVENT
OF SCREEN FLOW LOGIC.
IF CONTAINER IS INITIAL.
CREATE OBJECT CONTAINER EXPORTING CONTAINER_NAME =
LOGO.
CREATE OBJECT LOGO1 EXPORTING I_PARENT = CONTAINER.
*** NOW CALL THE METHOD FOR DISPLAYING LOGO IN GRID CONTROL
CALL METHOD LOGO->'CREATE_REPORT_HEADER'
EXPORTING
I_LIST_COMMENTARY = L_LIST
I_LOGO = ' ' " HERE PASS WHERE LOGO EXISTING.
THE ABOVE METHOD EXISTING
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / subramanyam immadisetty
if the tc is 'oaer',goto t.c: oaer,
give class name and class type . for example class
name:pictures, classtype : ot.
and give object key as logoname : zrama(by pressing f8 u
can get object key),save and use functionmodule :
reuse_alv_commentary_write.
Is This Answer Correct ? | 1 Yes | 0 No |
What is synchronous update?
difference between bapi and rfc
What are the various types of the Internal tables used?
what are the events used in LDB?
How to make smartform output into PDF?what r the step and requirments?
What is an update task? : abap modularization
how to change output option of table control?
how many application servers that u r client have?
5 Answers Bristle Cone, Cap Gemini, HCL, HP, Satyam, Wipro,
what is the Tcode BD87?
5 Answers Cibernetix Business Systems, Intel, SAP Labs,
What are the advantages of different types of bdc's?
How many main windows will be there in a page window?
how to capture the errors in bdc Call transaction method?