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 153: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MOVE_ORDER_ISSUE_TO_PROJECT','INV');

149:
150: IF p_transaction_type = 'CSIISUPT' THEN
151: debug('Before Transaction If for: '||p_transaction_type);
152: l_trx_error_rec.transaction_type_id := 113;
153: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MOVE_ORDER_ISSUE_TO_PROJECT','INV');
154: csi_inv_project_pkg.issue_to_project (p_transaction_id,
155: NULL,
156: l_return_status,
157: l_trx_error_rec);

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

164:
165: ELSIF p_transaction_type = 'CSIMSIPT' THEN
166: debug('Before Transaction If for: '||p_transaction_type);
167: l_trx_error_rec.transaction_type_id := 121;
168: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE_TO_PROJECT','INV');
169: csi_inv_project_pkg.misc_issue_projtask (p_transaction_id,
170: NULL,
171: l_return_status,
172: l_trx_error_rec);

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

178:
179: ELSIF p_transaction_type = 'CSISUBTR' THEN
180: debug('Before Transaction If for: '||p_transaction_type);
181: l_trx_error_rec.transaction_type_id := 114;
182: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('SUBINVENTORY_TRANSFER','INV');
183: csi_inv_transfer_pkg.subinv_transfer (p_transaction_id,
184: NULL,
185: l_return_status,
186: l_trx_error_rec);

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

192:
193: ELSIF p_transaction_type = 'CSIORGTR' THEN
194: debug('Before Transaction If for: '||p_transaction_type);
195: l_trx_error_rec.transaction_type_id := 144;
196: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_TRANS_RECEIPT','INV');
197: csi_inv_interorg_pkg.intransit_receipt (p_transaction_id,
198: NULL,
199: l_return_status,
200: l_trx_error_rec);

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

207:
208: ELSIF p_transaction_type = 'CSIORGTS' THEN
209: debug('Before Transaction If for: '||p_transaction_type);
210: l_trx_error_rec.transaction_type_id := 145;
211: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_TRANS_SHIPMENT','INV');
212: csi_inv_interorg_pkg.intransit_shipment (p_transaction_id,
213: NULL,
214: l_return_status,
215: l_trx_error_rec);

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

222:
223: ELSIF p_transaction_type = 'CSIORGDS' THEN
224: debug('Before Transaction If for: '||p_transaction_type);
225: l_trx_error_rec.transaction_type_id := 143;
226: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('INTERORG_DIRECT_SHIP','INV');
227: csi_inv_interorg_pkg.direct_shipment (p_transaction_id,
228: NULL,
229: l_return_status,
230: l_trx_error_rec);

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

237:
238: ELSIF p_transaction_type = 'CSIINTSS' THEN
239: debug('Before Transaction If for: '||p_transaction_type);
240: l_trx_error_rec.transaction_type_id := 130;
241: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_SHIPMENT','INV');
242: csi_inv_iso_pkg.iso_shipment(p_transaction_id,
243: NULL,
244: l_return_status,
245: l_trx_error_rec);

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

252:
253: ELSIF p_transaction_type = 'CSIINTSR' THEN
254: debug('Before Transaction If for: '||p_transaction_type);
255: l_trx_error_rec.transaction_type_id := 131;
256: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_REQUISITION_RECEIPT','INV');
257: csi_inv_iso_pkg.iso_receipt(p_transaction_id,
258: NULL,
259: l_return_status,
260: l_trx_error_rec);

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

267:
268: ELSIF p_transaction_type = 'CSIINTDS' THEN
269: debug('Before Transaction If for: '||p_transaction_type);
270: l_trx_error_rec.transaction_type_id := 142;
271: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_DIRECT_SHIP','INV');
272: csi_inv_iso_pkg.iso_direct(p_transaction_id,
273: NULL,
274: l_return_status,
275: l_trx_error_rec);

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

282:
283: ELSIF p_transaction_type = 'CSIPOINV' THEN
284: debug('Before Transaction If for: '||p_transaction_type);
285: l_trx_error_rec.transaction_type_id := 112;
286: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PO_RECEIPT_INTO_INVENTORY','INV');
287: csi_inv_trxs_pkg.receipt_inventory (p_transaction_id,
288: NULL,
289: l_return_status,
290: l_trx_error_rec);

Line 287: csi_inv_trxs_pkg.receipt_inventory (p_transaction_id,

283: ELSIF p_transaction_type = 'CSIPOINV' THEN
284: debug('Before Transaction If for: '||p_transaction_type);
285: l_trx_error_rec.transaction_type_id := 112;
286: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PO_RECEIPT_INTO_INVENTORY','INV');
287: csi_inv_trxs_pkg.receipt_inventory (p_transaction_id,
288: NULL,
289: l_return_status,
290: l_trx_error_rec);
291:

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

297:
298: ELSIF p_transaction_type = 'CSICYCNT' THEN
299: debug('Before Transaction If for: '||p_transaction_type);
300: l_trx_error_rec.transaction_type_id := 119;
301: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('CYCLE_COUNT','INV');
302: csi_inv_trxs_pkg.cycle_count (p_transaction_id,
303: NULL,
304: l_return_status,
305: l_trx_error_rec);

Line 302: csi_inv_trxs_pkg.cycle_count (p_transaction_id,

298: ELSIF p_transaction_type = 'CSICYCNT' THEN
299: debug('Before Transaction If for: '||p_transaction_type);
300: l_trx_error_rec.transaction_type_id := 119;
301: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('CYCLE_COUNT','INV');
302: csi_inv_trxs_pkg.cycle_count (p_transaction_id,
303: NULL,
304: l_return_status,
305: l_trx_error_rec);
306:

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

312:
313: ELSIF p_transaction_type = 'CSIPHYIN' THEN
314: debug('Before Transaction If for: '||p_transaction_type);
315: l_trx_error_rec.transaction_type_id := 118;
316: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PHYSICAL_INVENTORY','INV');
317: csi_inv_trxs_pkg.physical_inventory (p_transaction_id,
318: NULL,
319: l_return_status,
320: l_trx_error_rec);

Line 317: csi_inv_trxs_pkg.physical_inventory (p_transaction_id,

313: ELSIF p_transaction_type = 'CSIPHYIN' THEN
314: debug('Before Transaction If for: '||p_transaction_type);
315: l_trx_error_rec.transaction_type_id := 118;
316: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PHYSICAL_INVENTORY','INV');
317: csi_inv_trxs_pkg.physical_inventory (p_transaction_id,
318: NULL,
319: l_return_status,
320: l_trx_error_rec);
321:

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

327:
328: ELSIF p_transaction_type = 'CSIMSRCV' THEN
329: debug('Before Transaction If for: '||p_transaction_type);
330: l_trx_error_rec.transaction_type_id := 117;
331: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT','INV');
332: csi_inv_trxs_pkg.misc_receipt (p_transaction_id,
333: NULL,
334: l_return_status,
335: l_trx_error_rec);

Line 332: csi_inv_trxs_pkg.misc_receipt (p_transaction_id,

328: ELSIF p_transaction_type = 'CSIMSRCV' THEN
329: debug('Before Transaction If for: '||p_transaction_type);
330: l_trx_error_rec.transaction_type_id := 117;
331: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT','INV');
332: csi_inv_trxs_pkg.misc_receipt (p_transaction_id,
333: NULL,
334: l_return_status,
335: l_trx_error_rec);
336:

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

342:
343: ELSIF p_transaction_type = 'CSIMSISU' THEN
344: debug('Before Transaction If for: '||p_transaction_type);
345: l_trx_error_rec.transaction_type_id := 116;
346: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE','INV');
347: csi_inv_trxs_pkg.misc_issue (p_transaction_id,
348: NULL,
349: l_return_status,
350: l_trx_error_rec);

Line 347: csi_inv_trxs_pkg.misc_issue (p_transaction_id,

343: ELSIF p_transaction_type = 'CSIMSISU' THEN
344: debug('Before Transaction If for: '||p_transaction_type);
345: l_trx_error_rec.transaction_type_id := 116;
346: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE','INV');
347: csi_inv_trxs_pkg.misc_issue (p_transaction_id,
348: NULL,
349: l_return_status,
350: l_trx_error_rec);
351:

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

357:
358: ELSIF p_transaction_type = 'CSIMSRPT' THEN
359: debug('Before Transaction If for: '||p_transaction_type);
360: l_trx_error_rec.transaction_type_id := 120;
361: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT_FROM_PROJECT','INV');
362: csi_inv_project_pkg.misc_receipt_projtask (p_transaction_id,
363: NULL,
364: l_return_status,
365: l_trx_error_rec);

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

372:
373: ELSIF p_transaction_type = 'CSIISUHZ' THEN
374: debug('Before Transaction If for: '||p_transaction_type);
375: l_trx_error_rec.transaction_type_id := 132;
376: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISSUE_TO_HZ_LOC','INV');
377: csi_inv_hz_pkg.issue_to_hz_loc (p_transaction_id,
378: NULL,
379: l_return_status,
380: l_trx_error_rec);

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

387:
388: ELSIF p_transaction_type = 'CSIMSIHZ' THEN
389: debug('Before Transaction If for: '||p_transaction_type);
390: l_trx_error_rec.transaction_type_id := 133;
391: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_ISSUE_HZ_LOC','INV');
392: csi_inv_hz_pkg.misc_issue_hz_loc (p_transaction_id,
393: NULL,
394: l_return_status,
395: l_trx_error_rec);

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

402:
403: ELSIF p_transaction_type = 'CSIMSRHZ' THEN
404: debug('Before Transaction If for: '||p_transaction_type);
405: l_trx_error_rec.transaction_type_id := 134;
406: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('MISC_RECEIPT_HZ_LOC','INV');
407: csi_inv_hz_pkg.misc_receipt_hz_loc (p_transaction_id,
408: NULL,
409: l_return_status,
410: l_trx_error_rec);

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

417:
418: ELSIF p_transaction_type = 'CSISOFUL' THEN
419: debug('Before Transaction If for: '||p_transaction_type);
420: l_trx_error_rec.transaction_type_id := 51;
421: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');
422: l_trx_error_rec.inv_material_transaction_id := null;
423:
424: csi_order_fulfill_pub.order_fulfillment(
425: p_order_line_id => p_transaction_id,

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

437:
438: ELSIF p_transaction_type = 'CSIRMAFL' THEN
439: debug('Before Transaction If for: '||p_transaction_type);
440: l_trx_error_rec.transaction_type_id := 54;
441: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('RMA_FULFILL','CSI');
442: l_trx_error_rec.inv_material_transaction_id := null;
443: csi_rma_fulfill_pub.rma_fulfillment(
444: p_rma_line_id => p_transaction_id,
445: p_message_id => NULL,

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

454:
455: ELSIF p_transaction_type = 'CSISOSHP' THEN
456: debug('Before Transaction If for: '||p_transaction_type);
457: l_trx_error_rec.transaction_type_id := 51;
458: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');
459:
460: l_use_parallel_mode := NVL(fnd_profile.value('CSI_TXN_PARALLEL_MODE'), 'N'); --Code Added for MACD Enhancement
461:
462: if (l_use_parallel_mode = 'N') then --Code Added for MACD Enhancement

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

578:
579: ELSIF p_transaction_type = 'CSIINTIS' THEN
580: debug('Before Transaction If for: '||p_transaction_type);
581: l_trx_error_rec.transaction_type_id := 126;
582: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('ISO_ISSUE','ONT');
583: csi_order_ship_pub.order_shipment(
584: p_mtl_transaction_id => p_transaction_id,
585: p_message_id => NULL,
586: x_return_status => l_return_status,

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

594:
595: ELSIF p_transaction_type = 'CSILOSHP' THEN
596: debug('Before Transaction If for: '||p_transaction_type);
597: l_trx_error_rec.transaction_type_id := 51;
598: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('OM_SHIPMENT','ONT');
599: csi_order_fulfill_pub.logical_drop_ship(
600: p_mtl_txn_id => p_transaction_id,
601: p_message_id => NULL,
602: x_return_status => l_return_status,

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

610:
611: ELSIF p_transaction_type = 'CSIOKSHP' THEN
612: debug('Before Transaction If for: '||p_transaction_type);
613: l_trx_error_rec.transaction_type_id := 326;
614: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('PROJECT_CONTRACT_SHIPMENT','OKE');
615: csi_order_ship_pub.oke_shipment(
616: p_mtl_txn_id => p_transaction_id,
617: x_return_status => l_return_status,
618: px_trx_error_rec => l_trx_error_rec);

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

625:
626: ELSIF p_transaction_type = 'CSIRMARC' THEN
627: debug('Before Transaction If for: '||p_transaction_type);
628: l_trx_error_rec.transaction_type_id := 53;
629: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('RMA_RECEIPT','ONT');
630: csi_rma_receipt_pub.rma_receipt(
631: p_mtl_txn_id => p_transaction_id,
632: p_message_id => null,
633: x_return_status => l_return_status,

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

641:
642: ELSIF p_transaction_type = 'CSIWIPCI' THEN
643:
644: l_trx_error_rec.transaction_type_id := 71;
645: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');
646:
647: csi_wip_trxs_pkg.wip_comp_issue(
648: p_transaction_id => p_transaction_id,
649: p_message_id => NULL,

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

658:
659: ELSIF p_transaction_type = 'CSIWIPNR' THEN
660:
661: l_trx_error_rec.transaction_type_id := 71;
662: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ISSUE','INV');
663:
664: csi_wip_trxs_pkg.wip_neg_comp_return(
665: p_transaction_id => p_transaction_id,
666: p_message_id => NULL,

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

675:
676: ELSIF p_transaction_type = 'CSIWIPAR' THEN
677:
678: l_trx_error_rec.transaction_type_id := 74;
679: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_RETURN','INV');
680:
681: csi_wip_trxs_pkg.wip_assy_return(
682: p_transaction_id => p_transaction_id,
683: p_message_id => NULL,

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

693: --R12 Changes for OPM
694: ELSIF p_transaction_type = 'CSIWIPBR' THEN
695:
696: l_trx_error_rec.transaction_type_id := 76;
697: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_RETURN','INV');
698:
699: csi_wip_trxs_pkg.wip_byproduct_return(
700: p_transaction_id => p_transaction_id,
701: p_message_id => NULL,

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

711:
712: ELSIF ( p_transaction_type = 'CSIWIPCR' OR
713: p_transaction_type = 'CSIWIPNI' ) THEN
714: l_trx_error_rec.transaction_type_id := 72;
715: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_RECEIPT','INV');
716: csi_wip_trxs_pkg.wip_comp_receipt (
717: p_transaction_id => p_transaction_id,
718: p_message_id => NULL,
719: x_return_status => l_return_status,

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

727:
728: ELSIF p_transaction_type = 'CSIWIPAC' THEN
729: debug('Before Transaction If for: '||p_transaction_type);
730: l_trx_error_rec.transaction_type_id := 73;
731: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_ASSEMBLY_COMPLETION','INV');
732: csi_wip_trxs_pkg.wip_assy_completion(
733: p_transaction_id => p_transaction_id,
734: p_message_id => null,
735: x_return_status => l_return_status,

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

744: --bnarayan added for OPM Changes
745: ELSIF p_transaction_type = 'CSIWIPBC' THEN --WIP By Product Completion
746: debug('Before Transaction If for: '||p_transaction_type);
747: l_trx_error_rec.transaction_type_id := 75;
748: l_trx_error_rec.transaction_type_id := csi_inv_trxs_pkg.get_txn_type_id('WIP_BYPRODUCT_COMPLETION ','INV');
749: csi_wip_trxs_pkg.wip_byproduct_completion(
750: p_transaction_id => p_transaction_id,
751: p_message_id => null,
752: x_return_status => l_return_status,

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

802: x_trx_error_rec.inv_material_transaction_id := null;
803: ELSE
804: x_trx_error_rec.inv_material_transaction_id := p_transaction_id;
805: END IF;
806: x_trx_error_rec.processed_flag := csi_inv_trxs_pkg.g_txn_error;
807: x_trx_error_rec.error_stage := csi_inv_trxs_pkg.g_ib_update;
808:
809: x_trx_return_status := l_fnd_unexpected;
810:

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

803: ELSE
804: x_trx_error_rec.inv_material_transaction_id := p_transaction_id;
805: END IF;
806: x_trx_error_rec.processed_flag := csi_inv_trxs_pkg.g_txn_error;
807: x_trx_error_rec.error_stage := csi_inv_trxs_pkg.g_ib_update;
808:
809: x_trx_return_status := l_fnd_unexpected;
810:
811: END execute_trx_dpl;