DBA Data[Home] [Help]

APPS.IBY_CHECKNUMBER_PUB dependencies on FND_API

Line 345: x_return_status := FND_API.G_RET_STS_ERROR;

341: || ' not found in IBY_PAY_INSTRUCTIONS_ALL table. '
342: || 'Processing cannot continue. Aborting program.'
343: );
344:
345: x_return_status := FND_API.G_RET_STS_ERROR;
346:
347: l_error_code := 'IBY_INS_NOT_FOUND';
348: FND_MESSAGE.set_name('IBY', l_error_code);
349:

Line 386: x_return_status := FND_API.G_RET_STS_ERROR;

382: || ' for check numbering. '
383: || 'Processing cannot continue. Aborting program.'
384: );
385:
386: x_return_status := FND_API.G_RET_STS_ERROR;
387:
388: l_error_code := 'IBY_INS_NOT_NUM_STATUS';
389: FND_MESSAGE.set_name('IBY', l_error_code);
390:

Line 462: x_return_status := FND_API.G_RET_STS_SUCCESS;

458: || ' has already been numbered. Returning '
459: || 'success response ..'
460: );
461:
462: x_return_status := FND_API.G_RET_STS_SUCCESS;
463: x_return_message := 'SUCCESS';
464:
465: print_debuginfo(l_module_name, 'EXIT');
466:

Line 519: x_return_status := FND_API.G_RET_STS_ERROR;

515: || 'instruction id. Processing cannot continue. '
516: || 'Aborting program.'
517: );
518:
519: x_return_status := FND_API.G_RET_STS_ERROR;
520:
521: l_error_code := 'IBY_INS_PMTS_NOT_FOUND';
522: FND_MESSAGE.set_name('IBY', l_error_code);
523:

Line 609: IN FND_API.G_FALSE,

605: USING
606: IN p_instruction_id,
607: IN 'GENERATE',
608: IN l_api_version,
609: IN FND_API.G_FALSE,
610: IN FND_API.G_FALSE,
611: OUT x_return_status,
612: OUT l_msg_count,
613: OUT l_msg_data

Line 610: IN FND_API.G_FALSE,

606: IN p_instruction_id,
607: IN 'GENERATE',
608: IN l_api_version,
609: IN FND_API.G_FALSE,
610: IN FND_API.G_FALSE,
611: OUT x_return_status,
612: OUT l_msg_count,
613: OUT l_msg_data
614: ;

Line 621: x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

617: * If the called procedure did not return success,
618: * raise an exception.
619: */
620: IF (x_return_status IS NULL OR
621: x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
622:
623: print_debuginfo(l_module_name, 'Fatal: External app callout '''
624: || l_callout_name
625: || ''', returned failure status - '

Line 667: x_return_status := FND_API.G_RET_STS_SUCCESS;

663: */
664: RAISE;
665: END;
666:
667: x_return_status := FND_API.G_RET_STS_SUCCESS;
668: x_return_message := 'SUCCESS';
669:
670: print_debuginfo(l_module_name, 'Returning success response ..');
671:

Line 683: x_return_status := FND_API.G_RET_STS_ERROR;

679: );
680: print_debuginfo(l_module_name, 'SQLCODE: ' || SQLCODE);
681: print_debuginfo(l_module_name, 'SQLERRM: ' || SQLERRM);
682:
683: x_return_status := FND_API.G_RET_STS_ERROR;
684: x_return_message := l_ret_message;
685:
686: print_debuginfo(l_module_name, 'EXIT');
687:

Line 3625: x_return_status := FND_API.G_RET_STS_ERROR;

3621:
3622: print_debuginfo(l_module_name, 'SQL code: ' || SQLCODE);
3623: print_debuginfo(l_module_name, 'SQL err msg: '|| SQLERRM);
3624:
3625: x_return_status := FND_API.G_RET_STS_ERROR;
3626:
3627: print_debuginfo(l_module_name, 'Returning error response ..');
3628:
3629: print_debuginfo(l_module_name, 'EXIT');

Line 3636: x_return_status := FND_API.G_RET_STS_SUCCESS;

3632:
3633: END;
3634:
3635:
3636: x_return_status := FND_API.G_RET_STS_SUCCESS;
3637:
3638: print_debuginfo(l_module_name, 'Returning success response ..');
3639: print_debuginfo(l_module_name, 'EXIT');
3640:

Line 3891: FND_API.G_TRUE,

3887: * messages to the user.
3888: */
3889: IBY_DISBURSE_UI_API_PUB_PKG.validate_paper_doc_number(
3890: l_api_version,
3891: FND_API.G_TRUE,
3892: p_payment_doc_id,
3893: l_paper_doc_num,
3894: l_return_status,
3895: l_msg_count,

Line 3897: FND_API.G_FALSE

3893: l_paper_doc_num,
3894: l_return_status,
3895: l_msg_count,
3896: l_msg_data,
3897: FND_API.G_FALSE
3898: );
3899:
3900: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
3901:

Line 3900: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

3896: l_msg_data,
3897: FND_API.G_FALSE
3898: );
3899:
3900: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
3901:
3902: print_debuginfo(l_module_name, 'Paper document number '
3903: || l_paper_doc_num
3904: || ' failed validation.'