Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

tables

Former Member
0 Likes
985

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

10 REPLIES 10
Read only

Former Member
0 Likes
952

Hi,

I don't understood your problem?

can you explain me better?

bye

enzo

Read only

0 Likes
952

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

Read only

0 Likes
952

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.

Read only

0 Likes
952

ERROR:

You cannot use an internal table as a work area.

Read only

0 Likes
952

Hi,

select maramatnr maktmaktx from ( mara inner join makt

on maramatnr = maktmaktx ) into corresponding fields of <b>table</b> itab.

Read only

0 Likes
952

Hey guys, since when is it a good idea to directly update a sap standard table?



insert iseg from table itab.

Regards,

Rich Heilman

Read only

0 Likes
952

This table, ISEG, is filled by the physical inventory processing of standard SAP, you should not be adding entries directly. Use the standard SAP transactions.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
952

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

Read only

0 Likes
952

Ruthra,

it is showing me the error

The type "DBTABLE" is unknown, but there is a type with the similar name "TABLE".

RAJU

Read only

Former Member
0 Likes
952

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