cancel
Showing results for 
Search instead for 
Did you mean: 

delete data from table FDSB

Former Member
0 Kudos

Dear all,

Does anyone know the program that can be used to delete data from table FDSB?

thanks in advance for your help

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

According to OSS note 16572, you can use transaction FDFD. But read the note first.

Rob

rahulkavuri
Active Contributor
0 Kudos

hi i have a small code with which u can delete programs from any table

check this small program

REPORT Z_dele_table. .

DELETE FROM FDSB WHERE SEGMT <> 'A'.

here in my FDSB table field SEGMT is never equal to A, so all records are deleted.

award points if found helpful

Former Member
0 Kudos

Hi,

Check the where-used list for this table. See if you can find any function module to delete entries in the table.

Otherwise, execute the standard transaction through which you are updating this table, and at teh same time check in another session, the tables that are being locked (Tcode Sm12). IF no other table is linked with this field entries, you can directly write a simple R/3 program to delete the entreis.

Regards

Subramanian

Former Member
0 Kudos

Hi,

Use the where list of the table FDSB..And check the list.

I used where used of the table FDSB..And it showed me these programs..

RFFDDL00 - Program for Deleting Cash Mgt Data from FI/MM/SD/TR

RFFDNA00 - Cash Mgt: Delete and Reconstruct

RFFDZZ00 - Summary Record Update (Special Cases Only)

Thanks,

Naren

ferry_lianto
Active Contributor
0 Kudos

Hi,

Please check this program RFFDZZ00 and look the documentation for more info.

Regards,

Ferry Lianto