we have some data from our old database before Epicor’s implementation that contains the data in HTML format.
Now I know that is not how data should be stored in terms of transactional data, but here we are.
Now I am wondering if Epicor is capable to present the HTML data in the dashboard grid.
My last resort is to wipe the HTML format from the data but before that I’d like to explore Epicor’s capacity in this context.
Could you please let me know if there is any work-around?
Apologies @klincecum
No intention of ignoring you and your help!
Had a super busy work-day.
Would it be possible to implement this in a dashboard?
If not possible, let’s say I create a UD menu and I wish to list all of the transactional data that is in HTML format.
How would I go about that? Should I use a textbox for the field or can I use gridview?
This is the sample of the data and the rendered version. As you can see the data (on the left) is in HTML:
Yes each row has this column, and not every row is like this, but considerable number of rows are like this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><STYLE type=text/css> P, UL, OL, DL, DIR, MENU, PRE { margin: 0 auto;}</STYLE><META name=GENERATOR content="MSHTML 9.00.8112.16434"></HEAD><BODY leftMargin=1 rightMargin=1 topMargin=1><DIV><FONT size=2 face="Segoe UI"><DIV>The XXXX status for this project has been updated for the following reason:<BR/><BR/>Quote # <a href="XXXX:QUOTE_15493">15493</a> has been converted to Order # <a href="XXXX:ORDER_12420">12420</a><BR/><BR/>Project ID: <a href="XXXX:PROJECT_103834">103834</a><BR/>Project Name: <a href="XXXX:PROJECT_103834">Spare Parts For Stock</a><BR/>Customer Name: <a href="XXXX:CUSTOMER_B3090552620%C0T(DCas">ABC Company - Salt Lake City</a><BR/><BR/>Triggered By: Shizar<BR/>Changed On: 14 April 2015 - 16:25:03<BR/>Changed To: Accounting Phase -> Credit Pending</DIV></FONT></DIV></BODY></HTML>
I have found a way to clean this up using SQL but I’d rather use what we have since users are used to this representation of data.
I ended up importing the data in a UD table and then creating a dashboard with a Tracker in which a textbox is embedded through customization.
That TextBox gets the info from that specific column when the selected row is changed, and in the meantime the string in the TextBox gets preprocessed to be stripped from the HTML tags except for Line Breaks.
So I found a work-around.
Now what I need to do is to add a menu for UD table to add new record so that users can use it for further data entry. Is there a good tutorial on this?