‎2005 Oct 13 11:10 AM
hi,
I am not getting the data from table ISEG because of no entries but other talbes which contains the data...with similar fields in ISEG...so now i wanted to transfer or update the table ..
what is the procedure and advice me..
raju
‎2005 Oct 13 11:20 AM
Hi,
I don't understood your problem?
can you explain me better?
bye
enzo
‎2005 Oct 13 11:31 AM
i am not getting the data from ISEG table because table entires foud '0'.
i want to wirte a reposrt using with particular talbe ...
for exapmle matnr is there in mara and some other talbe but not updating data in ISEG....
I THINK U GOT MY POINT
‎2005 Oct 13 12:34 PM
Hi,
I assumed that you have matnr and maktx fields in iseg.
data : itab type standard table of iseg,
wa type iseg.
select maramatnr maktmaktx from ( mara inner join makt
on maramatnr = maktmaktx ) into corresponding fields of itab.
insert iseg from table itab.
Kindly reward points if it helps.
‎2005 Oct 13 12:48 PM
ERROR:
You cannot use an internal table as a work area.
‎2005 Oct 13 12:53 PM
Hi,
select maramatnr maktmaktx from ( mara inner join makt
on maramatnr = maktmaktx ) into corresponding fields of <b>table</b> itab.
‎2005 Oct 13 1:29 PM
‎2005 Oct 13 1:31 PM
‎2005 Oct 13 11:42 AM
Hi,
I think u can create a report to update ur table ISEG
1.First move the DBtable that contains the entries into
a internal table ITAB
2.Then use UPDATE DBTABLE FROM TABLE ITAB
TABLE ISEG
DATA: ITAB TYPE TABLE OF DBTABLE
WA LIKE LINE OF ITAB.
SELECT * FROM DBTABLE INTO ITAB.
UPDATE ISEG FROM TABLE ITAB.
Hope i have understood ur question.
Thanks&Regards,
Ruthra
‎2005 Oct 13 12:15 PM
Ruthra,
it is showing me the error
The type "DBTABLE" is unknown, but there is a type with the similar name "TABLE".
RAJU
‎2005 Oct 13 12:29 PM
Hi,
DBTABLE is nothing but the name of a table that contains the entries.Like it can be MARA OR ISEG.
Hope u r clear,
Thanks,
Ruthra