Dmitry_Eliseev's blog

iBO.NET and Multi Instance Tables !!ALERT!

Hi All,

I just discovered very painful issue with IBO v.17 (And I afraid it is a case for 18 as well)
The problem is - if you have multi instance table in iMIS and you have more then one line, then all values in the table will be reset to the FIRST LINE values in case if you will try to update ANY user DEFINED TABLE via IBO.
This will happens only if you called CCONTACT.SAVE() after updating SINGLE INSTANCE Table.

Usefull C# code. How to find an IMISID of currently logged in user.

Hi All,

Recently I run into the issue of where(how) to find iMIS ID of currently logged in user in iMIS Public views.
After some research I finally come up with folowing code:

// VERY USEFULL ONE - Returns iMIS ID for currently Logged in USER
private string GetCurrentiMISID()
{
string _id = "";
if (Request.Cookies["UserID"] != null)
{

Syndicate content