DBA Data[Home] [Help]

APPS.JAI_CMN_GST_INV_GEN_PKG dependencies on FND_CONCURRENT

Line 1026: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', NVL(lv_acct_process_message,lv_inv_gen_process_message));

1022: /*
1023: || Atleast one delivery failed Atleast one delivery Succeeded
1024: || Signal completion with warning
1025: */
1026: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', NVL(lv_acct_process_message,lv_inv_gen_process_message));
1027: retcode := '1';
1028: END IF;
1029: IF ln_failure_delivery_ctr = 0 AND ln_success_delivery_Ctr > 0 then
1030: /*

Line 1034: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL', NULL);

1030: /*
1031: || Atleast one delivery Succeeded and none failed
1032: || Signal completion with success
1033: */
1034: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL', NULL);
1035: retcode := '0';
1036: END IF;
1037: IF ln_failure_delivery_ctr > 0 AND ln_success_delivery_Ctr = 0 then
1038: /*

Line 1043: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',NVL(lv_acct_process_message,lv_inv_gen_process_message));

1039: || Atleast one delivery failed and No delivery Succeeded
1040: || Signal completion with error
1041: */
1042: retcode := '2';
1043: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',NVL(lv_acct_process_message,lv_inv_gen_process_message));
1044: END IF;
1045: IF ln_failure_delivery_ctr = 0 AND ln_success_delivery_Ctr = 0 then
1046: /*
1047: || No delivery failed and No delivery Succeeded

Line 1050: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL', NULL);

1046: /*
1047: || No delivery failed and No delivery Succeeded
1048: || Signal completion with Success
1049: */
1050: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL', NULL);
1051: retcode := '0';
1052: END IF;
1053:
1054:

Line 1059: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',substr(sqlerrm,1,1000));

1055: EXCEPTION
1056: WHEN OTHERS THEN
1057: RETCODE := '2';
1058: Fnd_File.PUT_LINE(Fnd_File.LOG,'Unexpected Error occured in procedure jai_cmn_rgm_processing_pkg.process '||substr(sqlerrm,1,300));
1059: lb_completion_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',substr(sqlerrm,1,1000));
1060: ERRBUF := substr(sqlerrm,1,1000);
1061: lv_inv_gen_process_flag := jai_constants.unexpected_error;
1062: lv_acct_process_flag := jai_constants.unexpected_error;
1063: lv_inv_gen_process_message := sqlerrm;