DBA Data[Home] [Help]

APPS.WIP_DISCRETE_JOB_PROCESSOR dependencies on FND_MESSAGE

Line 34: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || l_ret_msg;

30: p_final_cmp => l_wlcRec.final_completion_flag,
31: p_ret_code => l_ret_code,
32: p_ret_msg => l_ret_msg);
33: if(l_ret_code <> 0) then
34: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || l_ret_msg;
35: raise FND_API.G_EXC_UNEXPECTED_ERROR;
36: end if;
37:
38: UPDATE wip_lpn_completions

Line 52: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED');

48:
49: --if between the form validation and processing a completion txn was committed
50: --overcompletions not allowed
51: if(l_rem_qty < round(l_wlcRec.primary_quantity, 6)) then
52: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED');
53: raise FND_API.G_EXC_UNEXPECTED_ERROR;
54: end if;
55:
56: if(l_wlcRec.operation_seq_num > 0) then

Line 66: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || fnd_message.get_string ('WIP', 'OPERATION_PROCESSING_ERROR');

62: AND operation_seq_num = l_wlcRec.operation_seq_num
63: FOR UPDATE OF quantity_waiting_to_move;
64:
65: if(l_op_qty < ROUND(l_wlcRec.primary_quantity,6)) then
66: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || fnd_message.get_string ('WIP', 'OPERATION_PROCESSING_ERROR');
67: raise FND_API.G_EXC_UNEXPECTED_ERROR;
68: end if;
69:
70:

Line 85: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || fnd_message.get_string('WIP', 'OPERATION_PROCESSING_ERROR');

81: AND wip_entity_id = l_wlcRec.wip_entity_id
82: AND operation_seq_num = l_wlcRec.operation_seq_num;
83: end if;
84: if(SQL%NOTFOUND) then
85: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || fnd_message.get_string('WIP', 'OPERATION_PROCESSING_ERROR');
86: raise FND_API.G_EXC_UNEXPECTED_ERROR;
87: end if;
88:
89: if(round(l_wlcRec.primary_quantity, 6) = l_rem_qty) then --txn completes the job

Line 122: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || fnd_message.get_string('WIP', 'DISCRETE_JOB_KANBAN_ERROR');

118: p_document_type => 5, --discrete job
119: p_document_header_id => l_wlcRec.wip_entity_id);
120:
121: if(l_retVal <> fnd_api.G_RET_STS_SUCCESS) then
122: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || fnd_message.get_string('WIP', 'DISCRETE_JOB_KANBAN_ERROR');
123: raise FND_API.G_EXC_UNEXPECTED_ERROR;
124: end if;
125: end if;
126: /* wip_so_reservations.allocate_completion_to_so(l_wlcRec.organization_id,

Line 135: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || l_msgData;

131: l_retVal,
132: l_msgCount,
133: l_msgData);
134: if(l_retVal <> FND_API.G_RET_STS_SUCCESS) then
135: x_err_msg := fnd_message.get_string('WIP', 'TRANSACTION_FAILED') || ' ' || l_msgData;
136: raise FND_API.G_EXC_UNEXPECTED_ERROR;
137: end if;
138: */
139: x_return_status := FND_API.G_RET_STS_SUCCESS;