Application Development 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: 

ALV Display on the Custom Control

Former Member
0 Kudos

Hi Friends,

Iam developing a Module Pool program where I call a ALV grid on a custom control.

I have only one screen in which i have a input field and a custom control.

when I enter a material number in the input field and press ENTER the custom control should be populated with some of the material details. I have written all the logic. But the problem is when i press enter the custom control is not filled but after I press the REFRESH button present by default on the grid, the details are displayed.

What is the problem??

Regards,

Raju...

3 REPLIES 3

Former Member
0 Kudos

Hi Raju,

Check your PBO event where you pass the values to the output screen.

Thanks,

Prashanth

dani_mn
Active Contributor
0 Kudos

HI,

Use the method <b>REFRESH_TABLE_DISPLAY</b> after filling the new values into <b>it_outtab</b> table. in the PBO flow logic of your Module pool program.

<b>CALL METHOD grid1->refresh_table_display.</b>

Regards,

Former Member
0 Kudos

Hi, Thanks for the reply.

I used this refresh_table_display. It worked fine. but the problem is it works only once. I have written this in the PBO Module. And here again the same problem is there when I press the refresh button it displays me the new value.

Regards,

Raju...