2007 Dec 05 5:00 AM
Hi ,
Can anyone provide me sample report for filling the database table with test data ?
Thanks ,
Abhi.
2007 Dec 05 6:15 AM
hi
the code
data : itab type table of Z6731_DEPTDETAIL,
wa type Z6731_DEPTDETAIL.
wa-DEPT_ID = 'z897hkjh'.
wa-DESCRIPTION = 'computer'.
append wa to itab.
wa-DEPT_ID = 'z897hkjhd'.
wa-DESCRIPTION = 'computer'.
append wa to itab.
loop at itab into wa.
insert z6731_DEPTDETAIL from wa.
endloop.
rewards if helpful
Hi ,
Can anyone provide me sample report for filling the database table with test data ?
Thanks ,
Abhi.
2007 Dec 05 6:13 AM
Can you please provide the table name to which you want to upload the data.
Uploading the data can be done using BDC or LSMW,you cannot call it as reporting.
2007 Dec 05 6:15 AM
hi
the code
data : itab type table of Z6731_DEPTDETAIL,
wa type Z6731_DEPTDETAIL.
wa-DEPT_ID = 'z897hkjh'.
wa-DESCRIPTION = 'computer'.
append wa to itab.
wa-DEPT_ID = 'z897hkjhd'.
wa-DESCRIPTION = 'computer'.
append wa to itab.
loop at itab into wa.
insert z6731_DEPTDETAIL from wa.
endloop.
rewards if helpful
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |