Manitenance & Enhanced Quality

I have some knowledge of the maintenance module, I also just picked up enhanced quality, but I haven’t peeked under the hood just yet on that one…

Rob Bucek
Production Control Manager
PH: (715) 284-5376 ext 311
Mobile: (715)896-4832
FAX: (715)284-4084
[cid:1.234354861@...]<http://www.dsmfg.com/>
(Click the logo to view our site)<http://www.dsmfg.com/>

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of fred dahl
Sent: Wednesday, December 19, 2012 9:03 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Manitenance & Enhanced Quality



Hi Jim. I have not used this site much so I am not sure how it works. We are thinking about buying the Maintenance Management and Enhanced Quality modules and want to know if anyone has any experience with these.

Thanks - Fred Dahl - Habasit America


________________________________
From: jckinneman <jckinneman@...<mailto:jckinneman%40yahoo.com>>
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Sent: Wednesday, December 12, 2012 4:19 PM
Subject: [Vantage] Re: Customization Error




are you running Epicor 9? If yes use the wizard to build your search routine and then adjust it to meet your needs?

Jim Kinneman
Encompass Solutions, Inc

--- In mailto:vantage%40yahoogroups.com, Karl Dash <dashkarl@...> wrote:
>
> I have a UD04 table into which I have put a search button to retrieve existing Sales Order numbers. I have added the requisite dlls to the Custom Assembly Reference Manager: (AD, BO, IFSalesOrder) and have put into the script editor code to respond to a button click:
> Private Sub btnSO_Click(ByVal sender As Object, ByVal Args As System.EventArgs) Handles btnSO.Click
>
> '// place event handling code here
> Dim whereClause As String = String.Empty '// "OrderNum = '" + txtKeyField-46567b2e-6bc0-4967-be35-a0ec6843838f.Text + "'"
> Dim txtOrderNum As EpiTextBox = ctype(csm.GetNativeControlReference("46567b2e-6bc0-4967-be35-a0ec6843838f"),EpiTextBox)
> Dim recSelected As Boolean
> Dim dsSearch As DataSet
> dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)
> If recSelected Then
> txtOrderNum.Text = dsSearch.Tables(0).Rows(0)("OrderNum")
> End If
> End Sub
>
> However(there's always an however), when I click on the search button I receive the following detail error:
> Error Detail
> ============
> The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib
>
> Stack Trace
> ===========
> at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
> at Epicor.Mfg.UI.FrameWork.PCallReflector.LaunchDotNet(String assemblyName, String className, Hashtable ctorList, String methodName, Hashtable methodList)
> Inner Exception
> ===============
> Exception has been thrown by the target of an invocation.
> Inner Stack Trace
> =================
> at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
> at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
> at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
> at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
> at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
> Inner Exception
> ===============
> Could not load file or assembly 'D:\client803\client\Epicor.Mfg.AD.OrderEntry.dll' or one of its dependencies. The system cannot find the file specified.
> Inner Stack Trace
> =================
> at System.Reflection.AssemblyName.nGetFileInformation(String s)
> at System.Reflection.AssemblyName.GetAssemblyName(String assemblyFile)
> at Epicor.Mfg.Lib.AssemblyReflector.LoadAssembly(String assemblyFileName)
> at Epicor.Mfg.UI.Searches.EpiSearchEngine.invokeSearch(String AdapterName, SearchOptions opts)
> at Epicor.Mfg.UI.Searches.EpiSearchEngine.InvokeSearch(String AdapterName, SearchOptions opts)
>
> What have I failed to do? I am on Progress 408 --Karl
>
> [Non-text portions of this message have been removed]
>

[Non-text portions of this message have been removed]



[Non-text portions of this message have been removed]
I have a UD04 table into which I have put a search button to retrieve existing Sales Order numbers. I have added the requisite dlls to the Custom Assembly Reference Manager: (AD, BO, IFSalesOrder) and have put into the script editor code to respond to a button click:
Private Sub btnSO_Click(ByVal sender As Object, ByVal Args As System.EventArgs) Handles btnSO.Click

  '// place event handling code here
  Dim whereClause As String = String.Empty '// "OrderNum = '" + txtKeyField-46567b2e-6bc0-4967-be35-a0ec6843838f.Text + "'"
  Dim txtOrderNum As EpiTextBox = ctype(csm.GetNativeControlReference("46567b2e-6bc0-4967-be35-a0ec6843838f"),EpiTextBox)
  Dim recSelected As Boolean
  Dim dsSearch As DataSet
  dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)
  If recSelected Then
    txtOrderNum.Text = dsSearch.Tables(0).Rows(0)("OrderNum")
  End If
  End SubÂ
Â
However(there's always an however), when I click on the search button I receive the following detail error:
Error Detail
============
The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib

Stack Trace
===========
  at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
  at Epicor.Mfg.UI.FrameWork.PCallReflector.LaunchDotNet(String assemblyName, String className, Hashtable ctorList, String methodName, Hashtable methodList)
Inner Exception
===============
Exception has been thrown by the target of an invocation.
Inner Stack Trace
=================
  at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
  at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
  at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
  at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
Inner Exception
===============
Could not load file or assembly 'D:\client803\client\Epicor.Mfg.AD.OrderEntry.dll' or one of its dependencies. The system cannot find the file specified.
Inner Stack Trace
=================
  at System.Reflection.AssemblyName.nGetFileInformation(String s)
  at System.Reflection.AssemblyName.GetAssemblyName(String assemblyFile)
  at Epicor.Mfg.Lib.AssemblyReflector.LoadAssembly(String assemblyFileName)
  at Epicor.Mfg.UI.Searches.EpiSearchEngine.invokeSearch(String AdapterName, SearchOptions opts)
  at Epicor.Mfg.UI.Searches.EpiSearchEngine.InvokeSearch(String AdapterName, SearchOptions opts)Â
Â
What have I failed to do? I am on Progress 408Â --Karl

[Non-text portions of this message have been removed]
are you running Epicor 9? If yes use the wizard to build your search routine and then adjust it to meet your needs?

Jim Kinneman
Encompass Solutions, Inc

--- In vantage@yahoogroups.com, Karl Dash <dashkarl@...> wrote:
>
> I have a UD04 table into which I have put a search button to retrieve existing Sales Order numbers. I have added the requisite dlls to the Custom Assembly Reference Manager: (AD, BO, IFSalesOrder) and have put into the script editor code to respond to a button click:
> Private Sub btnSO_Click(ByVal sender As Object, ByVal Args As System.EventArgs) Handles btnSO.Click
>
> Â Â '// place event handling code here
> Â Â Dim whereClause As String = String.Empty '// "OrderNum = '" + txtKeyField-46567b2e-6bc0-4967-be35-a0ec6843838f.Text + "'"
> Â Â Dim txtOrderNum As EpiTextBox = ctype(csm.GetNativeControlReference("46567b2e-6bc0-4967-be35-a0ec6843838f"),EpiTextBox)
> Â Â Dim recSelected As Boolean
> Â Â Dim dsSearch As DataSet
> Â Â dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)
> Â Â If recSelected Then
> Â Â Â Â txtOrderNum.Text = dsSearch.Tables(0).Rows(0)("OrderNum")
> Â Â End If
> Â Â End SubÂ
> Â
> However(there's always an however), when I click on the search button I receive the following detail error:
> Error Detail
> ============
> The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib
>
> Stack Trace
> ===========
> Â Â at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
> Â Â at Epicor.Mfg.UI.FrameWork.PCallReflector.LaunchDotNet(String assemblyName, String className, Hashtable ctorList, String methodName, Hashtable methodList)
> Inner Exception
> ===============
> Exception has been thrown by the target of an invocation.
> Inner Stack Trace
> =================
> Â Â at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
> Â Â at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
> Â Â at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
> Â Â at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
> Â Â at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
> Inner Exception
> ===============
> Could not load file or assembly 'D:\client803\client\Epicor.Mfg.AD.OrderEntry.dll' or one of its dependencies. The system cannot find the file specified.
> Inner Stack Trace
> =================
> Â Â at System.Reflection.AssemblyName.nGetFileInformation(String s)
> Â Â at System.Reflection.AssemblyName.GetAssemblyName(String assemblyFile)
> Â Â at Epicor.Mfg.Lib.AssemblyReflector.LoadAssembly(String assemblyFileName)
> Â Â at Epicor.Mfg.UI.Searches.EpiSearchEngine.invokeSearch(String AdapterName, SearchOptions opts)
> Â Â at Epicor.Mfg.UI.Searches.EpiSearchEngine.InvokeSearch(String AdapterName, SearchOptions opts)Â
> Â
> What have I failed to do? I am on Progress 408Â --Karl
>
> [Non-text portions of this message have been removed]
>
I just want to give this a bump. The short form of the error is "The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib"
Â
I am on Progress 803.408
Thanks -Karl


________________________________
From: Karl Dash <dashkarl@...>
To: Vantage Group <vantage@yahoogroups.com>
Sent: Wednesday, December 12, 2012 1:10 PM
Subject: [Vantage] Customization Error

Â
I have a UD04 table into which I have put a search button to retrieve existing Sales Order numbers. I have added the requisite dlls to the Custom Assembly Reference Manager: (AD, BO, IFSalesOrder) and have put into the script editor code to respond to a button click:
Private Sub btnSO_Click(ByVal sender As Object, ByVal Args As System.EventArgs) Handles btnSO.Click

  '// place event handling code here
  Dim whereClause As String = String.Empty '// "OrderNum = '" + txtKeyField-46567b2e-6bc0-4967-be35-a0ec6843838f.Text + "'"
  Dim txtOrderNum As EpiTextBox = ctype(csm.GetNativeControlReference("46567b2e-6bc0-4967-be35-a0ec6843838f"),EpiTextBox)
  Dim recSelected As Boolean
  Dim dsSearch As DataSet
  dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)
  If recSelected Then
    txtOrderNum.Text = dsSearch.Tables(0).Rows(0)("OrderNum")
  End If
  End SubÂ
Â
However(there's always an however), when I click on the search button I receive the following detail error:
Error Detail
============
The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib

Stack Trace
===========
  at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
  at Epicor.Mfg.UI.FrameWork.PCallReflector.LaunchDotNet(String assemblyName, String className, Hashtable ctorList, String methodName, Hashtable methodList)
Inner Exception
===============
Exception has been thrown by the target of an invocation.
Inner Stack Trace
=================
  at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
  at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
  at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
  at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
  at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
Inner Exception
===============
Could not load file or assembly 'D:\client803\client\Epicor.Mfg.AD.OrderEntry.dll' or one of its dependencies. The system cannot find the file specified.
Inner Stack Trace
=================
  at System.Reflection.AssemblyName.nGetFileInformation(String s)
  at System.Reflection.AssemblyName.GetAssemblyName(String assemblyFile)
  at Epicor.Mfg.Lib.AssemblyReflector.LoadAssembly(String assemblyFileName)
  at Epicor.Mfg.UI.Searches.EpiSearchEngine.invokeSearch(String AdapterName, SearchOptions opts)
  at Epicor.Mfg.UI.Searches.EpiSearchEngine.InvokeSearch(String AdapterName, SearchOptions opts)Â
Â
What have I failed to do? I am on Progress 408Â --Karl

[Non-text portions of this message have been removed]




[Non-text portions of this message have been removed]
Karl,

<dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)>

Should be

dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"SalesOrderAdapter", recSelected, True, whereClause)


Rob Bucek
Production Control Manager
PH: (715) 284-5376 ext 311
Mobile: (715)896-4832
FAX: (715)284-4084
[cid:1.234354861@...]<http://www.dsmfg.com/>
(Click the logo to view our site)<http://www.dsmfg.com/>

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Karl Dash
Sent: Thursday, December 13, 2012 12:59 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] Customization Error



I just want to give this a bump. The short form of the error is "The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib"

I am on Progress 803.408
Thanks -Karl

________________________________
From: Karl Dash <dashkarl@...<mailto:dashkarl%40yahoo.com>>
To: Vantage Group <vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>>
Sent: Wednesday, December 12, 2012 1:10 PM
Subject: [Vantage] Customization Error


I have a UD04 table into which I have put a search button to retrieve existing Sales Order numbers. I have added the requisite dlls to the Custom Assembly Reference Manager: (AD, BO, IFSalesOrder) and have put into the script editor code to respond to a button click:
Private Sub btnSO_Click(ByVal sender As Object, ByVal Args As System.EventArgs) Handles btnSO.Click

'// place event handling code here
Dim whereClause As String = String.Empty '// "OrderNum = '" + txtKeyField-46567b2e-6bc0-4967-be35-a0ec6843838f.Text + "'"
Dim txtOrderNum As EpiTextBox = ctype(csm.GetNativeControlReference("46567b2e-6bc0-4967-be35-a0ec6843838f"),EpiTextBox)
Dim recSelected As Boolean
Dim dsSearch As DataSet
dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)
If recSelected Then
txtOrderNum.Text = dsSearch.Tables(0).Rows(0)("OrderNum")
End If
End Sub



However(there's always an however), when I click on the search button I receive the following detail error:


Error Detail


The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib



Stack Trace



at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)


at Epicor.Mfg.UI.FrameWork.PCallReflector.LaunchDotNet(String assemblyName, String className, Hashtable ctorList, String methodName, Hashtable methodList)


Inner Exception



Exception has been thrown by the target of an invocation.


Inner Stack Trace



at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)


at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)


at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)


at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)


at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)


Inner Exception



Could not load file or assembly 'D:\client803\client\Epicor.Mfg.AD.OrderEntry.dll' or one of its dependencies. The system cannot find the file specified.


Inner Stack Trace


at System.Reflection.AssemblyName.nGetFileInformation(String s)
at System.Reflection.AssemblyName.GetAssemblyName(String assemblyFile)
at Epicor.Mfg.Lib.AssemblyReflector.LoadAssembly(String assemblyFileName)
at Epicor.Mfg.UI.Searches.EpiSearchEngine.invokeSearch(String AdapterName, SearchOptions opts)
at Epicor.Mfg.UI.Searches.EpiSearchEngine.InvokeSearch(String AdapterName, SearchOptions opts)

What have I failed to do? I am on Progress 408 --Karl

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]



[Non-text portions of this message have been removed]
Thanks, Rob. That was the ticket.
Â
-Karl


________________________________
From: Rob Bucek <rbucek@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Thursday, December 13, 2012 11:40 AM
Subject: RE: [Vantage] Customization Error

Â
Karl,

<dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)>

Should be

dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"SalesOrderAdapter", recSelected, True, whereClause)


Rob Bucek
Production Control Manager
PH: (715) 284-5376 ext 311
Mobile: (715)896-4832
FAX: (715)284-4084
[cid:mailto:1.234354861%40web65412.mail.ac4.yahoo.com]<http://www.dsmfg.com/>
(Click the logo to view our site)<http://www.dsmfg.com/>

From: mailto:vantage%40yahoogroups.com [mailto:mailto:vantage%40yahoogroups.com] On Behalf Of Karl Dash
Sent: Thursday, December 13, 2012 12:59 PM
To: mailto:vantage%40yahoogroups.com
Subject: Re: [Vantage] Customization Error



I just want to give this a bump. The short form of the error is "The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib"

I am on Progress 803.408
Thanks -Karl

________________________________
From: Karl Dash <mailto:dashkarl%40yahoo.com<mailto:dashkarl%40yahoo.com>>
To: Vantage Group <mailto:vantage%40yahoogroups.com<mailto:vantage%40yahoogroups.com>>
Sent: Wednesday, December 12, 2012 1:10 PM
Subject: [Vantage] Customization Error


I have a UD04 table into which I have put a search button to retrieve existing Sales Order numbers. I have added the requisite dlls to the Custom Assembly Reference Manager: (AD, BO, IFSalesOrder) and have put into the script editor code to respond to a button click:
Private Sub btnSO_Click(ByVal sender As Object, ByVal Args As System.EventArgs) Handles btnSO.Click

'// place event handling code here
Dim whereClause As String = String.Empty '// "OrderNum = '" + txtKeyField-46567b2e-6bc0-4967-be35-a0ec6843838f.Text + "'"
Dim txtOrderNum As EpiTextBox = ctype(csm.GetNativeControlReference("46567b2e-6bc0-4967-be35-a0ec6843838f"),EpiTextBox)
Dim recSelected As Boolean
Dim dsSearch As DataSet
dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)
If recSelected Then
txtOrderNum.Text = dsSearch.Tables(0).Rows(0)("OrderNum")
End If
End Sub

However(there's always an however), when I click on the search button I receive the following detail error:
Error Detail
============
The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib

Stack Trace
===========
at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
at Epicor.Mfg.UI.FrameWork.PCallReflector.LaunchDotNet(String assemblyName, String className, Hashtable ctorList, String methodName, Hashtable methodList)
Inner Exception
===============
Exception has been thrown by the target of an invocation.
Inner Stack Trace
=================
at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
Inner Exception
===============
Could not load file or assembly 'D:\client803\client\Epicor.Mfg.AD.OrderEntry.dll' or one of its dependencies. The system cannot find the file specified.
Inner Stack Trace
=================
at System.Reflection.AssemblyName.nGetFileInformation(String s)
at System.Reflection.AssemblyName.GetAssemblyName(String assemblyFile)
at Epicor.Mfg.Lib.AssemblyReflector.LoadAssembly(String assemblyFileName)
at Epicor.Mfg.UI.Searches.EpiSearchEngine.invokeSearch(String AdapterName, SearchOptions opts)
at Epicor.Mfg.UI.Searches.EpiSearchEngine.InvokeSearch(String AdapterName, SearchOptions opts)

What have I failed to do? I am on Progress 408 --Karl

[Non-text portions of this message have been removed]

[Non-text portions of this message have been removed]


[Non-text portions of this message have been removed]




[Non-text portions of this message have been removed]
Hi Jim. I have not used this site much so I am not sure how it works. We are thinking about buying the Maintenance Management and Enhanced Quality modules and want to know if anyone has any experience with these.
Â
Thanks - Fred Dahl - Habasit America


________________________________
From: jckinneman <jckinneman@...>
To: vantage@yahoogroups.com
Sent: Wednesday, December 12, 2012 4:19 PM
Subject: [Vantage] Re: Customization Error


Â

are you running Epicor 9? If yes use the wizard to build your search routine and then adjust it to meet your needs?

Jim Kinneman
Encompass Solutions, Inc

--- In mailto:vantage%40yahoogroups.com, Karl Dash <dashkarl@...> wrote:
>
> I have a UD04 table into which I have put a search button to retrieve existing Sales Order numbers. I have added the requisite dlls to the Custom Assembly Reference Manager: (AD, BO, IFSalesOrder) and have put into the script editor code to respond to a button click:
> Private Sub btnSO_Click(ByVal sender As Object, ByVal Args As System.EventArgs) Handles btnSO.Click
>
> Â Â '// place event handling code here
> Â Â Dim whereClause As String = String.Empty '// "OrderNum = '" + txtKeyField-46567b2e-6bc0-4967-be35-a0ec6843838f.Text + "'"
> Â Â Dim txtOrderNum As EpiTextBox = ctype(csm.GetNativeControlReference("46567b2e-6bc0-4967-be35-a0ec6843838f"),EpiTextBox)
> Â Â Dim recSelected As Boolean
> Â Â Dim dsSearch As DataSet
> Â Â dsSearch = Epicor.Mfg.UI.FormFunctions.SearchFunctions.listLookup(oTrans,"OrderEntryAdapter", recSelected, True, whereClause)
> Â Â If recSelected Then
> Â Â Â Â txtOrderNum.Text = dsSearch.Tables(0).Rows(0)("OrderNum")
> Â Â End If
> Â Â End SubÂ
> Â
> However(there's always an however), when I click on the search button I receive the following detail error:
> Error Detail
> ============
> The process caller failed to invoke method InvokeSearch in Epicor.Mfg.UI.Searches.EpiSearchEngine in D:\client803\client\Epicor.Mfg.UI.EpiClientLib
>
> Stack Trace
> ===========
> Â Â at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
> Â Â at Epicor.Mfg.UI.FrameWork.PCallReflector.LaunchDotNet(String assemblyName, String className, Hashtable ctorList, String methodName, Hashtable methodList)
> Inner Exception
> ===============
> Exception has been thrown by the target of an invocation.
> Inner Stack Trace
> =================
> Â Â at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
> Â Â at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner)
> Â Â at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks)
> Â Â at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
> Â Â at Epicor.Mfg.UI.FrameWork.PCallReflector.InvokeReflectedMethod(MethodInfo Method, Object Object, Object[] MethodParams, String className, String assemblyName)
> Inner Exception
> ===============
> Could not load file or assembly 'D:\client803\client\Epicor.Mfg.AD.OrderEntry.dll' or one of its dependencies. The system cannot find the file specified.
> Inner Stack Trace
> =================
> Â Â at System.Reflection.AssemblyName.nGetFileInformation(String s)
> Â Â at System.Reflection.AssemblyName.GetAssemblyName(String assemblyFile)
> Â Â at Epicor.Mfg.Lib.AssemblyReflector.LoadAssembly(String assemblyFileName)
> Â Â at Epicor.Mfg.UI.Searches.EpiSearchEngine.invokeSearch(String AdapterName, SearchOptions opts)
> Â Â at Epicor.Mfg.UI.Searches.EpiSearchEngine.InvokeSearch(String AdapterName, SearchOptions opts)Â
> Â
> What have I failed to do? I am on Progress 408Â --Karl
>
> [Non-text portions of this message have been removed]
>




[Non-text portions of this message have been removed]