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

TABLE control in VF01 error

Former Member
0 Likes
1,002

hi,

I have used a user exit to pop up the msg when a enduser enters the a particular condition type in CONDITIONS (item level in VF01), that is working fine as per the requirement, but the other content in the table control of VF01 is showing nothing(means blank line in between ) when the window pops up and comes back to normal,when the user clicks the ok or cancel in the pop up.I am using TRG_INFO_POPUP f.m. for pop up.

please tell why it happens and how to overcome this?

regards,

Prabhu

1 ACCEPTED SOLUTION
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
955

Hi,

The data of the Table control is pushed in the PBO of the flow logic using LOOP AT WITH Table control.

SO make sure your PBO is getting called after the POP-UP is closed.

Check in debug mode.

Regards,

Sesh

7 REPLIES 7
Read only

Former Member
0 Likes
955

please give me some suggestions.

regards,

prabhu

Read only

Former Member
0 Likes
955

Hi Prabhu,

As per i understood you are unable to see the content of control when popup comes.

Have you checked the table controls data's internal table? Check whether it is not clearing anything.

Read only

0 Likes
955

hi prasad,

As u said it is clearing, so suggest me how to over come this.

regards,

Prabhu

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
956

Hi,

The data of the Table control is pushed in the PBO of the flow logic using LOOP AT WITH Table control.

SO make sure your PBO is getting called after the POP-UP is closed.

Check in debug mode.

Regards,

Sesh

Read only

0 Likes
955

hi,

thanks for the input given, I am using a user exit for this POP UP in VF01,so u want me to change VF01 code, can i do something in my user exit it self.

regards,

prabhu

Read only

0 Likes
955

Try to change the OK code of the screen in your user exit so that PBO of the screen is executed. In many cases setting ok code to space (ok_code = ' ') works. If it does not work, see what is function code in your screen for "ENTER" button and use it.

Read only

0 Likes
955

Hi,

I think if you put the statement CALL SCREEN again you will goto that screen or you can also do an EXIT, so that it goes back to the called program which is mostly your main program.

Regards,

Sesh