Delete Request Set from Backend in Oracle Apps

API to remove Oracle EBS Request Set

BEGIN
FND_SET.DELETE_SET(request_set => ‘XX_RG’, application => ‘XXAPPL’);
COMMIT;
end;

In the code above, XX_RG is an example request set name and XXAPPL is an example application name.