DBA Data[Home] [Help]

APPS.PON_FORMS_UTIL_PVT dependencies on FND_API

Line 3164: if(x_result = fnd_api.g_ret_sts_success) then

3160: x_result || ', x_error_message = ' ||
3161: x_error_message || ', x_err_code = ' ||
3162: x_error_code);
3163:
3164: if(x_result = fnd_api.g_ret_sts_success) then
3165: p_result := 0;
3166: else
3167: p_result := 1;
3168: p_error := x_error_message;

Line 3307: if(x_result = fnd_api.g_ret_sts_success) then

3303: x_error_code,
3304: x_error_message
3305: );
3306:
3307: if(x_result = fnd_api.g_ret_sts_success) then
3308: p_result := 0;
3309: else
3310: p_result := 1;
3311: p_error := x_error_message;

Line 3409: x_result := fnd_api.g_ret_sts_success;

3405: end if;
3406:
3407:
3408:
3409: x_result := fnd_api.g_ret_sts_success;
3410: print_debug_log(l_api_name, 'END');
3411:
3412: EXCEPTION
3413: WHEN OTHERS THEN

Line 3417: x_result := fnd_api.g_ret_sts_error;

3413: WHEN OTHERS THEN
3414: x_error_code := SQLCODE;
3415: x_error_message := SUBSTR(SQLERRM, 1, 100);
3416: print_error_log(l_api_name, 'EXCEPTION x_error_code = '||x_error_code||' x_error_message = '||x_error_message);
3417: x_result := fnd_api.g_ret_sts_error;
3418: END publishAbstract;
3419:
3420: /*======================================================================
3421: PROCEDURE: performPostSaveChanges PUBLIC

Line 3514: x_result := fnd_api.g_ret_sts_success;

3510: null;
3511: end;
3512: end if;
3513:
3514: x_result := fnd_api.g_ret_sts_success;
3515:
3516: print_debug_log(l_api_name, 'END');
3517:
3518: EXCEPTION

Line 3520: x_result := fnd_api.g_ret_sts_error;

3516: print_debug_log(l_api_name, 'END');
3517:
3518: EXCEPTION
3519: WHEN OTHERS THEN
3520: x_result := fnd_api.g_ret_sts_error;
3521: x_error_code := SQLCODE;
3522: x_error_message := SUBSTR(SQLERRM, 1, 100);
3523: print_error_log(l_api_name, 'EXCEPTION x_error_code = '||x_error_code||' x_error_message = '||x_error_message);
3524:

Line 3562: x_result := fnd_api.g_ret_sts_success;

3558: and parent_field_values_fk = p_parent_fk
3559: and nvl(section_id, -1) <> -1;
3560:
3561:
3562: x_result := fnd_api.g_ret_sts_success;
3563:
3564: print_debug_log(l_api_name, 'END');
3565:
3566: EXCEPTION

Line 3571: x_result := fnd_api.g_ret_sts_error;

3567: WHEN OTHERS THEN
3568: x_error_code := SQLCODE;
3569: x_error_message := SUBSTR(SQLERRM, 1, 100);
3570: print_error_log(l_api_name, 'EXCEPTION x_error_code = '||x_error_code||' x_error_message = '||x_error_message);
3571: x_result := fnd_api.g_ret_sts_error;
3572:
3573: END deleteFormFieldValues;
3574:
3575: /*======================================================================

Line 3636: x_result := fnd_api.g_ret_sts_error;

3632: print_debug_log(l_api_name, 'BEGIN- p_form_id = '||p_form_id||'
3633: p_entity_pk1 = '||p_entity_pk1||'
3634: p_entity_code = '||p_entity_code);
3635:
3636: x_result := fnd_api.g_ret_sts_error;
3637:
3638: delete from pon_form_field_values
3639: where form_id = p_form_id
3640: and entity_pk1 = p_entity_pk1

Line 3643: x_result := fnd_api.g_ret_sts_success;

3639: where form_id = p_form_id
3640: and entity_pk1 = p_entity_pk1
3641: and owning_entity_code = p_entity_code;
3642:
3643: x_result := fnd_api.g_ret_sts_success;
3644:
3645: print_debug_log(l_api_name, 'END');
3646:
3647: EXCEPTION

Line 3652: x_result := fnd_api.g_ret_sts_error;

3648: WHEN OTHERS THEN
3649: x_error_code := SQLCODE;
3650: x_error_message := SUBSTR(SQLERRM, 1, 100);
3651: print_error_log(l_api_name, 'EXCEPTION x_error_code = '||x_error_code||' x_error_message = '||x_error_message);
3652: x_result := fnd_api.g_ret_sts_error;
3653: END deleteValues;
3654:
3655:
3656:

Line 4305: x_return_status := FND_API.G_RET_STS_SUCCESS;

4301: PON_INVALID_EMAIL_TO_EXCEPTION EXCEPTION;
4302: l_curr_lang FND_LANGUAGES.language_code%TYPE;
4303:
4304: BEGIN
4305: x_return_status := FND_API.G_RET_STS_SUCCESS;
4306:
4307: SAVEPOINT post_wf;
4308:
4309: select pon_post_wf_s.nextval

Line 4441: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

4437:
4438: EXCEPTION
4439: when PON_INVALID_EMAIL_TO_EXCEPTION then
4440: rollback to SAVEPOINT post_wf;
4441: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4442: x_reutrn_error :='Email of FedBizOppsis is not setup properly.';
4443: WHEN OTHERS THEN
4444: rollback to SAVEPOINT post_wf;
4445: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 4445: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

4441: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4442: x_reutrn_error :='Email of FedBizOppsis is not setup properly.';
4443: WHEN OTHERS THEN
4444: rollback to SAVEPOINT post_wf;
4445: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4446: l_error_code := SQLCODE;
4447: x_reutrn_error := 'Exception occured in post_wf'|| ' Error Number :' || SQLCODE || ' Exception Message :' || SUBSTR(SQLERRM, 1, 500) ;
4448:
4449: END;

Line 4514: x_result := fnd_api.g_ret_sts_error;

4510: WHEN OTHERS THEN
4511: x_error_code := SQLCODE;
4512: x_error_message := SUBSTR(SQLERRM, 1, 100);
4513: print_error_log(l_api_name, 'EXCEPTION x_error_code = '||x_error_code||' x_error_message = '||x_error_message);
4514: x_result := fnd_api.g_ret_sts_error;
4515: END get_posting_date;
4516:
4517:
4518: END PON_FORMS_UTIL_PVT;