DBA Data[Home] [Help]

APPS.OEXPURGE dependencies on SO_SALES_CREDITS

Line 1469: FROM so_sales_credits

1465: syntax_required NUMBER := 0;
1466:
1467: CURSOR SO_LOCK_RECORDS IS
1468: SELECT header_id -- Lock rows to be purged
1469: FROM so_sales_credits
1470: WHERE header_id = p_header_id
1471: FOR UPDATE NOWAIT;
1472: BEGIN
1473: OPEN SO_LOCK_RECORDS;

Line 1476: DELETE FROM so_sales_credits

1472: BEGIN
1473: OPEN SO_LOCK_RECORDS;
1474: CLOSE SO_LOCK_RECORDS;
1475:
1476: DELETE FROM so_sales_credits
1477: WHERE header_id = p_header_id;
1478:
1479: RETURN SQLCODE;
1480:

Line 1488: 'OEPUR: SO_SALES_CREDITS',

1484: ROLLBACK;
1485: so_record_errors( return_status,
1486: p_request_id,
1487: p_header_id,
1488: 'OEPUR: SO_SALES_CREDITS',
1489: NULL );
1490: CLOSE SO_LOCK_RECORDS;
1491: RETURN return_status;
1492: