‎2012 Feb 16 7:24 AM
Hi..
i have taken one table control using table control wizard all rows are mandatory . when i entered value in table and pressing enter key that time other values or rows will be non editable or grayed out so i cant input other value after pressing entered .
how to solve this problem?
please help.
thanks,
Dipak
‎2012 Feb 16 8:06 AM
pls check if all fields are greyed out. As all your fields are mandatory , some field must be blank. In that case, that 1 field will be enabled. It is to make sure that you enter values in this field. Once you enter value in this field,, the next unfilled field will be highlighted.
‎2012 Feb 16 12:37 PM
I have solved this problem.
i have added module in PBO within loop of table .
module TC_BP_CHANGE_TC_ATTR1 output.
IF TC_BP-lines is initial.
*data: l_var(2) type c.
l_var = TC_BP-CURRENT_LINE.
endif.
endmodule.
and in PAI
also added module in PAI
module TC_BP_CHANGE_TC_ATTR2 input.
DESCRIBE TABLE T_CUSTBP LINES TC_BP-lines.
data: l_var1(2) type c.
l_var1 = l_var - TC_BP-lines.
IF TC_BP-lines is not initial.
DO l_var1 TIMES.
append initial line to t_custbp.
ENDDO.
ENDIF.
endmodule.
so its working.
Thanks.
Dipak.