--API to purge concurrent program
Begin
fnd_program.delete_program('XXCUST_AR_RPT','Receivables');
commit;
End;
--API to purge data definition
BEGIN
XDO_DS_DEFINITIONS_PKG.DELETE_ROW('AR','XXCUST_AR_RPT');
END;
--API to purge XML template
BEGIN
XDO_TEMPLATES_PKG.DELETE_ROW('AR','XXCUST_AR_RPT');
END;
Begin
fnd_program.delete_program('XXCUST_AR_RPT','Receivables');
commit;
End;
--API to purge data definition
BEGIN
XDO_DS_DEFINITIONS_PKG.DELETE_ROW('AR','XXCUST_AR_RPT');
END;
--API to purge XML template
BEGIN
XDO_TEMPLATES_PKG.DELETE_ROW('AR','XXCUST_AR_RPT');
END;