You can re-enable the welcome/prodline msg if you put the codes back in. Problem is you have to reapply the codes practically every portal patch.
Posted By Carl.Seay on 07/28/2014 8:07 AM I know this is kind of an old thread, but Infor has released a Portal patch that displays the Product Line. It displays like Smart Office: On the top left with the Title of whatever you have open (i.e. HR11 - Employee - PROD).
I am on Mingle 10.0.5.0.628 and see the Product line if I hover over the Description/Form number .
For example for HR11 I see "Employee (HR11.1)" and if I hover over that I see "Employee (DCOHP10 - HR11.1)".
Is there a way to make the productline part visible all of the time?
I entered a ticket with Infor and the response I got was if I wanted the Welcome message back to enter an Enhancement Request but I did not get an answer about how to make the product line visible all of the time and not just when I hover.
Shaun C,
I know this is a bit late to help you, but it may help someone else. We were able to display the user's full name by updating the tp_Title field in the UserInfo table of the Sharepoint database. We created a job in SQL Server to update every night. We include the employee's number as well. Here is the sql:
UPDATE UserInfo SET UserInfo.tp_Title = (rtrim(NICK_NAME) + ' ' + rtrim(LAST_NAME) + ' - ' + cast(EMPLOYEE as Varchar)) FROM UserInfo left join prod.dbo.EMPLOYEE ON cast(EMPLOYEE.EMPLOYEE as varchar) = cast((replace(right(tp_login, charindex('|', reverse(tp_Login))), '|', '')) as varchar) WHERE UserInfo.tp_Title = cast(EMPLOYEE as Varchar)
-Frank
Okay, old thread I know, but I can't find an answer to this in the INFOR docs or in the community. We are on 10.0.9, on premise. We never use the Ming.le log in - we log in straight to our web or app server. I know it is there, we simply don't use it, as it is another layer we don't need. I don't know when the "Welcome Username" went away, but I swear I JUST noticed it last week. I tried adding code to the portalrole.xml file to see if it would work the same as it used to, and I got an error when I tried to bring up portal. This is from our default.xml file (the one that I am testing with) and what I added is the three lines that start and end with Welcome. When I tried to bring up portal, I got a "file contains invalid XML" error. Now I know next to nothing about XML, but does anyone know why this won't work, and how I can get the username to display like it used to? Not sure why I can't insert a screenshot in here darn it.
home.htm >]]>
How about an attachment for my third attempt?