After switching between different projects today, I noticed there is a lack of consistency in code editors within Epicor and it was starting to drive me crazy! Does one software program really need to have 3 different C# code editors, that all work differently?
Screen Customizations - has line number and a bunch of other options
Could we take the benefits of each and combine them into one really nice editor? PLEASE?!? In the meantime, I’ll continue to code in Notepad ++ and Copy & Paste I guess…
You missed a bit, the code wizards are also different
Have you tried using the ECE and linqpad? I know they are not native, but certainly an good way to get things happening.
I don’t have any experience on the Configurator Editor so I can’t comment there.
Apologies if you have already looked at those tools. I do understand where you are coming from, but I think from an Epicor perspective, it’s going to be all about development priorities, and perspective.
Ask the Tools team and they will say yet that’s important. Ask the Marketing team and they will say iOT, EVA and Data Analytics. Sometimes the guy who is acting as the conduit between the end users and the vendor gets the short end of the stick.
Ask the Tools team and they will say yet that’s important. Ask the Marketing team and they will say iOT, EVA and Data Analytics. Sometimes the guy who is acting as the conduit between the end users and the vendor gets the short end of the stick.
I wonder what the response would be is they ask the Epicor CUSTOMERS?
For us the value in Epicor is the ability to adapt it to our needs to make us more efficient. That means all the ICE tools & customisations represent HUGE value to us. The better the ICE & customisation tools are the better our Epicor system is and that makes our company better.
In my opinion Jose’s Visual studio extensions also make a big difference as it makes creating customisations easier (hence cheaper) which then makes more customisations viable.
Note that I feel your pain (and your rant)… I did a similar rant when I found out that BPMs supported the “new” String interpolation command for formatting strings… but the Configurator does not…
Turns out that BPMs have been converted to use a Roslyn platform for C# code, but the Configurator is still using CSharpCodeProvider to generate code, and that doesnt support C# 6 (yet?)… I was told that the tools team is looking into this, but it will take some work to make the code platforms unified.
I had been doing a bunch of BPMs, when i found the string interpolation option… then I went back to Configurator, and was disappointed… it is really much more readable: (which do you like best?):
//OLD Style:
string st = String.Format("part: {0}, Description: {1}",MyPart,MyDescription);
//NEW IMPROVED style:
string st = $"part: {MyPart}, Description: {MyDescription}";
I feel your pain, For what its worth, you can click the tab on the errors window of customization editor and double click those errors to get to the offending line.
The coding is not the only place needing uniformity… the interface as well…
This shows that those tools were designed by different teams without a global design template… (my assumption here) Just look at the difference between BAQ, and dashboard modules.
Search:
DB will show a last date saved (nice)…not available in BAQ. But BAQ will allow search by name starting by…while in the DB… well… the search using starting at does not work… ??
BAQ has a last accessed list (while your session is active) but this is not available in DB …where it would be super nice to have.
Export: BAQ by default exports into “My documents” folder… while DB exports under a shared folder in the Epicor space… arggg…
etc…
and i am sure there is more…
I would have hope that going from 9 to 10 would have changed this … just food for thought for a future “big” version change ?
Nice to know about the shortcuts… thanks Chris…
This is the focus of Kinetic. The goal of Kinetic is less about using a particular technology (like Angular) but to create a common UI and UX for Epicor AND third party apps. You see the same with Google’s Material Design or Microsoft’s Fluid Design.
Part of the reason for non-uniformity is because of WHEN these were developed… some of the items you mention were developed in the dark ages (before SQL, before Dot Net)… so for example… BAQs have been around for a very very long time… Not sure, but they may be over two decades old… but BPMs are a relative newcomer… Data BPMs are even newer, and replaced the former “BAM” (Business Activity Manager) functionality found before Epicor 9.
But yes, as each module/feature is added, it is sometimes done by a different team, with different ideas… The latest was the rewrite of the Product Configurator. When they rewrote it for E10, they KNEW it was only going to work in C#, so they took a totally different approach than was done with the “converted” systems (BPM/BAQ/UI Customs)… they took a fresh approach so the interface is different.
On the plus side, I learned how to write C# on the Epicor forms code editor, so it helped to understand why and why not code works rather than autofilling out my code for me