iMIS Community facilitates the collaborative development of iMIS applications and solutions among the customers, partners, and developers of Advanced Solutions International.

About

Update: Announcing the iMIS 20 Early Adopter Program

With the anticipation of the launch of iMIS 20, ASI is excited to announce an Early Adopter Program. The Early Adopter Program is voluntary and will allow organizations to download and install the first fully supported version of iMIS 20. In return we are looking for your feedback through the normal process of submitting a support request or enhancement request.

iMIS 20 is a breakthrough Engagement Management System that enables organizations to engage members anytime, anywhere and from any mobile device. In one seamless system it has the potential to combine member/donor management, member self-service, social engagement, online communities and website management. This upgrade is a straightforward upgrade from iMIS 15.

To be considered as a participant in the Early Adopter Program, please submit an SMR to ASI Technical Support at www.advsol.com/techsupport requesting the iMIS 20 Early Adopter Release.

Writing back into iMIS within Crystal reports

Writing back into iMIS from a crystal report is a fairly simple process. The approach we use at the REIQ is to have a sub report which has a stored procedure as its data source, which actually does the insertion of the activity.


Single Sign Out in 15.2.15 and Higher

We've developed a basic set of methodologies for single sign on and single sign out which we have implemented with PV and WCM sites. For one of our clients the single sign out functionality does not appear to work. The session user information is still persisted after the basic logout code is executed:

            System.Web.Security.FormsAuthentication.SignOut();
            //remaining logout procedures
            ClearCookies();
            Session.Abandon();

Webserver

Is iMIS webserver version dependent (i.e. cannot have multiple versions on same web server)? I am new to installations and wondering if I can set up a iMIS 20 site on webserver where 15.2 test sites reside.

Mary.

data showcase ipart c# code

is it possible to use C# code in the WYSIWYG editor on the data showcase iPart?

We are using this on the event display page for a client and would like to conditionally display a link to a document (but only if the document exists), trying:

protected override void OnInit(EventArgs e)
{
base.OnInit(e);
Response.Write("here
");
string fileName = Asi.Web.Utilities.GetTildeExpansion()+"/docs/eventreg/{#event.EventId}.pdf";

WCM/RiSE page load times

I've submitted this as an SMR through TS, but I figured I'd get others' input as well. We do have a series of clients on 15.2.x running WCM/RiSE and almost all of them have complained about page load times. Some more loudly than others.

A particular site is continually taking 8-16 seconds to load pages (while they claim it takes upwards of 30 seconds to log in). Another client is taking up to 12 seconds to load pages - other sites running WCM/RiSE are taking 5 seconds to load a page. screenshots from 3 different clients:

Duplicate Merge Manager - DMM issue with iMIS 15.2.15

Hi guys,

having an issue with DMM and iMIS 15.2.15
its throwing the following error when clicking on Build Tables :

-2147217900 Incorrect syntax near global

Anyone come across this before??

any help would be appreciated

Reading IQA queries from SQL

Does anyone know if it's possible to retrieve/run an IQA query from a SQL script? I was hoping we could query the Blob field in the DocumentMain table to retrieve the SQL script for a particular IQA query, but it doesn't look like the Blob data for DocumentTypeCode='IQD' is stored in XML format, so I'm not sure how to encode/retrieve the data.

We want to do this so that an IQA query can be executed as part of a SQL job or stored procedure so that the users can maintain the query, but we can leverage it for back-end processing.

Omit shipping charge for certain products

We are learning to use online store (Order module) and wanted to know if it is possible to omit shipping charges for certain products?

For instance, we are looking to sell pins, books etc and also looking to implement a way to sell memberships as a products but not charge them for shipping if users opt to buy memberships as product.

Thanks,

Vig

DELETE constraint for FK_Institute_GroupMain_Institute

We are occasionally running into an issue when we save a record via SOA (using the EntityManager.Add method).

The exception message is: The DELETE statement conflicted with the REFERENCE constraint "FK_Institute_GroupMain_Institute". The conflict occurred in database "ClientDBName", table "dbo.Institute", column 'InstituteGroupKey'.
The statement has been terminated.

It seems as though SOA is trying to delete a record from the Institute table, but it fails because of a foreign key referencing a corresponding row in the GroupMain table.