DBA Data[Home] [Help]

APPS.WSM_JOBPURGE_GRP dependencies on FND_API

Line 181: p_return_status := FND_API.G_RET_STS_SUCCESS;

177: x_purge_rec.line_code := p_purge_request.line_code;
178: x_entity_type := p_purge_request.entity_type;
179:
180: if x_entity_type not in (5,8) then
181: p_return_status := FND_API.G_RET_STS_SUCCESS;
182: return;
183: end if;
184:
185:

Line 753: p_return_status := FND_API.G_RET_STS_SUCCESS;

749: X_pk1_value => to_char(x_purge_rec.wip_entity_id),
750: X_pk2_value => to_char(x_purge_rec.org_id),
751: X_delete_document_flag => 'Y' );
752: end if ;
753: p_return_status := FND_API.G_RET_STS_SUCCESS;
754: exception
755: when e_delete_wie_exception then
756: append_report(x_purge_rec, p_option);
757: rollback to osfm_tables;

Line 758: p_return_status := FND_API.G_RET_STS_ERROR;

754: exception
755: when e_delete_wie_exception then
756: append_report(x_purge_rec, p_option);
757: rollback to osfm_tables;
758: p_return_status := FND_API.G_RET_STS_ERROR;
759: when others then
760: p_err_num := SQLCODE;
761: x_purge_rec.info := SUBSTR(SQLERRM, 1, 500);
762: append_report(x_purge_rec, p_option);

Line 764: p_return_status := FND_API.G_RET_STS_ERROR;

760: p_err_num := SQLCODE;
761: x_purge_rec.info := SUBSTR(SQLERRM, 1, 500);
762: append_report(x_purge_rec, p_option);
763: rollback to osfm_tables;
764: p_return_status := FND_API.G_RET_STS_ERROR;
765:
766: end delete_osfm_tables;
767:
768: END WSM_JobPurge_GRP;