DBA Data[Home] [Help]

APPS.CSI_INV_TXNSTUB_PKG dependencies on CSI_INV_TRXS_PKG

Line 31: l_mtl_trx_rec CSI_INV_TRXS_PKG.MTL_TRX_TYPE;

27: l_error_code VARCHAR2(4000);
28: l_return_status VARCHAR2(1);
29: l_fnd_success VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
30: l_fnd_error VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
31: l_mtl_trx_rec CSI_INV_TRXS_PKG.MTL_TRX_TYPE;
32: l_trx_error_rec CSI_DATASTRUCTURES_PUB.TRANSACTION_ERROR_REC;
33: l_msg_count NUMBER;
34: l_msg_data VARCHAR2(4000);
35: l_txn_error_id NUMBER;

Line 130: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MOVE_ORDER_ISSUE_TO_PROJECT','INV');

126:
127: IF p_transaction_type = 'CSIISUPT' THEN
128: debug('Before Transaction If for: '||p_transaction_type);
129: l_trx_error_rec.transaction_type_id := 113;
130: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MOVE_ORDER_ISSUE_TO_PROJECT','INV');
131: csi_inv_project_pkg.issue_to_project (p_transaction_id,
132: NULL,
133: l_return_status,
134: l_trx_error_rec);

Line 145: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE_TO_PROJECT','INV');

141:
142: ELSIF p_transaction_type = 'CSIMSIPT' THEN
143: debug('Before Transaction If for: '||p_transaction_type);
144: l_trx_error_rec.transaction_type_id := 121;
145: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE_TO_PROJECT','INV');
146: csi_inv_project_pkg.misc_issue_projtask (p_transaction_id,
147: NULL,
148: l_return_status,
149: l_trx_error_rec);

Line 159: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('SUBINVENTORY_TRANSFER','INV');

155:
156: ELSIF p_transaction_type = 'CSISUBTR' THEN
157: debug('Before Transaction If for: '||p_transaction_type);
158: l_trx_error_rec.transaction_type_id := 114;
159: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('SUBINVENTORY_TRANSFER','INV');
160: csi_inv_transfer_pkg.subinv_transfer (p_transaction_id,
161: NULL,
162: l_return_status,
163: l_trx_error_rec);

Line 173: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_TRANS_RECEIPT','INV');

169:
170: ELSIF p_transaction_type = 'CSIORGTR' THEN
171: debug('Before Transaction If for: '||p_transaction_type);
172: l_trx_error_rec.transaction_type_id := 144;
173: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_TRANS_RECEIPT','INV');
174: csi_inv_interorg_pkg.intransit_receipt (p_transaction_id,
175: NULL,
176: l_return_status,
177: l_trx_error_rec);

Line 188: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_TRANS_SHIPMENT','INV');

184:
185: ELSIF p_transaction_type = 'CSIORGTS' THEN
186: debug('Before Transaction If for: '||p_transaction_type);
187: l_trx_error_rec.transaction_type_id := 145;
188: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_TRANS_SHIPMENT','INV');
189: csi_inv_interorg_pkg.intransit_shipment (p_transaction_id,
190: NULL,
191: l_return_status,
192: l_trx_error_rec);

Line 203: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_DIRECT_SHIP','INV');

199:
200: ELSIF p_transaction_type = 'CSIORGDS' THEN
201: debug('Before Transaction If for: '||p_transaction_type);
202: l_trx_error_rec.transaction_type_id := 143;
203: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_DIRECT_SHIP','INV');
204: csi_inv_interorg_pkg.direct_shipment (p_transaction_id,
205: NULL,
206: l_return_status,
207: l_trx_error_rec);

Line 218: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_SHIPMENT','INV');

214:
215: ELSIF p_transaction_type = 'CSIINTSS' THEN
216: debug('Before Transaction If for: '||p_transaction_type);
217: l_trx_error_rec.transaction_type_id := 130;
218: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_SHIPMENT','INV');
219: csi_inv_iso_pkg.iso_shipment(p_transaction_id,
220: NULL,
221: l_return_status,
222: l_trx_error_rec);

Line 233: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_REQUISITION_RECEIPT','INV');

229:
230: ELSIF p_transaction_type = 'CSIINTSR' THEN
231: debug('Before Transaction If for: '||p_transaction_type);
232: l_trx_error_rec.transaction_type_id := 131;
233: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_REQUISITION_RECEIPT','INV');
234: csi_inv_iso_pkg.iso_receipt(p_transaction_id,
235: NULL,
236: l_return_status,
237: l_trx_error_rec);

Line 248: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_DIRECT_SHIP','INV');

244:
245: ELSIF p_transaction_type = 'CSIINTDS' THEN
246: debug('Before Transaction If for: '||p_transaction_type);
247: l_trx_error_rec.transaction_type_id := 142;
248: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_DIRECT_SHIP','INV');
249: csi_inv_iso_pkg.iso_direct(p_transaction_id,
250: NULL,
251: l_return_status,
252: l_trx_error_rec);

Line 263: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PO_RECEIPT_INTO_INVENTORY','INV');

259:
260: ELSIF p_transaction_type = 'CSIPOINV' THEN
261: debug('Before Transaction If for: '||p_transaction_type);
262: l_trx_error_rec.transaction_type_id := 112;
263: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PO_RECEIPT_INTO_INVENTORY','INV');
264: csi_inv_trxs_pkg.receipt_inventory (p_transaction_id,
265: NULL,
266: l_return_status,
267: l_trx_error_rec);

Line 264: csi_inv_trxs_pkg.receipt_inventory (p_transaction_id,

260: ELSIF p_transaction_type = 'CSIPOINV' THEN
261: debug('Before Transaction If for: '||p_transaction_type);
262: l_trx_error_rec.transaction_type_id := 112;
263: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PO_RECEIPT_INTO_INVENTORY','INV');
264: csi_inv_trxs_pkg.receipt_inventory (p_transaction_id,
265: NULL,
266: l_return_status,
267: l_trx_error_rec);
268:

Line 278: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('CYCLE_COUNT','INV');

274:
275: ELSIF p_transaction_type = 'CSICYCNT' THEN
276: debug('Before Transaction If for: '||p_transaction_type);
277: l_trx_error_rec.transaction_type_id := 119;
278: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('CYCLE_COUNT','INV');
279: csi_inv_trxs_pkg.cycle_count (p_transaction_id,
280: NULL,
281: l_return_status,
282: l_trx_error_rec);

Line 279: csi_inv_trxs_pkg.cycle_count (p_transaction_id,

275: ELSIF p_transaction_type = 'CSICYCNT' THEN
276: debug('Before Transaction If for: '||p_transaction_type);
277: l_trx_error_rec.transaction_type_id := 119;
278: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('CYCLE_COUNT','INV');
279: csi_inv_trxs_pkg.cycle_count (p_transaction_id,
280: NULL,
281: l_return_status,
282: l_trx_error_rec);
283:

Line 293: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PHYSICAL_INVENTORY','INV');

289:
290: ELSIF p_transaction_type = 'CSIPHYIN' THEN
291: debug('Before Transaction If for: '||p_transaction_type);
292: l_trx_error_rec.transaction_type_id := 118;
293: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PHYSICAL_INVENTORY','INV');
294: csi_inv_trxs_pkg.physical_inventory (p_transaction_id,
295: NULL,
296: l_return_status,
297: l_trx_error_rec);

Line 294: csi_inv_trxs_pkg.physical_inventory (p_transaction_id,

290: ELSIF p_transaction_type = 'CSIPHYIN' THEN
291: debug('Before Transaction If for: '||p_transaction_type);
292: l_trx_error_rec.transaction_type_id := 118;
293: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PHYSICAL_INVENTORY','INV');
294: csi_inv_trxs_pkg.physical_inventory (p_transaction_id,
295: NULL,
296: l_return_status,
297: l_trx_error_rec);
298:

Line 308: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT','INV');

304:
305: ELSIF p_transaction_type = 'CSIMSRCV' THEN
306: debug('Before Transaction If for: '||p_transaction_type);
307: l_trx_error_rec.transaction_type_id := 117;
308: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT','INV');
309: csi_inv_trxs_pkg.misc_receipt (p_transaction_id,
310: NULL,
311: l_return_status,
312: l_trx_error_rec);

Line 309: csi_inv_trxs_pkg.misc_receipt (p_transaction_id,

305: ELSIF p_transaction_type = 'CSIMSRCV' THEN
306: debug('Before Transaction If for: '||p_transaction_type);
307: l_trx_error_rec.transaction_type_id := 117;
308: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT','INV');
309: csi_inv_trxs_pkg.misc_receipt (p_transaction_id,
310: NULL,
311: l_return_status,
312: l_trx_error_rec);
313:

Line 323: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE','INV');

319:
320: ELSIF p_transaction_type = 'CSIMSISU' THEN
321: debug('Before Transaction If for: '||p_transaction_type);
322: l_trx_error_rec.transaction_type_id := 116;
323: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE','INV');
324: csi_inv_trxs_pkg.misc_issue (p_transaction_id,
325: NULL,
326: l_return_status,
327: l_trx_error_rec);

Line 324: csi_inv_trxs_pkg.misc_issue (p_transaction_id,

320: ELSIF p_transaction_type = 'CSIMSISU' THEN
321: debug('Before Transaction If for: '||p_transaction_type);
322: l_trx_error_rec.transaction_type_id := 116;
323: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE','INV');
324: csi_inv_trxs_pkg.misc_issue (p_transaction_id,
325: NULL,
326: l_return_status,
327: l_trx_error_rec);
328:

Line 338: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT_FROM_PROJECT','INV');

334:
335: ELSIF p_transaction_type = 'CSIMSRPT' THEN
336: debug('Before Transaction If for: '||p_transaction_type);
337: l_trx_error_rec.transaction_type_id := 120;
338: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT_FROM_PROJECT','INV');
339: csi_inv_project_pkg.misc_receipt_projtask (p_transaction_id,
340: NULL,
341: l_return_status,
342: l_trx_error_rec);

Line 353: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISSUE_TO_HZ_LOC','INV');

349:
350: ELSIF p_transaction_type = 'CSIISUHZ' THEN
351: debug('Before Transaction If for: '||p_transaction_type);
352: l_trx_error_rec.transaction_type_id := 132;
353: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISSUE_TO_HZ_LOC','INV');
354: csi_inv_hz_pkg.issue_to_hz_loc (p_transaction_id,
355: NULL,
356: l_return_status,
357: l_trx_error_rec);

Line 368: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE_HZ_LOC','INV');

364:
365: ELSIF p_transaction_type = 'CSIMSIHZ' THEN
366: debug('Before Transaction If for: '||p_transaction_type);
367: l_trx_error_rec.transaction_type_id := 133;
368: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE_HZ_LOC','INV');
369: csi_inv_hz_pkg.misc_issue_hz_loc (p_transaction_id,
370: NULL,
371: l_return_status,
372: l_trx_error_rec);

Line 383: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT_HZ_LOC','INV');

379:
380: ELSIF p_transaction_type = 'CSIMSRHZ' THEN
381: debug('Before Transaction If for: '||p_transaction_type);
382: l_trx_error_rec.transaction_type_id := 134;
383: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT_HZ_LOC','INV');
384: csi_inv_hz_pkg.misc_receipt_hz_loc (p_transaction_id,
385: NULL,
386: l_return_status,
387: l_trx_error_rec);

Line 398: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');

394:
395: ELSIF p_transaction_type = 'CSISOFUL' THEN
396: debug('Before Transaction If for: '||p_transaction_type);
397: l_trx_error_rec.transaction_type_id := 51;
398: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');
399: l_trx_error_rec.inv_material_transaction_id := null;
400:
401: csi_order_fulfill_pub.order_fulfillment(
402: p_order_line_id => p_transaction_id,

Line 418: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('RMA_FULFILL','CSI');

414:
415: ELSIF p_transaction_type = 'CSIRMAFL' THEN
416: debug('Before Transaction If for: '||p_transaction_type);
417: l_trx_error_rec.transaction_type_id := 54;
418: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('RMA_FULFILL','CSI');
419: l_trx_error_rec.inv_material_transaction_id := null;
420: csi_rma_fulfill_pub.rma_fulfillment(
421: p_rma_line_id => p_transaction_id,
422: p_message_id => NULL,

Line 435: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');

431:
432: ELSIF p_transaction_type = 'CSISOSHP' THEN
433: debug('Before Transaction If for: '||p_transaction_type);
434: l_trx_error_rec.transaction_type_id := 51;
435: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');
436:
437: l_use_parallel_mode := NVL(fnd_profile.value('CSI_TXN_PARALLEL_MODE'), 'N'); --Code Added for MACD Enhancement
438:
439: if (l_use_parallel_mode = 'N') then --Code Added for MACD Enhancement

Line 559: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_ISSUE','ONT');

555:
556: ELSIF p_transaction_type = 'CSIINTIS' THEN
557: debug('Before Transaction If for: '||p_transaction_type);
558: l_trx_error_rec.transaction_type_id := 126;
559: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_ISSUE','ONT');
560: csi_order_ship_pub.order_shipment(
561: p_mtl_transaction_id => p_transaction_id,
562: p_message_id => NULL,
563: x_return_status => l_return_status,

Line 575: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');

571:
572: ELSIF p_transaction_type = 'CSILOSHP' THEN
573: debug('Before Transaction If for: '||p_transaction_type);
574: l_trx_error_rec.transaction_type_id := 51;
575: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');
576: csi_order_fulfill_pub.logical_drop_ship(
577: p_mtl_txn_id => p_transaction_id,
578: p_message_id => NULL,
579: x_return_status => l_return_status,

Line 591: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PROJECT_CONTRACT_SHIPMENT','OKE');

587:
588: ELSIF p_transaction_type = 'CSIOKSHP' THEN
589: debug('Before Transaction If for: '||p_transaction_type);
590: l_trx_error_rec.transaction_type_id := 326;
591: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PROJECT_CONTRACT_SHIPMENT','OKE');
592: csi_order_ship_pub.oke_shipment(
593: p_mtl_txn_id => p_transaction_id,
594: x_return_status => l_return_status,
595: px_trx_error_rec => l_trx_error_rec);

Line 606: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('RMA_RECEIPT','ONT');

602:
603: ELSIF p_transaction_type = 'CSIRMARC' THEN
604: debug('Before Transaction If for: '||p_transaction_type);
605: l_trx_error_rec.transaction_type_id := 53;
606: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('RMA_RECEIPT','ONT');
607: csi_rma_receipt_pub.rma_receipt(
608: p_mtl_txn_id => p_transaction_id,
609: p_message_id => null,
610: x_return_status => l_return_status,

Line 622: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');

618:
619: ELSIF p_transaction_type = 'CSIWIPCI' THEN
620:
621: l_trx_error_rec.transaction_type_id := 71;
622: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');
623:
624: csi_wip_trxs_pkg.wip_comp_issue(
625: p_transaction_id => p_transaction_id,
626: p_message_id => NULL,

Line 639: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');

635:
636: ELSIF p_transaction_type = 'CSIWIPNR' THEN
637:
638: l_trx_error_rec.transaction_type_id := 71;
639: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');
640:
641: csi_wip_trxs_pkg.wip_neg_comp_return(
642: p_transaction_id => p_transaction_id,
643: p_message_id => NULL,

Line 656: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_RETURN','INV');

652:
653: ELSIF p_transaction_type = 'CSIWIPAR' THEN
654:
655: l_trx_error_rec.transaction_type_id := 74;
656: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_RETURN','INV');
657:
658: csi_wip_trxs_pkg.wip_assy_return(
659: p_transaction_id => p_transaction_id,
660: p_message_id => NULL,

Line 674: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_RETURN','INV');

670: --R12 Changes for OPM
671: ELSIF p_transaction_type = 'CSIWIPBR' THEN
672:
673: l_trx_error_rec.transaction_type_id := 76;
674: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_RETURN','INV');
675:
676: csi_wip_trxs_pkg.wip_byproduct_return(
677: p_transaction_id => p_transaction_id,
678: p_message_id => NULL,

Line 692: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_RECEIPT','INV');

688:
689: ELSIF ( p_transaction_type = 'CSIWIPCR' OR
690: p_transaction_type = 'CSIWIPNI' ) THEN
691: l_trx_error_rec.transaction_type_id := 72;
692: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_RECEIPT','INV');
693: csi_wip_trxs_pkg.wip_comp_receipt (
694: p_transaction_id => p_transaction_id,
695: p_message_id => NULL,
696: x_return_status => l_return_status,

Line 708: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_COMPLETION','INV');

704:
705: ELSIF p_transaction_type = 'CSIWIPAC' THEN
706: debug('Before Transaction If for: '||p_transaction_type);
707: l_trx_error_rec.transaction_type_id := 73;
708: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_COMPLETION','INV');
709: csi_wip_trxs_pkg.wip_assy_completion(
710: p_transaction_id => p_transaction_id,
711: p_message_id => null,
712: x_return_status => l_return_status,

Line 725: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_COMPLETION ','INV');

721: --bnarayan added for OPM Changes
722: ELSIF p_transaction_type = 'CSIWIPBC' THEN --WIP By Product Completion
723: debug('Before Transaction If for: '||p_transaction_type);
724: l_trx_error_rec.transaction_type_id := 75;
725: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_COMPLETION ','INV');
726: csi_wip_trxs_pkg.wip_byproduct_completion(
727: p_transaction_id => p_transaction_id,
728: p_message_id => null,
729: x_return_status => l_return_status,

Line 783: x_trx_error_rec.processed_flag := csi_inv_trxs_pkg.g_txn_error;

779: x_trx_error_rec.inv_material_transaction_id := null;
780: ELSE
781: x_trx_error_rec.inv_material_transaction_id := p_transaction_id;
782: END IF;
783: x_trx_error_rec.processed_flag := csi_inv_trxs_pkg.g_txn_error;
784: x_trx_error_rec.error_stage := csi_inv_trxs_pkg.g_ib_update;
785:
786: x_trx_return_status := l_fnd_unexpected;
787:

Line 784: x_trx_error_rec.error_stage := csi_inv_trxs_pkg.g_ib_update;

780: ELSE
781: x_trx_error_rec.inv_material_transaction_id := p_transaction_id;
782: END IF;
783: x_trx_error_rec.processed_flag := csi_inv_trxs_pkg.g_txn_error;
784: x_trx_error_rec.error_stage := csi_inv_trxs_pkg.g_ib_update;
785:
786: x_trx_return_status := l_fnd_unexpected;
787:
788: END execute_trx_dpl;