2007 Jan 05 2:02 PM
hi guys,
i have data in INTERNAL TABLE and i want to send it to TCURR (standard table)
HOW SHUD I DO IT.
ahmed
hi guys,
i have data in INTERNAL TABLE and i want to send it to TCURR (standard table)
HOW SHUD I DO IT.
ahmed
2007 Jan 05 2:04 PM
hi ,
use this statement.
insert TCURR from table internal_table _name.
of course the internal table structure should be same as TCURR.
sateesh.
Message was edited by:
sateesh kumar
2007 Jan 05 2:06 PM
Hi Ahmed,
Use INSERT statement to insert entries into database table.
<b>INSERT TCURR FROM TABLE itab.</b>
It is not advisable to INSERT entries directly to database table.
Thanks,
Vinay
2007 Jan 05 2:07 PM
by INSERT statement.
define a work are of type TCURR .
loop at your internal table.
populate the values from you internal table header into work are.
insert into TCURR from work are. .
endloop.
2007 Jan 05 2:08 PM
Hello Ahmed,
U can use Insert or Modify command to update the TCURR table.
But these tables are configuration table, so it is not advisible to change these tables through coding.
Vasanth
2007 Jan 05 2:14 PM
Hi,
As suggested by others you can use
INSERT if you want to insert extra entries, if you would liek to UPDATE any entry in a table iuse UPDATE.
EG:
INSERT INTO spfli VALUES <wa>.
INSERT spfli FROM TABLE itab.
2007 Jan 05 2:28 PM
You cannot directly update standard tables
USe BDC or any BAPIs
2007 Jan 05 2:35 PM
Hi Ahmed,
Please try standard program RFDWZFF0.
or
via configuration (SPRO)
Path: General Settings -> Currencies -> Enter Exchange Rates.
Hope this will help.
Regards,
Ferry Lianto
2007 Jan 25 8:36 AM
You can also use the bapis: BAPI_EXCHANGERATE_CREATE if you want to insert one record to the table each time, or BAPI_EXCHRATE_CREATEMULTIPLE to insert more than one record.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |