‎2008 Aug 07 7:35 AM
Hi Experts,
am doing table control w/selcolumn name = flag.
code:
flag type c.
data cursr type i.
PAI:
loop with control TAB1.
MODULE i_qa.
ENDLOOP.
module i_qa input.
if flag = 'X'.
GET CURSOR LINE CURSR.
SELECT ques FROM zfaqoi_ques INTO CORRESPONDING FIELDS OF TABLE it_ques WHERE ques = zfaqoi_ques-ques.
CALL METHOD : editor->set_text_as_r3table EXPORTING table = it_ques .
SELECT ans FROM zfaqoi_ans INTO CORRESPONDING FIELDS OF TABLE it_ans WHERE ans = zfaqoi_ans-ans.
CALL METHOD : editor1->set_text_as_r3table EXPORTING table = it_ans.
endif.
endmodule.
I press first row drag goto see display data then i press second row drag first row should be released!!
how is change pgm?
Reply me soon,
S.Suresh.
‎2008 Aug 07 8:11 AM
‎2008 Aug 07 8:11 AM
‎2008 Aug 07 8:32 AM
‎2008 Aug 07 8:34 AM
you could as well restict the selection mode of your table control to single selection.