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

delete a line in table regup

Former Member
0 Likes
497

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
Read only

Former Member
0 Likes
446

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

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.

2 REPLIES 2
Read only

Former Member
0 Likes
447

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

Read only

Former Member
0 Likes
446

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.