Showing Local Time in the Infor CRM (Saleslogix) Web Client Ticket History Tab
I wrote previously about how to adjust the journal table so that dates do not show the UTC values recorded as data changes against a ticket. That previous post was back when the grid was a SLXGrid and...
View ArticleInfor CRM 8.2.1 Web Client issues with Milliseconds
We recently had a client who ran into issues trying to edit some of their activities in the Infor CRM web client. The same activities could be edited in the Windows client successfully. When attempting...
View ArticleDetermining if a User is a Member of a Team in Infor CRM Web Part 2
Back in 2009, Ryan wrote about how to determine if a user is in a team. His last code snippet example is no longer valid as those methods now return different object types. His old code was this:...
View ArticleRunning a Crystal Report from a Button with Custom Conditions in the Infor...
In a previous post I talked about how to run a report based on the current entity from the click of a button. btnPreview.OnClientClick = @"var oReporting = Sage.Services.getService('ReportingService');...
View ArticleBuilding a new Job Service Job in Infor CRM Web- Step by Step
Using the power of the job service can open up a lot of tasks within the web client. By executing out of the web context they are a perfect place to run long running processes and because they can be...
View ArticleUsing Style to Manipulate Control Locations in the Infor CRM Web Client
The quickforms in Infor CRM are rather limited in their layout options. Everything is rendered into table rows and cells and sometimes those layouts are not what is needed. You could always make a...
View ArticleInfor CRM SLXJobService Base Directory
I always forget what this default is supposed to be. here it is: %ALLUSERSPROFILE%\Sage\Scheduling\Tenants
View ArticleInfor CRM Merge Contact- Handling Account Product Contacts
When performing a merge of contacts in the Infor CRM web client it handles merging a lot of child records off the contact. One area that is not touched is the account product area where a contact is...
View ArticleInfor CRM Web Client – Running a Report from a Button and Allowing Users to...
In previous posts I had written about how to use javascript and the client side Infor report service to invoke a report from a button. In this post I talked about the simplest way which just runs the...
View ArticleResizing a Editable Grid in the Infor CRM Web Client
The web client’s editable grid does not resize well when you expand a tab that the grid may exist on. You end up with a lot of white space at the bottom of the grid where you could be showing data from...
View ArticleInfor CRM 8.3 Upgrade – Issues with Proper Schema Creation in the Database
We recently ran into an issue when upgrading a customer to 8.3 that I wanted to discuss as it is a potentially big issue that could prevent an upgrade from working correctly, despite no warnings or...
View ArticleInfor CRM Web Client – Using Style Attributes to Manipulate Control Appearance
With how the quick forms are constructed into asp.net user controls when the web client is deployed, it can be difficult to manipulate the appearance of controls since they exist within unnamed divs...
View ArticleCustomizing the Name of the Infor CRM web client
A lot of customers have asked to have the web client modified from the generic Infor CRM branding to their own company branding. While a lot of this is fairly easy to accomplish by modifying files...
View ArticleBreaking change in 8.3 editable grid in the Infor CRM web client
If you have an editable grid with a Custom Format Function in a version before 8.3 the function signature looked like this: Now in 8.3, the format function needs to look like this: If you try to use...
View ArticleBreaking Change on the LeadSearchAndConvert.ascx.cs file in Infor CRM 8.3x
Breaking Campaign Target Logic In older version of the custom smart part LeadSearchAndConvert, there is code in the ConvertLeadToNewAccountAndContact method that converts lead campaign target data into...
View ArticleModifying the Edit Address Dialog in the Infor CRM Web Client
In the Infor CRM web client, we have gotten asked how to modify the address dialog that comes up when you click the pencil icon on the address control, like on the Account details screen. As usual...
View ArticleBreaking Change in the OpportunitySnapshot.ascx.cs for Infor CRM 8.3x
Prior to 8.3, the ExchangeRate table in the Infor CRM database used the column CurrencyCode as the primary ID of the table. Because of this in the custom Opportunity Smart part OpportunitySnapshot,...
View ArticleErrors installing Web Manifests in Infor CRM 8.3
I was recently working with a client who was having trouble installing the 8.3 Web Action items manifest (Infor v8.3 Action Items VFS.zip). Within this manifest are actions like create triggers or drop...
View ArticleInfor CRM Web Error- The bundle could not be created because this manifest...
There is a problem adding quick forms to web manifest if they contain an image resource reference that does not match case.
View ArticleInfor CRM Summing a Property of an Entity Collection Using Linq
A post showing how to use Linq to sum an entity collection quickly.
View Article