DBA Data[Home] [Help]

APPS.INV_LOT_API_PUB dependencies on INV_MATERIAL_STATUS_GRP

Line 139: -- if returned true then call inv_material_status_grp.update_status

135: x_msg_count := 1;
136: return;
137: end if;
138:
139: -- if returned true then call inv_material_status_grp.update_status
140: IF (l_ret_status) then
141:
142: print_debug('validate_lot_status: Before calling inv_material_status_grp.update_status', 9);
143:

Line 142: print_debug('validate_lot_status: Before calling inv_material_status_grp.update_status', 9);

138:
139: -- if returned true then call inv_material_status_grp.update_status
140: IF (l_ret_status) then
141:
142: print_debug('validate_lot_status: Before calling inv_material_status_grp.update_status', 9);
143:
144: INV_MATERIAL_STATUS_GRP.update_status
145: ( p_api_version
146: , p_init_msg_list

Line 144: INV_MATERIAL_STATUS_GRP.update_status

140: IF (l_ret_status) then
141:
142: print_debug('validate_lot_status: Before calling inv_material_status_grp.update_status', 9);
143:
144: INV_MATERIAL_STATUS_GRP.update_status
145: ( p_api_version
146: , p_init_msg_list
147: , x_return_status
148: , x_msg_count

Line 163: print_debug('validate_lot_status: Return status from inv_material_status_grp.update_status: '||x_return_status, 9);

159: , 'O'
160: , NULL
161: ) ;
162:
163: print_debug('validate_lot_status: Return status from inv_material_status_grp.update_status: '||x_return_status, 9);
164: END IF;
165: ELSIF (l_lot_status_enabled = 'N' ) then
166: x_return_status := fnd_api.g_ret_sts_success;
167: x_msg_data := fnd_message.GET_STRING('INV', 'INV_NOT_VALID');

Line 1231: * by using API INV_MATERIAL_STATUS_GRP.get_lot_serial_status_control()

1227: * value for 'STATUS_ID' in DFF segment definition. Like 'VENDOR_ID',
1228: * 'STATUS_ID' could be added to DFF columns in future.
1229: * Nevertheless, to fix the bug 1520495, we need to have an application
1230: * logic to get the default value for 'STATUS_ID'. This can be got
1231: * by using API INV_MATERIAL_STATUS_GRP.get_lot_serial_status_control()
1232: * and assigning OUT parameter 'default_lot_status_id' to
1233: * g_lot_attributes_tbl(5).COLUMN_VALUE if OUT parameter
1234: * 'lot_status_enabled' is 'Y'.
1235: ***********************************************************************/

Line 1239: inv_material_status_grp.get_lot_serial_status_control (

1235: ***********************************************************************/
1236: IF (l_debug = 1) THEN
1237: inv_pick_wave_pick_confirm_pub.tracelog ( 'before calling get_lot_Serial_status_control' , 'INV_LOT_API_PUB');
1238: END IF;
1239: inv_material_status_grp.get_lot_serial_status_control (
1240: p_organization_id => p_organization_id,
1241: p_inventory_item_id => p_inventory_item_id,
1242: x_return_status => l_return_status,
1243: x_msg_count => l_msg_count,