‎2006 Dec 15 6:23 AM
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.
‎2006 Dec 15 11:44 AM
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.
‎2006 Dec 15 12:44 PM
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.