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

problem in table control wizard

dipak_khatavkar
Participant
0 Likes
402

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

2 REPLIES 2
Read only

lijisusan_mathews
Active Contributor
0 Likes
372

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.

Read only

dipak_khatavkar
Participant
0 Likes
372

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.