Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

problem with function module POPUP_WITH_TABLE_DISPLAY

Former Member
0 Likes
1,549

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.

7 REPLIES 7
Read only

anversha_s
Active Contributor
0 Likes
1,218

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 = 1

Thanks

anversha

Read only

0 Likes
1,218

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

Read only

0 Likes
1,218

HI,

Can you try below FM and let us know the feedback.

REUSE_ALV_POPUP_TO_SELECT

call 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

Read only

Former Member
0 Likes
1,218

Its works with given value of ENDPOS_ROW. check the value of sy-tfill which you are passing to function module.

Read only

0 Likes
1,218

Hi Vinod,

It is working with the parameter sy-tfill. But the problem is displaying the popup is very small.

Regards,

Mahendar

Read only

0 Likes
1,218

Duplicate post removed.

Edited by: Vinod Kumar on Nov 23, 2010 5:34 PM

Read only

Former Member
0 Likes
1,218

done