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 |
how to create view in bdc..??
which commands are allowed if you are working with an internal table of type sorted?
Write the bdc table structure? : abap bdc
How are the date and time field values stored in SAP?
when does the secondary index should be used what role it play when we use secondary index in tables
Where the payroll results are stored
Table events aNd table maintains generation
write the program for prime numbers between 1 to 1000
What is narrow casting and wide casting?
what is the use of field symbol?
What is locking ?
What is technically difference between in Table creation in table creation maintenance not allowed ,maintenance allowed with restriction, maintenance allowed ?