‎2015 Oct 10 1:09 PM
Hello ABAP Friends,
Is there any way to remove records from a RANGES tables based on entries that are in an internal table? I have an internal table with several prooduction order records in it. I also have a RANGES table with a from/to range of production order records. I want the RANGES table to exclude any of the production order records that are in this internal table. So I want to delete these records form consideration from teh RANGES table.
Can that be done?
I have seen where it is possible to delete internal table entries based on the RANGES table but not the other way around.
Thanks for any advice.
Michael
‎2015 Oct 10 1:33 PM
Hi,
you can exclude internal table values in RANGES table.
loop at it. "includes the values to delete
endloop.
Br
Michael
‎2015 Oct 10 1:33 PM
Hi,
you can exclude internal table values in RANGES table.
loop at it. "includes the values to delete
endloop.
Br
Michael
‎2023 Jul 20 7:08 AM
‎2015 Oct 10 1:33 PM
Hi Michael Ryan ,
Create range from internal table and try to delete.
‎2015 Oct 10 1:57 PM