RE: Old Inventory Posting Setup Location Codes
The table runs this code when the delete action is chosen:
local procedure CheckSetupUsage()
var
ValueEntry: Record "Value Entry";
begin
ValueEntry.SetRange("Location Code", "Location Code");
ValueEntry.SetRange("Inventory Posting Group", "Invt. Posting Group Code");
if not ValueEntry.IsEmpty then
Error(YouCannotDeleteErr, "Location Code", "Invt. Posting Group Code");
end;
So if you have postings with that combination of groups you can’t delete it.
Maybe setting a view on the page so you can just filter on the records you want to see could be done