DBA Data[Home] [Help]

APPS.QPR_DEAL_APPROVALS_PVT dependencies on FND_API

Line 968: x_return_status := FND_API.G_RET_STS_SUCCESS;

964: l_approvals_tab approval_table_type;
965: l_user_present_flag boolean;
966: BEGIN
967:
968: x_return_status := FND_API.G_RET_STS_SUCCESS;
969: --alosh: rebuilding ame to counter cases where transactions get reset
970: rebuild_ame_status(p_response_header_id => p_response_header_id);
971:
972: --alosh: invoking ame to get the approver list

Line 1018: x_return_status := FND_API.G_RET_STS_ERROR;

1014: WHEN OTHERS THEN
1015:
1016: --alosh: rollback thru UI
1017: --rollback;
1018: x_return_status := FND_API.G_RET_STS_ERROR;
1019: raise;
1020: END INIT_APPROVALS;
1021:
1022: procedure send_notifications(

Line 1154: x_return_status := fnd_api.g_ret_sts_success;

1150: l_temp_approval_tab approval_table_type;
1151:
1152: begin
1153:
1154: x_return_status := fnd_api.g_ret_sts_success;
1155:
1156: if not is_action_permitted(p_response_header_id => p_response_header_id,
1157: p_user_id => p_user_id,
1158: p_action_code => p_action_code)

Line 1248: x_return_status := fnd_api.g_ret_sts_error;

1244: if p_standalone_call
1245: then
1246: rollback;
1247: end if;
1248: x_return_status := fnd_api.g_ret_sts_error;
1249: raise;
1250: end process_user_action;
1251:
1252:

Line 1283: x_return_status := fnd_api.g_ret_sts_error;

1279: x_approvals_complete => x_approvals_complete,
1280: x_return_status => x_return_status);
1281: exception
1282: when others then
1283: x_return_status := fnd_api.g_ret_sts_error;
1284: raise;
1285: end process_user_action;
1286:
1287:

Line 1321: x_return_status := FND_API.G_RET_STS_SUCCESS;

1317: l_count number;
1318:
1319: begin
1320:
1321: x_return_status := FND_API.G_RET_STS_SUCCESS;
1322:
1323: get_ame_approvals(p_response_header_id => p_new_response_id,
1324: x_approvals_tab => l_approvals_tab,
1325: x_approvals_complete => l_approvals_complete);

Line 1378: x_return_status := FND_API.G_RET_STS_ERROR;

1374:
1375: exception
1376: when others
1377: then
1378: x_return_status := FND_API.G_RET_STS_ERROR;
1379: raise;
1380:
1381: end synch_approvals;
1382:

Line 1397: x_return_status := FND_API.G_RET_STS_SUCCESS;

1393: l_user_list qpr_wkfl_util.char_type;
1394:
1395: begin
1396:
1397: x_return_status := FND_API.G_RET_STS_SUCCESS;
1398:
1399: if p_action_code = 'APPROVE' or p_action_code = 'REJECT'
1400: then
1401:

Line 1417: x_return_status := FND_API.G_RET_STS_ERROR;

1413:
1414: end if;
1415: EXCEPTION
1416: WHEN OTHERS THEN
1417: x_return_status := FND_API.G_RET_STS_ERROR;
1418: END process_stuck_notifications;
1419:
1420:
1421: procedure clear_action_history(

Line 1463: x_return_status := FND_API.G_RET_STS_SUCCESS;

1459: l_ruleDescriptionsOut ame_util.stringList;
1460: l_rules_desc varchar2(1000);
1461: l_count number;
1462: BEGIN
1463: x_return_status := FND_API.G_RET_STS_SUCCESS;
1464: l_application_id := 667;
1465: l_transaction_id := p_response_header_id;
1466: o_comply := 'N';
1467:

Line 1511: x_return_status := FND_API.G_RET_STS_ERROR;

1507: o_comply := 'Y';
1508: end if;
1509: EXCEPTION
1510: WHEN OTHERS THEN
1511: x_return_status := FND_API.G_RET_STS_ERROR;
1512: END;
1513:
1514: END QPR_DEAL_APPROVALS_PVT;