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

Deleted Material

Former Member
0 Likes
903

Hai,

From which table we will get the details of the deleted material

Thanks in advance

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
760

Hello,

In the Table MARA the Field <b>LVORM</b> will tell whether tzhe material is deleted or not.

Also see the field <b>MARA-LIQDT</b> to get the Deletion date.

Regards,

Vasanth

4 REPLIES 4
Read only

Former Member
0 Likes
761

Hello,

In the Table MARA the Field <b>LVORM</b> will tell whether tzhe material is deleted or not.

Also see the field <b>MARA-LIQDT</b> to get the Deletion date.

Regards,

Vasanth

Read only

Former Member
0 Likes
760

HI,

check the tables CDPOS & CDHDR...

changed data tables... there u can see which materials r deleted..

but i believe Materials can not be deleted.. u will set a flag to it.

Regards

SAB

Read only

Former Member
0 Likes
760

You've also got deletion flags(also called LVORM) on tables like MARC, MVKE etc if you just want to delete at plant ,sales level.

Read only

Former Member
0 Likes
760

Best way is CDHDR,CDPOS and it has all change logs..

select * from cdhdr into table i_cdhdr

where OBJECTID in r_objectid

and USERNAME in s_usernm

and OBJECTCLAS = 'MATERIAL'

r_object id = material number..

FM : CHANGEDOCUMENT_READ_POSITIONS

Reward Points if it is useful

Thanks

Seshu