hi frnds,
In my screen i have 10 subscreens and i need to insert data from screen to DB tables.
The problem is for the 10 subscreen am using the 1 DB table.
and it is gvng dump.
form INSERT_TYPE1 .
insert ZBARCODELIST from table it_bar accepting duplicate keys.
if sy-subrc = 0.
commit work.
else.
leave program.
endif.
form INSERT_TYPE2 .
insert ZBARCODELIST from table it_bar accepting duplicate keys.
if sy-subrc = 0.
commit work.
else.
leave program.
endif.
Is it possible? If no how?