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: 

delete a line in table regup

Former Member
0 Kudos

hi gurus,

could you please tell me how to delete a particular record in a standard table REGUP.i have tried to delete it ,but the option is greyed out.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

write a program in se38 using database access syntax. u cant delete a record directly in se11 for standard table.

2 REPLIES 2

Former Member
0 Kudos

write a program in se38 using database access syntax. u cant delete a record directly in se11 for standard table.

Former Member
0 Kudos

hi,

using delete statement u can delete a record from a table.check the example.

DELETE FROM regup WHERE vblnr = '900000000' AND

belnr = '100000000'.

u can make use of this.

reward points if helpful.