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 with module pool table control

Former Member
0 Likes
959

Hi Experts,

I'm working on a table control. In that i have to add a new row and i should able to enter the data into that new row. Now i'm able to add the new row, but when i come back from the screen the new row is disappearing from the table. What should i do for this?

Please help me in this regard

Thanks

G.s.naidu

6 REPLIES 6
Read only

Sandeep_Panghal
Product and Topic Expert
Product and Topic Expert
0 Likes
931

Are you doing a refresh table ??

Read only

0 Likes
931

No I'm not refreshing the table.

This is my logic for the new row



data : temp1 type i.
*add 1 toTAB_CON-lines.
TEMP1 = TAB_CON-lines.
TAB_CON-lines = TEMP1 + 1.
TEMP1 = 0.

Read only

0 Likes
931

Any help regarding this issue please.

Read only

0 Likes
931

populate tab_con-lines from the internal table records

DESCRIBE TABLE IT_tAB LINES FIILL

tab_con-lines = fill

Read only

GauthamV
Active Contributor
0 Likes
931

Check this sample program.

RSDEMO02

Read only

Former Member
0 Likes
931

hi ,

have u createed TC by using Wizard ?

in PAI module, put like this.

module gt_item_modify on chain-request

coding for

module gt_item_modify.

modify gt_itab from gt_itab_wa

index gt_itab-current_line.

if sy-subrc ne 0.

append gt_itab_wa to gt_itab.

endif.

endmodule.

regards

Prabhu