DBA Data[Home] [Help]

APPS.WIP_UTILITIES dependencies on WIP_LOGGER

Line 72: l_params wip_logger.param_tbl_t;

68: p_business_flow_code IN NUMBER) IS
69: l_msg_count number;
70: l_label_status varchar2(30);
71: l_msg_data varchar2(240);
72: l_params wip_logger.param_tbl_t;
73: l_returnStatus varchar2(1);
74: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
75: begin
76: p_ret_status := fnd_api.g_ret_sts_success;

Line 86: -- parameter for wip_logger.entryPoint.

82: l_params(2).paramValue := p_table_type;
83: l_params(3).paramName := 'p_business_flow_code';
84: l_params(3).paramValue := p_business_flow_code;
85: -- Fix bug 15904090 ,should not use p_ret_status as the output
86: -- parameter for wip_logger.entryPoint.
87: wip_logger.entryPoint(p_procName => 'wip_utils.print_label_java',
88: p_params => l_params,
89: x_returnStatus => l_returnStatus);
90: if(l_returnStatus <> fnd_api.g_ret_sts_success) then

Line 87: wip_logger.entryPoint(p_procName => 'wip_utils.print_label_java',

83: l_params(3).paramName := 'p_business_flow_code';
84: l_params(3).paramValue := p_business_flow_code;
85: -- Fix bug 15904090 ,should not use p_ret_status as the output
86: -- parameter for wip_logger.entryPoint.
87: wip_logger.entryPoint(p_procName => 'wip_utils.print_label_java',
88: p_params => l_params,
89: x_returnStatus => l_returnStatus);
90: if(l_returnStatus <> fnd_api.g_ret_sts_success) then
91: -- Fix bug 15904090, only if l_returnStatus <> fnd_api.g_ret_sts_success,

Line 112: wip_logger.exitPoint(p_procName => 'wip_utils.print_label_java',

108: get_message_stack(p_msg => p_err_msg);
109: end if;
110:
111: if (l_logLevel <= wip_constants.trace_logging) then
112: wip_logger.exitPoint(p_procName => 'wip_utils.print_label_java',
113: p_procReturnStatus => p_ret_status,
114: p_msg => p_err_msg,
115: x_returnStatus => l_returnStatus); --discard logging return status
116: end if;

Line 145: l_params wip_logger.param_tbl_t;

141: and transaction_source_type_id = 5
142: and transaction_action_id = WIP_CONSTANTS.CPLASSY_ACTION;
143: l_temp_id number;
144:
145: l_params wip_logger.param_tbl_t;
146: l_returnStatus varchar2(1);
147: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
148: begin
149: p_ret_status := fnd_api.g_ret_sts_success;

Line 158: --Fix bug 15904090, should not use p_ret_status as an output for wip_logger.entryPoint

154: l_params(2).paramName := 'p_table_type';
155: l_params(2).paramValue := p_table_type;
156: l_params(3).paramName := 'p_business_flow_code';
157: l_params(3).paramValue := p_business_flow_code;
158: --Fix bug 15904090, should not use p_ret_status as an output for wip_logger.entryPoint
159: wip_logger.entryPoint(p_procName => 'wip_utils.print_label',
160: p_params => l_params,
161: x_returnStatus => l_returnStatus);
162: if(l_returnStatus <> fnd_api.g_ret_sts_success) then

Line 159: wip_logger.entryPoint(p_procName => 'wip_utils.print_label',

155: l_params(2).paramValue := p_table_type;
156: l_params(3).paramName := 'p_business_flow_code';
157: l_params(3).paramValue := p_business_flow_code;
158: --Fix bug 15904090, should not use p_ret_status as an output for wip_logger.entryPoint
159: wip_logger.entryPoint(p_procName => 'wip_utils.print_label',
160: p_params => l_params,
161: x_returnStatus => l_returnStatus);
162: if(l_returnStatus <> fnd_api.g_ret_sts_success) then
163: -- Fix bug 15904090, only if l_returnStatus <> fnd_api.g_ret_sts_success,

Line 185: wip_logger.log(p_msg => 'Calling INV_LABEL.print_label_wrap',

181: else
182: l_temp_id := inv_rec.transaction_interface_id;
183: end if;
184: if (l_logLevel <= wip_constants.trace_logging) then
185: wip_logger.log(p_msg => 'Calling INV_LABEL.print_label_wrap',
186: x_returnStatus => l_returnStatus);
187: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,
188: x_returnStatus => l_returnStatus);
189: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,

Line 187: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,

183: end if;
184: if (l_logLevel <= wip_constants.trace_logging) then
185: wip_logger.log(p_msg => 'Calling INV_LABEL.print_label_wrap',
186: x_returnStatus => l_returnStatus);
187: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,
188: x_returnStatus => l_returnStatus);
189: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,
190: x_returnStatus => l_returnStatus);
191: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,

Line 189: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,

185: wip_logger.log(p_msg => 'Calling INV_LABEL.print_label_wrap',
186: x_returnStatus => l_returnStatus);
187: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,
188: x_returnStatus => l_returnStatus);
189: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,
190: x_returnStatus => l_returnStatus);
191: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,
192: x_returnStatus => l_returnStatus);
193: wip_logger.log(p_msg => 'p_business_flow_code:'||p_business_flow_code,

Line 191: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,

187: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,
188: x_returnStatus => l_returnStatus);
189: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,
190: x_returnStatus => l_returnStatus);
191: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,
192: x_returnStatus => l_returnStatus);
193: wip_logger.log(p_msg => 'p_business_flow_code:'||p_business_flow_code,
194: x_returnStatus => l_returnStatus);
195: end if;

Line 193: wip_logger.log(p_msg => 'p_business_flow_code:'||p_business_flow_code,

189: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,
190: x_returnStatus => l_returnStatus);
191: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,
192: x_returnStatus => l_returnStatus);
193: wip_logger.log(p_msg => 'p_business_flow_code:'||p_business_flow_code,
194: x_returnStatus => l_returnStatus);
195: end if;
196:
197: -- the p_txn_identifier is defined in INVLA10B.pls

Line 207: wip_logger.log(p_msg => 'After Calling INV_LABEL.print_label_wrap',

203: p_business_flow_code => p_business_flow_code,
204: p_transaction_id => l_temp_id,
205: p_transaction_identifier => 2); -- interface
206: if (l_logLevel <= wip_constants.trace_logging) then
207: wip_logger.log(p_msg => 'After Calling INV_LABEL.print_label_wrap',
208: x_returnStatus => l_returnStatus);
209: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,
210: x_returnStatus => l_returnStatus);
211: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,

Line 209: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,

205: p_transaction_identifier => 2); -- interface
206: if (l_logLevel <= wip_constants.trace_logging) then
207: wip_logger.log(p_msg => 'After Calling INV_LABEL.print_label_wrap',
208: x_returnStatus => l_returnStatus);
209: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,
210: x_returnStatus => l_returnStatus);
211: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,
212: x_returnStatus => l_returnStatus);
213: wip_logger.log(p_msg => 'After Calling INV_LABEL p_msg_data:'||p_msg_data,

Line 211: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,

207: wip_logger.log(p_msg => 'After Calling INV_LABEL.print_label_wrap',
208: x_returnStatus => l_returnStatus);
209: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,
210: x_returnStatus => l_returnStatus);
211: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,
212: x_returnStatus => l_returnStatus);
213: wip_logger.log(p_msg => 'After Calling INV_LABEL p_msg_data:'||p_msg_data,
214: x_returnStatus => l_returnStatus);
215: end if;

Line 213: wip_logger.log(p_msg => 'After Calling INV_LABEL p_msg_data:'||p_msg_data,

209: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,
210: x_returnStatus => l_returnStatus);
211: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,
212: x_returnStatus => l_returnStatus);
213: wip_logger.log(p_msg => 'After Calling INV_LABEL p_msg_data:'||p_msg_data,
214: x_returnStatus => l_returnStatus);
215: end if;
216: end loop;
217: elsif (p_table_type = 2) then -- mmtt

Line 231: wip_logger.log(p_msg => 'Calling2 INV_LABEL.print_label_wrap',

227: else
228: l_temp_id := inv_rec.transaction_temp_id;
229: end if;
230: if (l_logLevel <= wip_constants.trace_logging) then
231: wip_logger.log(p_msg => 'Calling2 INV_LABEL.print_label_wrap',
232: x_returnStatus => l_returnStatus);
233: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,
234: x_returnStatus => l_returnStatus);
235: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,

Line 233: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,

229: end if;
230: if (l_logLevel <= wip_constants.trace_logging) then
231: wip_logger.log(p_msg => 'Calling2 INV_LABEL.print_label_wrap',
232: x_returnStatus => l_returnStatus);
233: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,
234: x_returnStatus => l_returnStatus);
235: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,
236: x_returnStatus => l_returnStatus);
237: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,

Line 235: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,

231: wip_logger.log(p_msg => 'Calling2 INV_LABEL.print_label_wrap',
232: x_returnStatus => l_returnStatus);
233: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,
234: x_returnStatus => l_returnStatus);
235: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,
236: x_returnStatus => l_returnStatus);
237: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,
238: x_returnStatus => l_returnStatus);
239: wip_logger.log(p_msg => 'p_business_flow_code:'||p_business_flow_code,

Line 237: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,

233: wip_logger.log(p_msg => 'p_label_status:'||p_label_status,
234: x_returnStatus => l_returnStatus);
235: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,
236: x_returnStatus => l_returnStatus);
237: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,
238: x_returnStatus => l_returnStatus);
239: wip_logger.log(p_msg => 'p_business_flow_code:'||p_business_flow_code,
240: x_returnStatus => l_returnStatus);
241: end if;

Line 239: wip_logger.log(p_msg => 'p_business_flow_code:'||p_business_flow_code,

235: wip_logger.log(p_msg => 'p_ret_status:'||p_ret_status,
236: x_returnStatus => l_returnStatus);
237: wip_logger.log(p_msg => 'l_temp_id:'||l_temp_id,
238: x_returnStatus => l_returnStatus);
239: wip_logger.log(p_msg => 'p_business_flow_code:'||p_business_flow_code,
240: x_returnStatus => l_returnStatus);
241: end if;
242: INV_LABEL.print_label_wrap(x_return_status => p_ret_status,
243: x_msg_count => p_msg_count,

Line 250: wip_logger.log(p_msg => 'After Calling2 INV_LABEL.print_label_wrap',

246: p_business_flow_code => p_business_flow_code,
247: p_transaction_id => l_temp_id,
248: p_transaction_identifier => 1); -- MMTT
249: if (l_logLevel <= wip_constants.trace_logging) then
250: wip_logger.log(p_msg => 'After Calling2 INV_LABEL.print_label_wrap',
251: x_returnStatus => l_returnStatus);
252: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,
253: x_returnStatus => l_returnStatus);
254: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,

Line 252: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,

248: p_transaction_identifier => 1); -- MMTT
249: if (l_logLevel <= wip_constants.trace_logging) then
250: wip_logger.log(p_msg => 'After Calling2 INV_LABEL.print_label_wrap',
251: x_returnStatus => l_returnStatus);
252: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,
253: x_returnStatus => l_returnStatus);
254: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,
255: x_returnStatus => l_returnStatus);
256: wip_logger.log(p_msg => 'After Calling INV_LABEL p_msg_data:'||p_msg_data,

Line 254: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,

250: wip_logger.log(p_msg => 'After Calling2 INV_LABEL.print_label_wrap',
251: x_returnStatus => l_returnStatus);
252: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,
253: x_returnStatus => l_returnStatus);
254: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,
255: x_returnStatus => l_returnStatus);
256: wip_logger.log(p_msg => 'After Calling INV_LABEL p_msg_data:'||p_msg_data,
257: x_returnStatus => l_returnStatus);
258: end if;

Line 256: wip_logger.log(p_msg => 'After Calling INV_LABEL p_msg_data:'||p_msg_data,

252: wip_logger.log(p_msg => 'After Calling INV_LABEL p_label_status:'||p_label_status,
253: x_returnStatus => l_returnStatus);
254: wip_logger.log(p_msg => 'After Calling INV_LABEL p_ret_status:'||p_ret_status,
255: x_returnStatus => l_returnStatus);
256: wip_logger.log(p_msg => 'After Calling INV_LABEL p_msg_data:'||p_msg_data,
257: x_returnStatus => l_returnStatus);
258: end if;
259: end loop;
260: end if;

Line 263: wip_logger.exitPoint(p_procName => 'wip_utils.print_label',

259: end loop;
260: end if;
261:
262: if (l_logLevel <= wip_constants.trace_logging) then
263: wip_logger.exitPoint(p_procName => 'wip_utils.print_label',
264: p_procReturnStatus => p_ret_status,
265: p_msg => p_msg_data,
266: x_returnStatus => l_returnStatus); --discard logging return status
267: end if;

Line 290: l_params wip_logger.param_tbl_t;

286: p_ret_status OUT NOCOPY VARCHAR2,
287: p_msg_count OUT NOCOPY NUMBER,
288: p_msg_data OUT NOCOPY VARCHAR2,
289: p_label_status OUT NOCOPY VARCHAR2) is
290: l_params wip_logger.param_tbl_t;
291: l_returnStatus varchar2(1);
292: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
293: begin
294: p_ret_status := fnd_api.g_ret_sts_success;

Line 327: --Fix bug 15904090, should not use p_ret_status as an output for wip_logger.entryPoint

323: l_params(14).paramName := 'p_uom';
324: l_params(14).paramValue := p_uom;
325: l_params(15).paramName := 'p_no_of_copies';
326: l_params(15).paramValue := p_no_of_copies;
327: --Fix bug 15904090, should not use p_ret_status as an output for wip_logger.entryPoint
328: wip_logger.entryPoint(p_procName => 'wip_utils.print_label',
329: p_params => l_params,
330: x_returnStatus => l_returnStatus);
331: if(l_returnStatus <> fnd_api.g_ret_sts_success) then

Line 328: wip_logger.entryPoint(p_procName => 'wip_utils.print_label',

324: l_params(14).paramValue := p_uom;
325: l_params(15).paramName := 'p_no_of_copies';
326: l_params(15).paramValue := p_no_of_copies;
327: --Fix bug 15904090, should not use p_ret_status as an output for wip_logger.entryPoint
328: wip_logger.entryPoint(p_procName => 'wip_utils.print_label',
329: p_params => l_params,
330: x_returnStatus => l_returnStatus);
331: if(l_returnStatus <> fnd_api.g_ret_sts_success) then
332: -- Fix bug 15904090, only if l_returnStatus <> fnd_api.g_ret_sts_success,

Line 360: wip_logger.exitPoint(p_procName => 'wip_utils.print_label',

356: x_msg_data => p_msg_data,
357: x_label_status => p_label_status);
358:
359: if (l_logLevel <= wip_constants.trace_logging) then
360: wip_logger.exitPoint(p_procName => 'wip_utils.print_label',
361: p_procReturnStatus => p_ret_status,
362: p_msg => p_msg_data,
363: x_returnStatus => l_returnStatus); --discard logging return status
364: end if;

Line 831: l_params wip_logger.param_tbl_t;

827: l_item_id NUMBER;
828: l_label_status VARCHAR2(30);
829: l_returnStatus VARCHAR2(1);
830: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
831: l_params wip_logger.param_tbl_t;
832: l_msg_data VARCHAR2(100);
833:
834: CURSOR job_serials (p_org_id NUMBER, p_we_id NUMBER, p_item_id NUMBER)
835: IS

Line 856: wip_logger.entryPoint(p_procName => 'wip_utils.print_job_labels',

852: l_params(3).paramName := 'x_msg_count';
853: l_params(3).paramValue := x_msg_count;
854: l_params(4).paramName := 'x_msg';
855: l_params(4).paramValue := x_msg;
856: wip_logger.entryPoint(p_procName => 'wip_utils.print_job_labels',
857: p_params => l_params,
858: x_returnStatus => x_status);
859: if(x_status <> fnd_api.g_ret_sts_success) then
860: raise fnd_api.g_exc_unexpected_error;

Line 891: wip_logger.log(p_msg => 'INV_LABEL.PRINT_LABEL_MANUAL_WRAP results',

887: X_MSG_COUNT => x_msg_count,
888: X_MSG_DATA => l_msg_data,
889: X_LABEL_STATUS => l_label_status);
890: if (l_logLevel <= wip_constants.trace_logging) then
891: wip_logger.log(p_msg => 'INV_LABEL.PRINT_LABEL_MANUAL_WRAP results',
892: x_returnStatus => l_returnStatus); --discard logging return status
893: wip_logger.log(p_msg => x_status,
894: x_returnStatus => l_returnStatus); --discard logging return status
895: wip_logger.log(p_msg => l_msg_data,

Line 893: wip_logger.log(p_msg => x_status,

889: X_LABEL_STATUS => l_label_status);
890: if (l_logLevel <= wip_constants.trace_logging) then
891: wip_logger.log(p_msg => 'INV_LABEL.PRINT_LABEL_MANUAL_WRAP results',
892: x_returnStatus => l_returnStatus); --discard logging return status
893: wip_logger.log(p_msg => x_status,
894: x_returnStatus => l_returnStatus); --discard logging return status
895: wip_logger.log(p_msg => l_msg_data,
896: x_returnStatus => l_returnStatus); --discard logging return status
897: end if;

Line 895: wip_logger.log(p_msg => l_msg_data,

891: wip_logger.log(p_msg => 'INV_LABEL.PRINT_LABEL_MANUAL_WRAP results',
892: x_returnStatus => l_returnStatus); --discard logging return status
893: wip_logger.log(p_msg => x_status,
894: x_returnStatus => l_returnStatus); --discard logging return status
895: wip_logger.log(p_msg => l_msg_data,
896: x_returnStatus => l_returnStatus); --discard logging return status
897: end if;
898:
899:

Line 937: wip_logger.log(p_msg => 'INV_LABEL.PRINT_LABEL_MANUAL_WRAP results for serial '||serial_num.serial_number,

933: );
934: -- End : Changes to fix bug #6860138 --
935:
936: if (l_logLevel <= wip_constants.trace_logging) then
937: wip_logger.log(p_msg => 'INV_LABEL.PRINT_LABEL_MANUAL_WRAP results for serial '||serial_num.serial_number,
938: x_returnStatus => l_returnStatus); --discard logging return status
939: wip_logger.log(p_msg => x_status,
940: x_returnStatus => l_returnStatus); --discard logging return status
941: wip_logger.log(p_msg => l_msg_data,

Line 939: wip_logger.log(p_msg => x_status,

935:
936: if (l_logLevel <= wip_constants.trace_logging) then
937: wip_logger.log(p_msg => 'INV_LABEL.PRINT_LABEL_MANUAL_WRAP results for serial '||serial_num.serial_number,
938: x_returnStatus => l_returnStatus); --discard logging return status
939: wip_logger.log(p_msg => x_status,
940: x_returnStatus => l_returnStatus); --discard logging return status
941: wip_logger.log(p_msg => l_msg_data,
942: x_returnStatus => l_returnStatus); --discard logging return status
943: end if;

Line 941: wip_logger.log(p_msg => l_msg_data,

937: wip_logger.log(p_msg => 'INV_LABEL.PRINT_LABEL_MANUAL_WRAP results for serial '||serial_num.serial_number,
938: x_returnStatus => l_returnStatus); --discard logging return status
939: wip_logger.log(p_msg => x_status,
940: x_returnStatus => l_returnStatus); --discard logging return status
941: wip_logger.log(p_msg => l_msg_data,
942: x_returnStatus => l_returnStatus); --discard logging return status
943: end if;
944:
945: END LOOP;

Line 948: wip_logger.exitPoint(p_procName => 'wip_utils.print_job_labels',

944:
945: END LOOP;
946:
947: if (l_logLevel <= wip_constants.trace_logging) then
948: wip_logger.exitPoint(p_procName => 'wip_utils.print_job_labels',
949: p_procReturnStatus => x_status,
950: p_msg => l_msg_data,
951: x_returnStatus => l_returnStatus); --discard logging return status
952: end if;

Line 971: l_params wip_logger.param_tbl_t;

967: l_label_status VARCHAR2(30);
968: l_msg_data VARCHAR2(100);
969: l_returnStatus VARCHAR2(1);
970: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
971: l_params wip_logger.param_tbl_t;
972:
973: -- Start : Changes to fix bug #6860138 --
974: l_lot_number VARCHAR2(80);
975: l_sch_st_date DATE;

Line 995: wip_logger.entryPoint(p_procName => 'wip_utils.print_serial_label',

991: l_params(5).paramName := 'x_msg_count';
992: l_params(5).paramValue := x_msg_count;
993: l_params(6).paramName := 'x_msg';
994: l_params(6).paramValue := x_msg;
995: wip_logger.entryPoint(p_procName => 'wip_utils.print_serial_label',
996: p_params => l_params,
997: x_returnStatus => x_status);
998: if(x_status <> fnd_api.g_ret_sts_success) then
999: raise fnd_api.g_exc_unexpected_error;

Line 1081: wip_logger.exitPoint(p_procName => 'wip_utils.print_serial_label',

1077: X_MSG_DATA => l_msg_data,
1078: X_LABEL_STATUS => l_label_status);
1079:
1080: if (l_logLevel <= wip_constants.trace_logging) then
1081: wip_logger.exitPoint(p_procName => 'wip_utils.print_serial_label',
1082: p_procReturnStatus => x_status,
1083: p_msg => l_msg_data,
1084: x_returnStatus => l_returnStatus); --discard logging return status
1085: end if;

Line 1099: l_params wip_logger.param_tbl_t;

1095: IS
1096: l_label_status VARCHAR2(30);
1097: l_returnStatus VARCHAR2(1);
1098: l_logLevel NUMBER := fnd_log.g_current_runtime_level;
1099: l_params wip_logger.param_tbl_t;
1100: l_msg_data VARCHAR2(100);
1101:
1102: BEGIN
1103: x_status := fnd_api.g_ret_sts_success;

Line 1114: wip_logger.entryPoint(p_procName => 'wip_utils.print_move_txn_label',

1110: l_params(3).paramName := 'x_msg_count';
1111: l_params(3).paramValue := x_msg_count;
1112: l_params(4).paramName := 'x_msg';
1113: l_params(4).paramValue := x_msg;
1114: wip_logger.entryPoint(p_procName => 'wip_utils.print_move_txn_label',
1115: p_params => l_params,
1116: x_returnStatus => x_status);
1117: if(x_status <> fnd_api.g_ret_sts_success) then
1118: raise fnd_api.g_exc_unexpected_error;

Line 1132: wip_logger.exitPoint(p_procName => 'wip_utils.print_move_txn_label',

1128: P_TRANSACTION_ID => p_txn_id, -- from WMT
1129: P_TRANSACTION_IDENTIFIER => 9);
1130:
1131: if (l_logLevel <= wip_constants.trace_logging) then
1132: wip_logger.exitPoint(p_procName => 'wip_utils.print_move_txn_label',
1133: p_procReturnStatus => x_status,
1134: p_msg => l_msg_data,
1135: x_returnStatus => l_returnStatus); --discard logging return status
1136: end if;