Application Development 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: 

i want to know how have deleted the entries in mkal table

Former Member
0 Kudos

Hello all ,

i want to know how have deleted the entries in mkal table .

can i know what is the procedure to know how have deleted or modified any sap table .

thank you,

Prem.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

U acn find from SCU3( Table History)

Reward points if helpful.

Regards.

Srikanta Gope

2 REPLIES 2

Former Member
0 Kudos

Hi,

U acn find from SCU3( Table History)

Reward points if helpful.

Regards.

Srikanta Gope

Former Member
0 Kudos

DELETE <database table name>.

This statements helps you to delete the contents of Database Table.

<b>MODIFY.</b>

Example

Create or change a message in database table T100. If there is no message with the number 100 in the MYMSGCLASS message class in English, it will be created. Otherwise only the text is changed.

DATA message_wa TYPE t100.

message_wa-sprsl = 'EN'.

message_wa-arbgb = 'MYMSGCLASS'.

message_wa-msgnr = '100'.

message_wa-text = 'Some new message ...'.

MODIFY t100 FROM message_wa.

Regards,

Pavan.