DBA Data[Home] [Help]

APPS.INV_DETAIL_UTIL_PVT dependencies on MTL_MATERIAL_TRANSACTIONS_TEMP

Line 19: TYPE g_mmtt_tbl_type IS TABLE OF mtl_material_transactions_temp%ROWTYPE

15: TYPE g_number_tbl_type IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
16: --
17: -- The following types are used to define plsql tables for
18: -- inserting into transaction temporary tables
19: TYPE g_mmtt_tbl_type IS TABLE OF mtl_material_transactions_temp%ROWTYPE
20: INDEX BY BINARY_INTEGER;
21: TYPE g_mtlt_tbl_type IS TABLE OF mtl_transaction_lots_temp%ROWTYPE
22: INDEX BY BINARY_INTEGER;
23: TYPE g_msnt_tbl_type IS TABLE OF mtl_serial_numbers_temp%ROWTYPE

Line 2014: -- insert record into mtl_material_transactions_temp

2010: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
2011: END IF;
2012: END Get_Serial_Numbers;
2013: --
2014: -- insert record into mtl_material_transactions_temp
2015: -- who columns will be derived in the procedure
2016: PROCEDURE insert_mmtt
2017: (
2018: x_return_status OUT NOCOPY VARCHAR2

Line 2049: INSERT INTO mtl_material_transactions_temp

2045: l_login_id := fnd_global.login_id;
2046: --
2047: FOR l_counter IN 1..p_mmtt_tbl_size LOOP
2048: print_debug('in insert mmtt '||p_mmtt_tbl(l_counter).transaction_temp_id );
2049: INSERT INTO mtl_material_transactions_temp
2050: (
2051: transaction_header_id ,
2052: transaction_temp_id ,
2053: source_code ,

Line 2758: FROM mtl_material_transactions_temp mmtt,

2754: ,mln.description
2755: ,mln.expiration_action_date
2756: ,mln.expiration_action_code
2757: ,mln.hold_date
2758: FROM mtl_material_transactions_temp mmtt,
2759: mtl_lot_numbers mln
2760: WHERE mmtt.transaction_temp_id = p_mtlt_tbl(l_counter).transaction_temp_id
2761: and mln.inventory_item_id = mmtt.inventory_item_id
2762: and mln.organization_id = mmtt.organization_id

Line 3209: -- insert into mtl_material_transactions_temp, mtl_serial_numbers_temp,

3205: x_return_status := fnd_api.g_ret_sts_unexp_error;
3206: END update_detailed_quantities;
3207: --
3208: -- create suggestion records.
3209: -- insert into mtl_material_transactions_temp, mtl_serial_numbers_temp,
3210: -- or mtl_transaction_lots_temp
3211: PROCEDURE process_output
3212: (x_return_status OUT NOCOPY VARCHAR2,
3213: p_request_line_rec IN g_request_line_rec_type,

Line 3303: -- the sign for the quantity in mtl_material_transactions_temp

3299: END IF;
3300:
3301: --
3302: -- The following code is commented because
3303: -- the sign for the quantity in mtl_material_transactions_temp
3304: -- and mtl_transaction_lots_temp and mtl_serial_numbers_temp
3305: -- for the suggestion records will be positive always.
3306: -- The reason is that the move order transaction form
3307: -- and api expect the quantity to be positive regardless

Line 4054: inv_pp_debug.send_message_to_pipe('# of records inserted to mtl_material_transactions_temp: '

4050: -- debugging section
4051: -- can be commented ut for final code
4052: IF inv_pp_debug.is_debug_mode THEN
4053: inv_pp_debug.send_message_to_pipe('=================== create output records: ');
4054: inv_pp_debug.send_message_to_pipe('# of records inserted to mtl_material_transactions_temp: '
4055: || l_mmtt_tbl_size);
4056: inv_pp_debug.send_message_to_pipe('# of records inserted to mtl_transaction_lots_temp: '
4057: || l_mtlt_tbl_size);
4058: inv_pp_debug.send_message_to_pipe('# of records inserted to mtl_serial_numbers_temp: '