How to remove the Customer Experience Improvement Program (CEIP) prompt from Microsoft Dynamics AX

How to remove the Customer Experience Improvement Program (CEIP) prompt from Microsoft Dynamics AX

Issue:

We don\’t want to see the Prompt asking to Join the Customer Experience Improvement Program or I Don\’t want to join the program at this time.

How to remove the Customer Experience Improvement Program (CEIP) prompt from Microsoft Dynamics AX?

or how to we disable it completely for all the users.
I am looking out for some code similar to https://support.microsoft.com/en-us/kb/916997

\"
AX: AX 2012 R3, CU8
OS: Windows Server 2012
SQL: SQL 2014

Solution:
From Back-end SQL to perform this update below:
update SysUserInfo
set SqmEnabled = 1 –1 = no
–2 = yes
where SqmEnabled = 0 –0 = prompt
Or For Job in AX this can be created as a job in AOT.
static void Job1(Args _args)
{
   SysUserInfo userInfo;
   ;
   update_recordset userInfo
       setting sqmenabled = 1;
}
Hope it might help all.

If you have any question or area to be added please comment! 
Happy AX Infra! 
Thanks & Regards,
Umesh Pandit
Microsoft Dynamics AX
http://msdynamicsaxtips.blogspot.in/
Mail ID: pandit.umesh@hotmail.com

2 thoughts on “How to remove the Customer Experience Improvement Program (CEIP) prompt from Microsoft Dynamics AX

Leave a Reply

Your email address will not be published. Required fields are marked *