DBA Data[Home] [Help]

APPS.CTO_AUTO_PROCURE_PK dependencies on FND_CONCURRENT

Line 1075: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);

1071: -- In the case of RETCODE = 1 it should complete the batch program with Warning
1072:
1073: IF RETCODE = 1 THEN
1074:
1075: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);
1076:
1077: ELSE
1078:
1079: RETCODE := 0 ;

Line 1080: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);

1076:
1077: ELSE
1078:
1079: RETCODE := 0 ;
1080: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);
1081:
1082: END IF;
1083:
1084:

Line 1093: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

1089: oe_debug_pub.add('auto_create_pur_req_cr: ' || 'AUTO_CREATE_PUR_REQ_CR::exp error::'||to_char(l_stmt_num)||'::'||sqlerrm,1);
1090: rollback to begin_line; --bug fix 3590305/3599860
1091: x_return_status := FND_API.G_RET_STS_ERROR;
1092: RETCODE := 2;
1093: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
1094:
1095: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1096: oe_debug_pub.add('auto_create_pur_req_cr: ' || 'AUTO_CREATE_PUR_REQ_CR::exp error::'||to_char(l_stmt_num)||'::'||sqlerrm,1);
1097: rollback to begin_line; --bug fix 3590305/3599860

Line 1100: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

1096: oe_debug_pub.add('auto_create_pur_req_cr: ' || 'AUTO_CREATE_PUR_REQ_CR::exp error::'||to_char(l_stmt_num)||'::'||sqlerrm,1);
1097: rollback to begin_line; --bug fix 3590305/3599860
1098: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1099: RETCODE := 2;
1100: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
1101:
1102: WHEN OTHERS THEN
1103: oe_debug_pub.add('auto_create_pur_req_cr: ' || 'AUTO_CREATE_PUR_REQ_CR::exp error::'||to_char(l_stmt_num)||'::'||sqlerrm,1);
1104: rollback to begin_line; --bug fix 3590305/3599860

Line 1107: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

1103: oe_debug_pub.add('auto_create_pur_req_cr: ' || 'AUTO_CREATE_PUR_REQ_CR::exp error::'||to_char(l_stmt_num)||'::'||sqlerrm,1);
1104: rollback to begin_line; --bug fix 3590305/3599860
1105: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1106: RETCODE := 2;
1107: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
1108:
1109: END auto_create_pur_req_cr;
1110:
1111:

Line 4147: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);

4143:
4144: if p_perform_rollup = 2 then
4145: oe_debug_pub.add('Perform Rollup parameter is set to NO.');
4146: RETCODE := 0 ;
4147: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);
4148: return;
4149: end if;
4150:
4151: OPEN pprollup_cur FOR

Line 4370: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);

4366: END IF;
4367:
4368:
4369: IF RETCODE = 1 THEN
4370: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);
4371:
4372: ELSE
4373: RETCODE := 0 ;
4374: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);

Line 4374: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);

4370: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING',Current_Error_Code);
4371:
4372: ELSE
4373: RETCODE := 0 ;
4374: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('NORMAL',Current_Error_Code);
4375:
4376: END IF;
4377:
4378: IF PG_DEBUG <> 0 THEN

Line 4397: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

4393: (p_msg_count => x_msg_count
4394: ,p_msg_data => x_msg_data
4395: );
4396: RETCODE := 2 ;
4397: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
4398:
4399: when FND_API.G_EXC_ERROR then
4400: IF PG_DEBUG <> 0 THEN
4401: oe_debug_pub.add('Create_purchase_doc_batch::exp error::'||l_stmt_num||sqlerrm,1);

Line 4408: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

4404: CTO_MSG_PUB.Count_And_Get
4405: (p_msg_count => x_msg_count
4406: ,p_msg_data => x_msg_data);
4407: RETCODE := 2 ;
4408: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
4409:
4410: when others then
4411: IF PG_DEBUG <> 0 THEN
4412: oe_debug_pub.add('Create_purchase_doc_batch::others::'||l_stmt_num||sqlerrm,1);

Line 4420: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);

4416: (p_msg_count => x_msg_count
4417: ,p_msg_data => x_msg_data
4418: );
4419: RETCODE := 2 ;
4420: conc_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR',Current_Error_Code);
4421:
4422: END Create_purchase_doc_batch;
4423:
4424: