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

fields getting disabled in control table.

Former Member
0 Likes
368

Hi All,

In my screen,there is a control table.

When i fill some rows of the control table and press 'Enter',rest of the rows are getting disabled.

Can anybody let me know,why is it happening so and solution for the same?

Thnx in advance.

2 REPLIES 2
Read only

Former Member
0 Likes
343

Hello,

Check PAI & PBO routines carefully.

If you press 'ENTER',after that are you setting screen-fields input=0. ?

IN PBO what you acn do is check for process-code = enter-code ,then the control table loop shd keep screen-input = 1. update screen table.

e.g.For this you need to set group1 in field atribute of control.

LOOP AT SCREEN .

IF SCREEN-GROUP1 = 'GR1'.

SCREEN-INPUT = '1'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

Thanks.

Read only

0 Likes
343

Hello Rushali,

Thnx for your responce.

But in my case if i am filling two records and if pressing enter ,then those two filled records will be enabled for input but rest of the fields are getting disabled.

As per your sentence -

"If you press 'ENTER',after that are you setting screen-fields input=0. ?"

If this would be the case,all the rows of control table would have been disabled.

But in my case only empty records are getting disabled not filled one.

Can you guide me this regard?

Thanx.