E10 configurator in .net code

I got the configurator converted and working, with one support call that I am still livid about.

I was told "You need to get consulting on this" when all it turned out to be was "uncheck and check the enable part creation checkbox."  Where I am on the external code that builds a quote and runs the configurator is what the dickens did Epicor replace OnPageLeave with.  There are two datasets, PCInputs and PCInputsTransport. Setting the old PCInputs does nothing, but setting PCInputsTransport gets the values into the configurator but.... none of the C# that is in the configurator was executed.  If that's where you are, we are in the same boat of despair.  Gary

Has anyone converted configurator .net code (or service connect) from E9 to E10.

I'm having a heck of a time figuring out what causes the new C# code in the configurator to run.

In E9 it was ApplyLeave and NextPage but those methods have been removed in E10.

I can stuff the configured values into it and get a configured part but none of the calculated values work.

Any help or direction is appreciated.

Gary




 


I was the first to go live on the E10 configurator…. Was slightly painful.

 

Use this website to convert your code: https://scrs.epicor.com/ABLConversionweb/

 

The other thing that you need to do is add .”Value” at the end of each value used.

 

Here is an example:

OLD Code:

Inputs.CONFSTATUS = (If Inputs.CONFIGCOMPLETE Then ("COMPLETE! CLICK SAVE TO CONTINUE") Else ("** CONFIGURATION INCOMPLETE! **")).

 

CONVERTED from the website:

Inputs.CONFSTATUS = ((Inputs.CONFIGCOMPLETE) ? ("COMPLETE! CLICK SAVE TO CONTINUE") : ("** CONFIGURATION INCOMPLETE! **"));

 

How is needs to look after converted:

Inputs.CONFSTATUS.Value = ((Inputs.CONFIGCOMPLETE.Value) ? ("COMPLETE! CLICK SAVE TO CONTINUE") : ("** CONFIGURATION INCOMPLETE! **"));

 

 

Hope this helps!!

Anthony

 

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Tuesday, December 2, 2014 11:59 AM
To: vantage@yahoogroups.com
Subject: [Vantage] E10 configurator in .net code

 

 

Has anyone converted configurator .net code (or service connect) from E9 to E10.

I'm having a heck of a time figuring out what causes the new C# code in the configurator to run.

In E9 it was ApplyLeave and NextPage but those methods have been removed in E10.

I can stuff the configured values into it and get a configured part but none of the calculated values work.

Any help or direction is appreciated.

Gary

 

 

 

 

 

And by the way…

 

“On Leave” was changed to “On Field Changed”

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Tuesday, December 2, 2014 12:09 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] E10 configurator in .net code

 

 

I was the first to go live on the E10 configurator…. Was slightly painful.

 

Use this website to convert your code: https://scrs.epicor.com/ABLConversionweb/

 

The other thing that you need to do is add .”Value” at the end of each value used.

 

Here is an example:

OLD Code:

Inputs.CONFSTATUS = (If Inputs.CONFIGCOMPLETE Then ("COMPLETE! CLICK SAVE TO CONTINUE") Else ("** CONFIGURATION INCOMPLETE! **")).

 

CONVERTED from the website:

Inputs.CONFSTATUS = ((Inputs.CONFIGCOMPLETE) ? ("COMPLETE! CLICK SAVE TO CONTINUE") : ("** CONFIGURATION INCOMPLETE! **"));

 

How is needs to look after converted:

Inputs.CONFSTATUS.Value = ((Inputs.CONFIGCOMPLETE.Value) ? ("COMPLETE! CLICK SAVE TO CONTINUE") : ("** CONFIGURATION INCOMPLETE! **"));

 

 

Hope this helps!!

Anthony

 

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Tuesday, December 2, 2014 11:59 AM
To: vantage@yahoogroups.com
Subject: [Vantage] E10 configurator in .net code

 

 

Has anyone converted configurator .net code (or service connect) from E9 to E10.

I'm having a heck of a time figuring out what causes the new C# code in the configurator to run.

In E9 it was ApplyLeave and NextPage but those methods have been removed in E10.

I can stuff the configured values into it and get a configured part but none of the calculated values work.

Any help or direction is appreciated.

Gary

 

 

 

 

 

Gary,

 

I have an extreme configurator full of code and “such”.  If you have a lot of code, there are still a few things not quite working or unique ways to make them work.  I talk to Epicor daily on this, so if you need help with code converting, let me know.  The converter isn’t as helpful as you might think.  The page skip/return has an issue I am waiting for a one-off on at the moment.

 

Brenda

 

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com]
Sent: Tuesday, December 02, 2014 11:59 AM
To: vantage@yahoogroups.com
Subject: [Vantage] E10 configurator in .net code

 

 

Has anyone converted configurator .net code (or service connect) from E9 to E10.

I'm having a heck of a time figuring out what causes the new C# code in the configurator to run.

In E9 it was ApplyLeave and NextPage but those methods have been removed in E10.

I can stuff the configured values into it and get a configured part but none of the calculated values work.

Any help or direction is appreciated.

Gary