Thursday, November 30, 2017

Manage 2000 Release 8.1 Service Pack 2 - sneak peek

Development of Service Pack 2 for Manage 2000 8.1 has been cutoff.  I have gone through the demo data tidying up while Doug is working through the release control process. We should be in a position to release it well within our announced Jan 2018 time frame.

Here are my top ten favorite new features in this development rich service pack:

  1. UniData 8.2 Python Integration
  2. We have UniData 8.2 loaded up on our development machine and are using it daily. Unfortunately our development box is an HPUX machine and the new Python integration is not yet available for HPUX.  But for those running on Windows servers this opens up a whole new world of possibilities.

  3. Web DE 5.3 JavaScheduler pass through CallRPC
  4. Rocket put in a special version of the CallRPC method based on the Manage 2000 teams input which by-passes the ADO Recordset parsing and provides a very lean connection between the .Net world and the UniData world. Various measures show through-put improvement from 2X to over 10X.  This doesn't make the processing of the business logic any faster, but just moving data back and forth this much faster creates a very noticeable performance improvement for the end user.

  5. UrlAuthorizationModule
  6. "With great power comes great responsibility" PDF publishing and attachments anywhere features of Manage 2000 8.1 provide the power to put your customers in control of viewing their documents. The UrlAuthorizationModule provides the security enabling you to do this responsibly.

  7. W(+/-)n Work Date (Shop Calendar) Entry Shortcut
  8. Simple. Global. Useful. What is not to like?

  9. ECA support for attachments and calendar events
  10. Welcome enhancements to ECA email notifications. I particularly like the idea of ECAs sending calendar appointments to recipients, who can then simply click on the icon to import reminders into their calendars and have them act as cues for future activity.

  11. Associated Sales Items support in ShoppingCart
  12. The existence of Associated Sales Items in the database and the lack of their use in the shopping cart was just begging for development

  13. AUTHORIZE.DATA.ACCESS
  14. Anytime hardcoded rules are abstracted to configuration tables it is a good thing for the flexibility, elasticity, and endurance of the product. Plus it puts the Manage 2000 customer organization in the drivers seat defining how the software should behave.

  15. REFRESH.SPOOL.DATA Master Agent Service
  16. This makes the web interface to the spooler jobs dependable and truly useful. Dependending on traffic to SPE to trigger refreshes is just too shakey especially in smaller installations.

  17. SECURITY.MASS.UPDATE
  18. There are a number of administrator treats in this service pack. Handling security changes faster and easier is certainly a welcome one.

  19. PMT.STACK.MASS.UPDATE
  20. Like SECURITY.MASS.UPDATE this just seems like something that ought to be there in this day and age.

Aside from lots of treats for administrators there are over half a dozen new features in Product Data Management alone. So watch for the upcoming official announcement and after you load up this new service pack look through the FEATURE.SUMMARY document.

Friday, September 8, 2017

Using Excel as a Client Front End to Manage 2000

This is a bit of a follow-up to a previous post I wrote  about VSTO and Manage 2000  ERPBusinessObjectService. Visual Studio Tools for Office (VSTO) provides a development framework for coding behaviors into classes of Excel spreadsheets.  You can deploy them with one-click installs and users can save them as templates for creating smart spreadsheets.

Connecting VSTO code with Manage 2000 can be very easy with the ERPBusinessObjectService. A little bit of code in C# or VB.Net can read and post datasets of Manage 2000 business objects. However you may run into a lot of plumbing work moving values from business object dataset tables to the spreadsheet cells and back.  Excel ListObjects can greatly simplify this coding chore. ListObjects define mappings and databind values between columns in the worksheet and row data of columns in the business object data tables:



With this little bit of code you can synchronize the spreadsheet column cell values with a corresponding table in the business object dataset, and use the webservice to read the dataset from or post the dataset back to Manage 2000, turning Excel into a client UI for Manage 2000.

Friday, February 10, 2017

Event, Condition, Actions with Attachments and Calendar Events

ECAs have become a part of daily life at many Manage 2000 sites.

The Event/Condition/Action workflow tool is one of the tools within Manage 2000 which simplifies tailoring to your business.

You can configure Manage 2000 to monitor ERP events, apply conditions, and automatically respond with an action.  One possible action is to email pertinent information to the people involved. A powerful scripting engine provides control over the email document content.

With Manage 2000 release 8.1 you can now easily attach items from UniData files, and files from UNIX or Windows level directories.


You can also script a request to add in ICalendar attachments that the recipient can import into their calendar.


The new scripting options follow the established ECA scripting norms supporting keyword and ECA variable replacements. Attachments are added like any other options using /ATTACH.ITEM udtfilename itemid or /ATTACH.FILE osfilename. Calendar events are added using the new /CALL subroutine CREATE.CALENDAR.EVENT which includes properties for many of the ICalendar options defined in the RFC 5545 Internet standard.