Which and How will you use function module for ALV
Interactive report?
Answers were Sorted based on User's Feedback
Answer / sivaramakrishna
in case of interactive alv to get all 17 events we use one
fm i.e reuse_alv_events-get .
using read table statement we read required event form
above itab to which all 17 events is exported in above fm.
using the reuse_alv_commentary_write fm to displa any thing
on list screen.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / c. mitra
one function to display simple ALV program.
REUSE_ALV_LIST_DISPLAY or REUSE_ALV_GRID_DISPLAY.
for logo
REUSE_ALV_COMMENTARY_WRITE function module are used.
first we have to assign
TYPE-POOLS: SLIS.
then we have create internal table of type SLIS_T_FIELDCAT_ALV
and work are type SLIS_FIELDCAT_ALV.
then after your process means after retrive of data we have
create columns assign field name , coulmn name no of column
as example.
**clear wa_fieldcatalog.
**
**wa_fieldcatalog-col_pos = 6.
**wa_fieldcatalog-fieldname = 'LIFNR'.
**WA_FIELDCATALOG-tabname = 'IT_FINAL'.
**WA_FIELDCATALOG-seltext_l = 'VENDOR A/C NO'.
**APPEND WA_FIELDCATALOG TO IT_FIELDCATALOG.
after this form layout as your necessary.
call function module REUSE_ALV_LIST_DISPLAY or
REUSE_ALV_GRID_DISPLAY.
in that
i_callback_program = sy-repid i.e the prgname.
is_layout = work area of slis_layout_alv.
it_fieldcat = internal table type slis_t_fieldcat_alv
t_outtab = internal table where retieve data are stored.
Is This Answer Correct ? | 3 Yes | 1 No |
what is mean by table control, where it is used? why it is use?
if you want to improve the response time logical database permits you to achive this using?
In MPP,i have to create a input/output Button when i click ther i have to move some other transaction How?
What will happen when we use fully buffered in abap?
What is logical database? : abap hr
Write syntax for message error (report)?
what is diff between idocs,bdc,rfc and bapi. give real time answer
What are the different methods of bdc? : abap bdc
How does system know that your SAP login userid is assigned to a perticular employee number (PERNR)?
What are the functional modules used in sequence in bdc? : abap hr
How to convert the Unit for 'Distance' (The value from one Unit to another).
If you are at 3rd list how can you back to 1st list?