DBA Data[Home] [Help]

APPS.INV_DETAIL_UTIL_PVT dependencies on MTL_TRANSACTION_LOTS_TEMP

Line 21: TYPE g_mtlt_tbl_type IS TABLE OF mtl_transaction_lots_temp%ROWTYPE

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
24: INDEX BY BINARY_INTEGER;
25: --

Line 2507: -- insert record into mtl_transaction_lots_temp

2503: end if;
2504: --
2505: END insert_mmtt;
2506: --
2507: -- insert record into mtl_transaction_lots_temp
2508: -- who columns will be derived in the procedure
2509: PROCEDURE insert_mtlt
2510: (
2511: x_return_status OUT NOCOPY VARCHAR2

Line 2540: INSERT INTO mtl_transaction_lots_temp

2536: l_today := SYSDATE;
2537: l_user_id := fnd_global.user_id;
2538: l_login_id := fnd_global.login_id;
2539: FOR l_counter IN 1..p_mtlt_tbl_size LOOP
2540: INSERT INTO mtl_transaction_lots_temp
2541: (
2542: transaction_temp_id
2543: ,last_update_date
2544: ,last_updated_by

Line 3210: -- or mtl_transaction_lots_temp

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,
3214: p_request_context IN g_request_context_rec_type,

Line 3304: -- and mtl_transaction_lots_temp and mtl_serial_numbers_temp

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
3308: -- what transaction (pick/put) it is. The form or the

Line 4056: inv_pp_debug.send_message_to_pipe('# of records inserted to mtl_transaction_lots_temp: '

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: '
4059: || l_msnt_tbl_size);
4060: inv_pp_debug.send_message_to_pipe('exit '||g_pkg_name||'.'||l_api_name);