Question:
Hi ppl,
I have requirement to allow ordinary users to delete entries with version field value other than '000' in LIS table .
My first idea was to write own abap program with OLIX call transaction after all parameters check. But the olix screen clears all fileds in PBO and I can't deliver all needed parameters to the transaction.
So, what is the best and safe way to delete some entries in LIS table?
Is it as simple as writing DELETE Sxxx WHERE condition. statement?
Regards
CS
Answer:
That's what I have always done in the past.
Might be worth popping a POPUP_TO_CONFIRM type FM in there too, in case someone has a 'blonde' moment and removes data that they need by accident.
_________________
Kind Regards
Rosie Brent
Please remember to search the forum and check the FAQ before posting questions, thank you.
Tuly Idiot most of the time, part-time Guru
Answer:
Thanx Rosie,
It's nice how simple are some things in SAP, isn't it?
Regards
CS
Answer:
Create a COPY version of program RMCAXXX5 (where XXX = your info structure number without letter S). This program allows your to delete data very selectively. You might also hard code the code the values so that 000 does not get wiped out.