2006 Dec 20 4:22 PM
What's the best way to store data into a z table from an internal table.
2006 Dec 20 4:32 PM
Hi ,
The best way is to use the MODIFY command , because it can work in two ways , if data is not there a new record is inserted else the existing record is modified.
Regards
Arun
use modify command.
modify ztab from table itab. "itab should be of the same structure as ztable.
Regards,
ravi
2006 Dec 20 4:25 PM
Hi,
Use From table addition..
INSERT ZTABLE FROM TABLE ITAB.
The internal ITAB should be of structure ZTABLE..
Thanks,
Naren
2006 Dec 20 4:26 PM
use modify command.
modify ztab from table itab. "itab should be of the same structure as ztable.
Regards,
ravi
2006 Dec 20 4:30 PM
Hello,
U have to use MODIF ZTAB FROM ITAB.
Since this will overcome the error duplicates entries also.
Vasanth
2006 Dec 20 4:32 PM
Hi ,
The best way is to use the MODIFY command , because it can work in two ways , if data is not there a new record is inserted else the existing record is modified.
Regards
Arun
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |