Once you convert Lawson to authenticate with AD FS, you may find that your users would really prefer to log in with their normal ID (as opposed to id@domain.com format). You can accomplish this by updating the login method on the AD FS home page.
To make these changes, begin by opening PowerShell as administrator on the AD FS server, then follow these steps.
Create a new theme based on the default theme:
new-adfswebtheme -name <custom theme name> -sourcename default
Download the new theme to a local path:
export-adfswebtheme -name <custom theme name> -DirectoryPath “<local path>”
Navigate to the onload.js file in the theme that you just downloaded. Add the following code to the onload.js file. The highlighted portion is what you will update with your company’s domain.
// Company customization
// accept sAMAccountName
// pass userprincipalName (id@company.com)
if (typeof Login != ‘undefined’){
Login.submitLoginRequest = function () {
var u = new InputUtil();
var e = new LoginErrors();
var userName = document.getElementById(Login.userNameInput);
var password = document.getElementById(Login.passwordInput);
if (userName.value && !userName.value.match(‘[@\\\\]’))
{
var userNameValue = ‘company.com\\’ + userName.value;
document.forms[‘loginForm’].UserName.value = userNameValue;
}
if (!userName.value) {
u.setError(userName, e.userNameFormatError);
return false;
}
if (!password.value)
{
u.setError(password, e.passwordEmpty);
return false;
}
document.forms[‘loginForm’].submit();
return false;
};
}
In PowerShell, upload the new onload.js file:
Set-AdfsWebTheme -TargetName TriCity -OnLoadScriptPath “c:\admin\TriCityTheme\script\onload.js”
Activate the custom theme:
Set-AdfsWebConfig -ActiveThemeName TriCity
Now, when users type in their regular username, it will be appended with “your domain\” when they click the login button. If users type in the domain themselves (“username@company.com”), the login page will accept that value and log in the user with the userPrincipalName they provided.
Selecting the right IT partner to help you with your Merger or acquisition
Articles, Frontpage Article, NewsYou want to work with an IT partner that has functional knowledge in addition to the technological ability to extract and re-map the data. This allows a true partnership that looks at the process from a high level and keeps an eye on the details at the same time.
You need to look for a partner that has experience extracting data from Lawson and mapping to the format needed to upload set up and transactional data to any system and taking extracted data from another system and formatting it into what Lawson needs and uploading the data. A partner who uses a repeatable process that allows for tweaking the process if needed through testing cycles and then having the final version ready when you are ready to go-live.
When considering a Merger or acquisition there are many considerations. Some of these are:
With the right partner, you can have a smooth and successful transition.
View Hotels Revolutionises Operations with Infor
NewsInfor recently announced that View Hotels had deployed Infor Hospitality Management Solution (HMS) and Interfaces across its three Australian Hotels. This deployment was done in hopes to better leverage the cloud for data insights, marketing and remote working. Per the press release, View Hotels has already seen tremendous success in just a few months using Infor’s cloud platform, generating valuable customer insights leading to increased revenue. Owners Mimi Wong and Neil Wong of the hotel chain selected Infor for the project as a means to change the hotel’s culture and productivity. Neil says of the decision to choose the tech giant, “We needed a reliable partner that can deliver a central platform that communicates with every department. Every person who uses the system must be able to access the information and use the built-in tools to do his or her job. Implementation and training went ahead virtually, and we clearly see the benefits of Infor.”
For Full Article, Click Here
Weekly Patch Notification: May 15, 2021
Articles, Frontpage Article, PatchesMoving to Workday? How will you archive your Lawson data?
Articles, Frontpage Article, NewsIt’s official, you have finalized the project to move to Workday and are ready to begin your journey to the cloud. But wait! What will you do with all your Lawson legacy data? By now you probably know that you can’t take it all to Workday. Your data retention policies may not allow you to turn off your Lawson 10x (or 9.0.1) servers just yet. Looks like you have more work to do.
Keeping those servers around for another 7 years is not an option. You’re likely running several Windows 2012 servers, or worst yet, Windows 2008, AIX or AS400 iSeries. Not to mention the database servers, file servers, co-location, Disaster Recovery servers and more. It’s enough to keep the most seasoned IT manager awake at night. What if the hardware fails? What if the old OS has a vulnerability we can’t patch? What if our server admin who knows how to maintain Lawson leaves? All these what-ifs are just the tip of the data retention iceberg.
One option is to park the data in a data lake and bury it under a rug for the time being. But unless your users are data analysts with some sophisticated BI tools and skills, then the data lake might as well be a Crater lake.
What if there was a way to completely remove the Lawson footprint from your data center but still provide fast, secure, and intuitive access to all the data to your users in a way that didn’t require any servers or maintenance? The APIX Serverless Framework is just that solution. Based on the AWS serverless stack, APIX has opened up incredible possibilities for inquiry only applications never before possible without a substantial investment in infrastructure. Clients can now provision a web based, lightweight, data archive solution and migrate all their data within days rather than months and at a fraction of the cost of the other solutions with none of the risk. Find out how the APIX serverless framework can help you meet all your Lawson data archive needs and eliminate the legacy servers for good.
7 Ways Artificial Intelligence is Improving Healthcare
NewsTechnology has had a breakthrough in t he healthcare sector and has reshaped the field. Technological innovations such as artificial intelligence (AI) has improved the way we monitor, care, and rehabilitate ourselves. An article on visualcapitalist.com shows 7 ways AI has improved healthcare in every step of a patient’s journey.
For Full Article, Click Here
How To Use Educational Technology Humanely Post-Pandemic
NewsThe Prenda Model leverages technology to quickly, efficiently, and effectively deliver academic content. This frees up more time for collaborative, project-based work. McShane notes the nice balance between personalized learning and collaborative, project-based work. Prenda schools, he explains, offers the best of computer-based instruction (self-pacing, meeting students where they are, allowing for different students in the same class to be learning at different levels, etc.) and using its efficiency to create space for exciting, fulfilling, engaging, and substantive collaborative work.
The Hybrid Homeschool Model devotes to one learning modality or another. This type of model has students work 2-3 days per week with personalized learning software, and spends the rest of the week in school to discuss their lessons, work on projects, play sports and other extra curricular activities done in person. McShane’s EdChoice discovered via polls that there is a huge favor for this school modal. This hybrid model poses opportunities for schools to use facilities, faculty, and staff more efficiently. It could also drive down the cost of education while at the same time providing a richer, more effective school experience, McShane notes.
The Lumen Verum Model, inspired by the school in Boston with the same name, limits daily screen time and has a rich set of in-person experiences for students. However, the fact that they will be able to bring passionate, knowledgeable international experts to speak on topics will offer students a unique experience. McShane expresses technology is a tool that educators can use to extend their reach, to help students access things that they otherwise might not be able to in the traditional classroom, to customize and personalize the offerings available to students, and to get through things faster than traditional methods.
Even with cases going down and vaccinations are helping to bring the numbers down, this past year has proved that education technology could be the new normal, and schools are going to need to know how to work with hybrid or fully virtual learning.
For Full Article, Click Here
Modify AD FS Login Page to Allow Username Without Domain
Articles, Frontpage Article, NewsOnce you convert Lawson to authenticate with AD FS, you may find that your users would really prefer to log in with their normal ID (as opposed to id@domain.com format). You can accomplish this by updating the login method on the AD FS home page.
To make these changes, begin by opening PowerShell as administrator on the AD FS server, then follow these steps.
Create a new theme based on the default theme:
new-adfswebtheme -name <custom theme name> -sourcename default
Download the new theme to a local path:
export-adfswebtheme -name <custom theme name> -DirectoryPath “<local path>”
Navigate to the onload.js file in the theme that you just downloaded. Add the following code to the onload.js file. The highlighted portion is what you will update with your company’s domain.
// Company customization
// accept sAMAccountName
// pass userprincipalName (id@company.com)
if (typeof Login != ‘undefined’){
Login.submitLoginRequest = function () {
var u = new InputUtil();
var e = new LoginErrors();
var userName = document.getElementById(Login.userNameInput);
var password = document.getElementById(Login.passwordInput);
if (userName.value && !userName.value.match(‘[@\\\\]’))
{
var userNameValue = ‘company.com\\’ + userName.value;
document.forms[‘loginForm’].UserName.value = userNameValue;
}
if (!userName.value) {
u.setError(userName, e.userNameFormatError);
return false;
}
if (!password.value)
{
u.setError(password, e.passwordEmpty);
return false;
}
document.forms[‘loginForm’].submit();
return false;
};
}
In PowerShell, upload the new onload.js file:
Set-AdfsWebTheme -TargetName TriCity -OnLoadScriptPath “c:\admin\TriCityTheme\script\onload.js”
Activate the custom theme:
Set-AdfsWebConfig -ActiveThemeName TriCity
Now, when users type in their regular username, it will be appended with “your domain\” when they click the login button. If users type in the domain themselves (“username@company.com”), the login page will accept that value and log in the user with the userPrincipalName they provided.
DB Schenker Innovates with Infor
NewsGlobal logistics provider DB Schenker has extended its investment in Infor technology. DB Schenker’s 15-year technology partnership consists of access to Infor Nexus Purchase Order Management and Infor Nexus Control Center as part of a program to help deliver an industry-leading, end-to-end predictive estimated time of arrival (ETA) capability for customers. Per the press release, DB Schenker has already reported better predictive ETA accuracy compared to using carrier GPS-tracking data alone. Trials amongst early-adopter customers have reported industry-leading levels of reliability when predicting the date of goods arrival at final destination, from the point of the original purchase order being raised. Mark Illidge, Infor vice-president and general manager for supply chain in EMEA, says of the partnership, “As one of the first global logistics leaders on the Infor Nexus platform, DB Schenker has a history of innovation and collaborative partnership with Infor. The ability to develop truly industry-leading predictive ETAs is yet another example of this partnership in action.”
For Full Article, Click Here
Weekly Patch Notification: May 8, 2021
Articles, Frontpage Article, PatchesMoving to Oracle HCM? How will you archive your Lawson data?
Articles, Frontpage Article, NewsIt’s official, you have finalized the project to move to Oracle HCM and are ready to begin your journey to the cloud. But wait! What will you do with all your Lawson legacy data? By now you probably know that you can’t take it all to Oracle HCM. In fact in most cases you’re limited to a small subset of your original data. Your data retention policies may not allow you to turn off your Lawson 10x (or 9.0.1) servers just yet. Looks like you have more work to do.