‎2010 Nov 23 11:28 AM
Hi Experts,
I am using the function module POPUP_WITH_TABLE_DISPLAY to display the internal table data and it displays the output correctly but the the pop up is appearing is very small. In the function module passing the the field endpos_row value is sy-tfill. I want to display the pop up is large. I hvae tried with the POPUP_WITH_TABLE function module also but that also does not worked.
Is there any option or any other function module to display the pop up.
‎2010 Nov 23 11:34 AM
Hi,
In this FM 'POPUP_WITH_TABLE_DISPLAY' fill the following parameters and try.
EXPORTING ENDPOS_COL = 41
ENDPOS_ROW = 10
STARTPOS_COL = 1
STARTPOS_ROW = 1Thanks
anversha
‎2010 Nov 23 11:43 AM
Hi anversha,
Thanks for your information.
actually I have to display the internal table data with hundreds of records. I get the the problem with giving the parameters option 41.
Please suggest if any.
Thanks,
mahendar
‎2010 Nov 23 11:53 AM
HI,
Can you try below FM and let us know the feedback.
REUSE_ALV_POPUP_TO_SELECTcall function 'REUSE_ALV_POPUP_TO_SELECT'
exporting
I_TITLE = 'This is the message here'
* i_checkbox_fieldname = 'CHECK' "command this parameter
i_tabname = 'IKU'
it_fieldcat = it_fcatlog
tables
t_outtab = it_table
exceptions
program_error = 1
others = 2.
You prepare the fieldcatlog and internal like normal ALV.This will work for you.
Thanks
Anversha
‎2010 Nov 23 11:42 AM
Its works with given value of ENDPOS_ROW. check the value of sy-tfill which you are passing to function module.
‎2010 Nov 23 11:44 AM
Hi Vinod,
It is working with the parameter sy-tfill. But the problem is displaying the popup is very small.
Regards,
Mahendar
‎2010 Nov 23 11:57 AM
Duplicate post removed.
Edited by: Vinod Kumar on Nov 23, 2010 5:34 PM
‎2010 Nov 23 12:41 PM