DBA Data[Home] [Help]

APPS.WMS_SHIPPING_TRANSACTION_PUB dependencies on WSH_INTEGRATION

Line 1255: l_InvPCInRecType wsh_integration.InvPCInRecType;

1251: l_lot_number VARCHAR2(80);
1252: l_picked_quantity NUMBER := 0;
1253:
1254: l_detail_attributes wsh_interface.ChangedAttributeTabType;
1255: l_InvPCInRecType wsh_integration.InvPCInRecType;
1256: l_return_status VARCHAR2(1);
1257: l_msg_count NUMBER;
1258: l_msg_data VARCHAR2(2000);
1259: l_transaction_id NUMBER; --BUG# 10264172

Line 1306: debug('About to call wsh_integration.Set_Inv_PC_Attributes','nested_serial_check');

1302:
1303: l_transaction_temp_id := l_InvPCInRecType.transaction_temp_id;
1304: l_InvPCInRecType.transaction_id := l_transaction_id; --BUG# 10264172
1305:
1306: debug('About to call wsh_integration.Set_Inv_PC_Attributes','nested_serial_check');
1307: debug('transaction_temp_id set to: ' ||
1308: l_InvPCInRecType.transaction_temp_id,
1309: 'nested_serial_check');
1310: debug('transaction_id set to: ' ||

Line 1316: wsh_integration.Set_Inv_PC_Attributes

1312: 'nested_serial_check'); --BUG# 10264172
1313:
1314: --patchset J. Shipping API cleanup
1315: --call to set the global variable in preparation to update transaction_temp_id
1316: wsh_integration.Set_Inv_PC_Attributes
1317: (p_in_attributes => l_InvPCInRecType,
1318: x_return_status => l_return_status,
1319: x_msg_count => l_msg_count,
1320: x_msg_data => l_msg_data);

Line 1323: debug('wsh_integration.set_inv_pc_attributes failed'

1319: x_msg_count => l_msg_count,
1320: x_msg_data => l_msg_data);
1321:
1322: IF l_return_status IN (G_RET_STS_ERROR, G_RET_STS_UNEXP_ERROR) THEN
1323: debug('wsh_integration.set_inv_pc_attributes failed'
1324: || ' with status: ' || l_return_status,'nested_serial_check');
1325: --check where to handle this error
1326: RAISE fnd_api.g_exc_unexpected_error;
1327: END IF;