Epicor Customer Support

Overall I'd have to say that in the UK Epicor's support is below what
I'd call acceptable.

They're all nice people and want to help, however, I've encountered
these problems...

# Those that have the skills required to fix a problem are in short
supply, increasing the time it takes for a problem to be resolved.
# If a problem is unusual or out of the ordinary it just gets put to
the bottom of the pile, you have to spend days chasing support and
sending e-mails for them to acknowledge you, and even then you
get 'well I can get the test database to do it...' and your calls
goes to the bottom of the pile again.

--- In vantage@yahoogroups.com, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
I have been running into a number of problems while customizing the Purchase Order Entry form.

For starters, the unit price for any particular line items resets to the default value when ANY change is made to the form forcing the user to double check every time. I have been trying to use beforeadapter, afteradapter, afterfieldchange, and other variations/combinations to little success. Essentially, we would like the unit price to not change automatically, it should remain the same value throughout no matter what change is made anywhere else. (BPMs failed to do anything useful to help with this)

We would like releases for any new line item to have a locked quantity. While this is relatively simple to do with a afterfieldchange method, but this tends to interfere with the above problem or vice-versa. The two do not seem to co-exist very well.

For line items that fall into the "other" category, we would like to pick a single GL account on the release form for all future line items. I added a new search button and textboxes for the user to pick a GL account, but I cannot seem to find an easy way to (a) make all "other" line items use that GL account and/or (b) have all new line items use that GL account. Also, as with the unit cost problem above, when ANY change is made to the line item, the GL on the release form tends to reset to the same "misc" value.

Any suggestions and comments would be highly appreciated.

Thanks,
Kunal



____________________________________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

[Non-text portions of this message have been removed]
We experienced the (unacceptable) auto price change upon any editing as well.

I ended up adding a checkbox (PODetail.checkbox03) to the line tab w/ this code to capture current line price and store as 'frozen' price (for restore after the app stupidly recalcs it) in PODetail.Number02:

'//////
Private Sub PODetail_AfterFieldChange(ByVal sender As object, ByVal args As DataColumnChangeEventArgs) Handles PODetail_Column.ColumnChanged
Event Handler Code
'
Select Case args.Column.ColumnName

Case "CheckBox03"
If edvPODetail.dataView(edvPODetail.Row)("CheckBox03") = True Then
'messagebox.show("freeze unit price value = unit cost on checkbox true select")
edvPODetail.dataView(edvPODetail.Row)("Number02") = edvPODetail.dataView(edvPODetail.Row)("UnitCost")
End If

Case Else
End Select
End Sub
'/////

I added a hidden textbox (txtEpiClcTtlCst) linked to PODetail.CalcTotalCost and then added this code to restore the price upon unwarranted app triggered changes:

'////
Private Sub txtEpiClcTtlCst_ValueChanged(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtEpiClcTtlCst.ValueChanged
'// ** Place Event Handling Code Here **
If len(txtEpiClcTtlCst.text) <> 0 then
If edvPODetail.dataView(edvPODetail.Row)("CheckBox03") = True Then
If edvPODetail.dataView(edvPODetail.Row)("UnitCost") <> edvPODetail.dataView(edvPODetail.Row)("Number02") Then
'messagebox.show("reset price to Freeze Unit Price value")
edvPODetail.dataView(edvPODetail.Row)("UnitCost") = edvPODetail.dataView(edvPODetail.Row)("Number02")
End If
End If
End If
End Sub
'////

The darn shame of it is, the db looks like it was designed to enable rollback of cost as their are numerous pre-change qty, pre-change cost, etc., fields that look they were intended to store values prior to changes made. Unfortunately, most don't get updated so I had to write the mess above. Had they been working (404), it would have been much cleaner.

The ability of a buyer to set a checkbox to Lock a unit cost (instead of allowing a re-price based on the current price list - every time a qty or date changes) should be a standard option PO Entry option.

Rob
--- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@...> wrote:

From: Kunal Ganguly <kunal_vantage@...>
Subject: [Vantage] PO Entry form customizations
To: "Vantage Yahoo Group" <vantage@yahoogroups.com>
Date: Thursday, May 8, 2008, 3:37 PM






I have been running into a number of problems while customizing the Purchase Order Entry form.

For starters, the unit price for any particular line items resets to the default value when ANY change is made to the form forcing the user to double check every time. I have been trying to use beforeadapter, afteradapter, afterfieldchange, and other variations/combinat ions to little success. Essentially, we would like the unit price to not change automatically, it should remain the same value throughout no matter what change is made anywhere else. (BPMs failed to do anything useful to help with this)

We would like releases for any new line item to have a locked quantity. While this is relatively simple to do with a afterfieldchange method, but this tends to interfere with the above problem or vice-versa. The two do not seem to co-exist very well.

For line items that fall into the "other" category, we would like to pick a single GL account on the release form for all future line items. I added a new search button and textboxes for the user to pick a GL account, but I cannot seem to find an easy way to (a) make all "other" line items use that GL account and/or (b) have all new line items use that GL account. Also, as with the unit cost problem above, when ANY change is made to the line item, the GL on the release form tends to reset to the same "misc" value.

Any suggestions and comments would be highly appreciated.

Thanks,
Kunal

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

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
















____________________________________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
Thanks a ton Rob! That did the trick as far as the values changing is concerned. One issue down, 3 more to go :)

Thanks,
Kunal



----- Original Message ----
From: Robert Brown <robertb_versa@...>
To: vantage@yahoogroups.com
Sent: Thursday, May 8, 2008 3:41:25 PM
Subject: Re: [Vantage] PO Entry form customizations


We experienced the (unacceptable) auto price change upon any editing as well.

I ended up adding a checkbox (PODetail.checkbox0 3) to the line tab w/ this code to capture current line price and store as 'frozen' price (for restore after the app stupidly recalcs it) in PODetail.Number02:

'//////
Private Sub PODetail_AfterField Change(ByVal sender As object, ByVal args As DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
Event Handler Code
'
Select Case args.Column. ColumnName

Case "CheckBox03"
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
'messagebox. show("freeze unit price value = unit cost on checkbox true select")
edvPODetail. dataView( edvPODetail. Row)("Number02" ) = edvPODetail. dataView( edvPODetail. Row)("UnitCost" )
End If

Case Else
End Select
End Sub
'/////

I added a hidden textbox (txtEpiClcTtlCst) linked to PODetail.CalcTotalC ost and then added this code to restore the price upon unwarranted app triggered changes:

'////
Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object, ByVal Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
'// ** Place Event Handling Code Here **
If len(txtEpiClcTtlCst .text) <> 0 then
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <> edvPODetail. dataView( edvPODetail. Row)("Number02" ) Then
'messagebox. show("reset price to Freeze Unit Price value")
edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) = edvPODetail. dataView( edvPODetail. Row)("Number02" )
End If
End If
End If
End Sub
'////

The darn shame of it is, the db looks like it was designed to enable rollback of cost as their are numerous pre-change qty, pre-change cost, etc., fields that look they were intended to store values prior to changes made. Unfortunately, most don't get updated so I had to write the mess above. Had they been working (404), it would have been much cleaner.

The ability of a buyer to set a checkbox to Lock a unit cost (instead of allowing a re-price based on the current price list - every time a qty or date changes) should be a standard option PO Entry option.

Rob
--- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:

From: Kunal Ganguly <kunal_vantage@ yahoo.com>
Subject: [Vantage] PO Entry form customizations
To: "Vantage Yahoo Group" <vantage@yahoogroups .com>
Date: Thursday, May 8, 2008, 3:37 PM

I have been running into a number of problems while customizing the Purchase Order Entry form.

For starters, the unit price for any particular line items resets to the default value when ANY change is made to the form forcing the user to double check every time. I have been trying to use beforeadapter, afteradapter, afterfieldchange, and other variations/combinat ions to little success. Essentially, we would like the unit price to not change automatically, it should remain the same value throughout no matter what change is made anywhere else. (BPMs failed to do anything useful to help with this)

We would like releases for any new line item to have a locked quantity. While this is relatively simple to do with a afterfieldchange method, but this tends to interfere with the above problem or vice-versa. The two do not seem to co-exist very well.

For line items that fall into the "other" category, we would like to pick a single GL account on the release form for all future line items. I added a new search button and textboxes for the user to pick a GL account, but I cannot seem to find an easy way to (a) make all "other" line items use that GL account and/or (b) have all new line items use that GL account. Also, as with the unit cost problem above, when ANY change is made to the line item, the GL on the release form tends to reset to the same "misc" value.

Any suggestions and comments would be highly appreciated.

Thanks,
Kunal

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

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

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ



____________________________________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

[Non-text portions of this message have been removed]
There is a check box in ver. 8.03 on the line to lock unit Price that I
think does what you are doing in your custom code.



Steve



-----Original Message-----
From: Kunal Ganguly [mailto:kunal_vantage@...]
Sent: May 09, 2008 8:52 AM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] PO Entry form customizations



Thanks a ton Rob! That did the trick as far as the values changing is
concerned. One issue down, 3 more to go :)

Thanks,
Kunal

----- Original Message ----
From: Robert Brown <robertb_versa@ <mailto:robertb_versa%40yahoo.com>
yahoo.com>
To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
Sent: Thursday, May 8, 2008 3:41:25 PM
Subject: Re: [Vantage] PO Entry form customizations

We experienced the (unacceptable) auto price change upon any editing as
well.

I ended up adding a checkbox (PODetail.checkbox0 3) to the line tab w/ this
code to capture current line price and store as 'frozen' price (for restore
after the app stupidly recalcs it) in PODetail.Number02:

'//////
Private Sub PODetail_AfterField Change(ByVal sender As object, ByVal args As
DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
Event Handler Code
'
Select Case args.Column. ColumnName

Case "CheckBox03"
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
'messagebox. show("freeze unit price value = unit cost on checkbox true
select")
edvPODetail. dataView( edvPODetail. Row)("Number02" ) = edvPODetail.
dataView( edvPODetail. Row)("UnitCost" )
End If

Case Else
End Select
End Sub
'/////

I added a hidden textbox (txtEpiClcTtlCst) linked to PODetail.CalcTotalC ost
and then added this code to restore the price upon unwarranted app triggered
changes:

'////
Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object, ByVal
Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
'// ** Place Event Handling Code Here **
If len(txtEpiClcTtlCst .text) <> 0 then
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <> edvPODetail.
dataView( edvPODetail. Row)("Number02" ) Then
'messagebox. show("reset price to Freeze Unit Price value")
edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) = edvPODetail.
dataView( edvPODetail. Row)("Number02" )
End If
End If
End If
End Sub
'////

The darn shame of it is, the db looks like it was designed to enable
rollback of cost as their are numerous pre-change qty, pre-change cost,
etc., fields that look they were intended to store values prior to changes
made. Unfortunately, most don't get updated so I had to write the mess
above. Had they been working (404), it would have been much cleaner.

The ability of a buyer to set a checkbox to Lock a unit cost (instead of
allowing a re-price based on the current price list - every time a qty or
date changes) should be a standard option PO Entry option.

Rob
--- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:

From: Kunal Ganguly <kunal_vantage@ yahoo.com>
Subject: [Vantage] PO Entry form customizations
To: "Vantage Yahoo Group" <vantage@yahoogroups .com>
Date: Thursday, May 8, 2008, 3:37 PM

I have been running into a number of problems while customizing the Purchase
Order Entry form.

For starters, the unit price for any particular line items resets to the
default value when ANY change is made to the form forcing the user to double
check every time. I have been trying to use beforeadapter, afteradapter,
afterfieldchange, and other variations/combinat ions to little success.
Essentially, we would like the unit price to not change automatically, it
should remain the same value throughout no matter what change is made
anywhere else. (BPMs failed to do anything useful to help with this)

We would like releases for any new line item to have a locked quantity.
While this is relatively simple to do with a afterfieldchange method, but
this tends to interfere with the above problem or vice-versa. The two do not
seem to co-exist very well.

For line items that fall into the "other" category, we would like to pick a
single GL account on the release form for all future line items. I added a
new search button and textboxes for the user to pick a GL account, but I
cannot seem to find an easy way to (a) make all "other" line items use that
GL account and/or (b) have all new line items use that GL account. Also, as
with the unit cost problem above, when ANY change is made to the line item,
the GL on the release form tends to reset to the same "misc" value.

Any suggestions and comments would be highly appreciated.

Thanks,
Kunal

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

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

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ


__________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.
<http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ>
yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

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





[Non-text portions of this message have been removed]
I did not have such an option. Are you sure it was not a customization on your end?

Thanks,
Kunal



----- Original Message ----
From: vantage <vantage@...>
To: vantage@yahoogroups.com
Sent: Friday, May 9, 2008 9:05:10 AM
Subject: RE: [Vantage] PO Entry form customizations


There is a check box in ver. 8.03 on the line to lock unit Price that I
think does what you are doing in your custom code.

Steve

-----Original Message-----
From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
Sent: May 09, 2008 8:52 AM
To: vantage@yahoogroups .com
Subject: Re: [Vantage] PO Entry form customizations

Thanks a ton Rob! That did the trick as far as the values changing is
concerned. One issue down, 3 more to go :)

Thanks,
Kunal

----- Original Message ----
From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo. com>
yahoo.com>
To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
Sent: Thursday, May 8, 2008 3:41:25 PM
Subject: Re: [Vantage] PO Entry form customizations

We experienced the (unacceptable) auto price change upon any editing as
well.

I ended up adding a checkbox (PODetail.checkbox0 3) to the line tab w/ this
code to capture current line price and store as 'frozen' price (for restore
after the app stupidly recalcs it) in PODetail.Number02:

'//////
Private Sub PODetail_AfterField Change(ByVal sender As object, ByVal args As
DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
Event Handler Code
'
Select Case args.Column. ColumnName

Case "CheckBox03"
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
'messagebox. show("freeze unit price value = unit cost on checkbox true
select")
edvPODetail. dataView( edvPODetail. Row)("Number02" ) = edvPODetail.
dataView( edvPODetail. Row)("UnitCost" )
End If

Case Else
End Select
End Sub
'/////

I added a hidden textbox (txtEpiClcTtlCst) linked to PODetail.CalcTotalC ost
and then added this code to restore the price upon unwarranted app triggered
changes:

'////
Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object, ByVal
Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
'// ** Place Event Handling Code Here **
If len(txtEpiClcTtlCst .text) <> 0 then
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <> edvPODetail.
dataView( edvPODetail. Row)("Number02" ) Then
'messagebox. show("reset price to Freeze Unit Price value")
edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) = edvPODetail.
dataView( edvPODetail. Row)("Number02" )
End If
End If
End If
End Sub
'////

The darn shame of it is, the db looks like it was designed to enable
rollback of cost as their are numerous pre-change qty, pre-change cost,
etc., fields that look they were intended to store values prior to changes
made. Unfortunately, most don't get updated so I had to write the mess
above. Had they been working (404), it would have been much cleaner.

The ability of a buyer to set a checkbox to Lock a unit cost (instead of
allowing a re-price based on the current price list - every time a qty or
date changes) should be a standard option PO Entry option.

Rob
--- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:

From: Kunal Ganguly <kunal_vantage@ yahoo.com>
Subject: [Vantage] PO Entry form customizations
To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
Date: Thursday, May 8, 2008, 3:37 PM

I have been running into a number of problems while customizing the Purchase
Order Entry form.

For starters, the unit price for any particular line items resets to the
default value when ANY change is made to the form forcing the user to double
check every time. I have been trying to use beforeadapter, afteradapter,
afterfieldchange, and other variations/combinat ions to little success.
Essentially, we would like the unit price to not change automatically, it
should remain the same value throughout no matter what change is made
anywhere else. (BPMs failed to do anything useful to help with this)

We would like releases for any new line item to have a locked quantity.
While this is relatively simple to do with a afterfieldchange method, but
this tends to interfere with the above problem or vice-versa. The two do not
seem to co-exist very well.

For line items that fall into the "other" category, we would like to pick a
single GL account on the release form for all future line items. I added a
new search button and textboxes for the user to pick a GL account, but I
cannot seem to find an easy way to (a) make all "other" line items use that
GL account and/or (b) have all new line items use that GL account. Also, as
with the unit cost problem above, when ANY change is made to the line item,
the GL on the release form tends to reset to the same "misc" value.

Any suggestions and comments would be highly appreciated.

Thanks,
Kunal

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

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

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.
<http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ

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

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




____________________________________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

[Non-text portions of this message have been removed]
Sorry that is on sales order entry.



-----Original Message-----
From: Kunal Ganguly [mailto:kunal_vantage@...]
Sent: May 09, 2008 9:14 AM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] PO Entry form customizations



I did not have such an option. Are you sure it was not a customization on
your end?

Thanks,
Kunal

----- Original Message ----
From: vantage <vantage@rmgfelm. <mailto:vantage%40rmgfelm.com> com>
To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
Sent: Friday, May 9, 2008 9:05:10 AM
Subject: RE: [Vantage] PO Entry form customizations

There is a check box in ver. 8.03 on the line to lock unit Price that I
think does what you are doing in your custom code.

Steve

-----Original Message-----
From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
Sent: May 09, 2008 8:52 AM
To: vantage@yahoogroups .com
Subject: Re: [Vantage] PO Entry form customizations

Thanks a ton Rob! That did the trick as far as the values changing is
concerned. One issue down, 3 more to go :)

Thanks,
Kunal

----- Original Message ----
From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo. com>
yahoo.com>
To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
Sent: Thursday, May 8, 2008 3:41:25 PM
Subject: Re: [Vantage] PO Entry form customizations

We experienced the (unacceptable) auto price change upon any editing as
well.

I ended up adding a checkbox (PODetail.checkbox0 3) to the line tab w/ this
code to capture current line price and store as 'frozen' price (for restore
after the app stupidly recalcs it) in PODetail.Number02:

'//////
Private Sub PODetail_AfterField Change(ByVal sender As object, ByVal args As
DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
Event Handler Code
'
Select Case args.Column. ColumnName

Case "CheckBox03"
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
'messagebox. show("freeze unit price value = unit cost on checkbox true
select")
edvPODetail. dataView( edvPODetail. Row)("Number02" ) = edvPODetail.
dataView( edvPODetail. Row)("UnitCost" )
End If

Case Else
End Select
End Sub
'/////

I added a hidden textbox (txtEpiClcTtlCst) linked to PODetail.CalcTotalC ost
and then added this code to restore the price upon unwarranted app triggered
changes:

'////
Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object, ByVal
Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
'// ** Place Event Handling Code Here **
If len(txtEpiClcTtlCst .text) <> 0 then
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <> edvPODetail.
dataView( edvPODetail. Row)("Number02" ) Then
'messagebox. show("reset price to Freeze Unit Price value")
edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) = edvPODetail.
dataView( edvPODetail. Row)("Number02" )
End If
End If
End If
End Sub
'////

The darn shame of it is, the db looks like it was designed to enable
rollback of cost as their are numerous pre-change qty, pre-change cost,
etc., fields that look they were intended to store values prior to changes
made. Unfortunately, most don't get updated so I had to write the mess
above. Had they been working (404), it would have been much cleaner.

The ability of a buyer to set a checkbox to Lock a unit cost (instead of
allowing a re-price based on the current price list - every time a qty or
date changes) should be a standard option PO Entry option.

Rob
--- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:

From: Kunal Ganguly <kunal_vantage@ yahoo.com>
Subject: [Vantage] PO Entry form customizations
To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
Date: Thursday, May 8, 2008, 3:37 PM

I have been running into a number of problems while customizing the Purchase
Order Entry form.

For starters, the unit price for any particular line items resets to the
default value when ANY change is made to the form forcing the user to double
check every time. I have been trying to use beforeadapter, afteradapter,
afterfieldchange, and other variations/combinat ions to little success.
Essentially, we would like the unit price to not change automatically, it
should remain the same value throughout no matter what change is made
anywhere else. (BPMs failed to do anything useful to help with this)

We would like releases for any new line item to have a locked quantity.
While this is relatively simple to do with a afterfieldchange method, but
this tends to interfere with the above problem or vice-versa. The two do not
seem to co-exist very well.

For line items that fall into the "other" category, we would like to pick a
single GL account on the release form for all future line items. I added a
new search button and textboxes for the user to pick a GL account, but I
cannot seem to find an easy way to (a) make all "other" line items use that
GL account and/or (b) have all new line items use that GL account. Also, as
with the unit cost problem above, when ANY change is made to the line item,
the GL on the release form tends to reset to the same "misc" value.

Any suggestions and comments would be highly appreciated.

Thanks,
Kunal

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

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

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.
<http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ

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

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

__________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.
<http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ>
yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

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





[Non-text portions of this message have been removed]
Good Morning Everyone,



I have a meeting with Epicor on Monday. One of the topics that is bound
to come up is the level of support/response we receive when we call
technical support and other people they have on staff.



Does want to share their feels about Epicor? Do they respond when you
call? Are they helpful? If you call your CAM does he respond quickly?



Thanks !



Dale



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Kunal Ganguly
Sent: Friday, May 09, 2008 9:14 AM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] PO Entry form customizations



I did not have such an option. Are you sure it was not a customization
on your end?

Thanks,
Kunal

----- Original Message ----
From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Sent: Friday, May 9, 2008 9:05:10 AM
Subject: RE: [Vantage] PO Entry form customizations

There is a check box in ver. 8.03 on the line to lock unit Price that I
think does what you are doing in your custom code.

Steve

-----Original Message-----
From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
Sent: May 09, 2008 8:52 AM
To: vantage@yahoogroups .com
Subject: Re: [Vantage] PO Entry form customizations

Thanks a ton Rob! That did the trick as far as the values changing is
concerned. One issue down, 3 more to go :)

Thanks,
Kunal

----- Original Message ----
From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo. com>
yahoo.com>
To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
Sent: Thursday, May 8, 2008 3:41:25 PM
Subject: Re: [Vantage] PO Entry form customizations

We experienced the (unacceptable) auto price change upon any editing as
well.

I ended up adding a checkbox (PODetail.checkbox0 3) to the line tab w/
this
code to capture current line price and store as 'frozen' price (for
restore
after the app stupidly recalcs it) in PODetail.Number02:

'//////
Private Sub PODetail_AfterField Change(ByVal sender As object, ByVal
args As
DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
Event Handler Code
'
Select Case args.Column. ColumnName

Case "CheckBox03"
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
'messagebox. show("freeze unit price value = unit cost on checkbox true
select")
edvPODetail. dataView( edvPODetail. Row)("Number02" ) = edvPODetail.
dataView( edvPODetail. Row)("UnitCost" )
End If

Case Else
End Select
End Sub
'/////

I added a hidden textbox (txtEpiClcTtlCst) linked to PODetail.CalcTotalC
ost
and then added this code to restore the price upon unwarranted app
triggered
changes:

'////
Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object, ByVal
Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
'// ** Place Event Handling Code Here **
If len(txtEpiClcTtlCst .text) <> 0 then
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <> edvPODetail.
dataView( edvPODetail. Row)("Number02" ) Then
'messagebox. show("reset price to Freeze Unit Price value")
edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) = edvPODetail.
dataView( edvPODetail. Row)("Number02" )
End If
End If
End If
End Sub
'////

The darn shame of it is, the db looks like it was designed to enable
rollback of cost as their are numerous pre-change qty, pre-change cost,
etc., fields that look they were intended to store values prior to
changes
made. Unfortunately, most don't get updated so I had to write the mess
above. Had they been working (404), it would have been much cleaner.

The ability of a buyer to set a checkbox to Lock a unit cost (instead of
allowing a re-price based on the current price list - every time a qty
or
date changes) should be a standard option PO Entry option.

Rob
--- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:

From: Kunal Ganguly <kunal_vantage@ yahoo.com>
Subject: [Vantage] PO Entry form customizations
To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
Date: Thursday, May 8, 2008, 3:37 PM

I have been running into a number of problems while customizing the
Purchase
Order Entry form.

For starters, the unit price for any particular line items resets to the
default value when ANY change is made to the form forcing the user to
double
check every time. I have been trying to use beforeadapter, afteradapter,
afterfieldchange, and other variations/combinat ions to little success.
Essentially, we would like the unit price to not change automatically,
it
should remain the same value throughout no matter what change is made
anywhere else. (BPMs failed to do anything useful to help with this)

We would like releases for any new line item to have a locked quantity.
While this is relatively simple to do with a afterfieldchange method,
but
this tends to interfere with the above problem or vice-versa. The two do
not
seem to co-exist very well.

For line items that fall into the "other" category, we would like to
pick a
single GL account on the release form for all future line items. I added
a
new search button and textboxes for the user to pick a GL account, but I
cannot seem to find an easy way to (a) make all "other" line items use
that
GL account and/or (b) have all new line items use that GL account. Also,
as
with the unit cost problem above, when ANY change is made to the line
item,
the GL on the release form tends to reset to the same "misc" value.

Any suggestions and comments would be highly appreciated.

Thanks,
Kunal

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

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

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.
<http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ

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

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

__________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now.
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

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





[Non-text portions of this message have been removed]
Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec


Details:
Re-open Call




Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.


Event added by: Mike McWilliams(mmcwilliams@...)




Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...


Event added by: Mike McWilliams(mmcwilliams@...)




Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.



--- In vantage@yahoogroups.com, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups.com
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
Have you sent this to Joe Jasper?

________________________________
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Michael McWilliams
Sent: Friday, May 09, 2008 9:26 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Epicor Customer Support


Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec


Details:
Re-open Call




Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.

Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%40tbtube.com>)




Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...

Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%40tbtube.com>)




Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.



--- In vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [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]
Who is Joe?



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Robert Kula
Sent: Friday, May 09, 2008 9:29 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Re: Epicor Customer Support



Have you sent this to Joe Jasper?

________________________________
From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf Of Michael McWilliams
Sent: Friday, May 09, 2008 9:26 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Re: Epicor Customer Support

Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec

Details:
Re-open Call

Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.

Event added by: Mike McWilliams(mmcwilliams@...
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...

Event added by: Mike McWilliams(mmcwilliams@...
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.

--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [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]
Joe Jasper is in charge of all support

________________________________
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Dale R. Kalsow
Sent: Friday, May 09, 2008 9:30 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Re: Epicor Customer Support


Who is Joe?

From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf
Of Robert Kula
Sent: Friday, May 09, 2008 9:29 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Have you sent this to Joe Jasper?

________________________________
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com> ] On
Behalf Of Michael McWilliams
Sent: Friday, May 09, 2008 9:26 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Re: Epicor Customer Support

Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec

Details:
Re-open Call

Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.

Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...

Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.

--- In vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [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]





[Non-text portions of this message have been removed]
We had a conference call with some VPs over at Epicor they gave us
a bunch of bull about how they are changing there methods, bringing
on more staff, etc. I also Emailed our concerns, can't remember
where that got us though. Obviously nowhere. I do believe it was
Joe, who is the director of something or the other. Seems like they
have alot of upper management but no one who knows what is going on.

--- In vantage@yahoogroups.com, Robert Kula <bkula@...> wrote:
>
> Have you sent this to Joe Jasper?
>
> ________________________________
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On
Behalf Of Michael McWilliams
> Sent: Friday, May 09, 2008 9:26 AM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Re: Epicor Customer Support
>
>
> Here is a prime examle of a support request for a simple document.
> It took almost 3 months to get it. When a user has an issue that I
> cannot answer I let them know I will be putting a support call in.
> A gods honest response Is them lauging at me saying maybe you can
> get someone who you can understand this time. Then they come to a
> realization that they will not get a good answer if one at all.
> Epicor makes for the butt of alot of jokes around here. Maybe we
> were just spoiled by our previous Vendor who would solve about
> anything in a few minutes, including large issues in under 45
> minutes.
>
> Module:
> Customization
> Version:
> 8.03.403c
>
> Bug Number:
> Reference #:
>
> Summary:
> 4/23- Looking for documentation concerning Customization for
> Customer Connec
>
>
> Details:
> Re-open Call
>
>
>
>
> Added:
> 4/10/2008 7:02:05 AM
> By:
> WEB_USER
>
> Summary:
> ????????
>
> Can someone call me to let me know why I cannot get this it has
> been over 3 months.
>
> Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%
40tbtube.com>)
>
>
>
>
> Added:
> 3/25/2008 12:41:11 PM
> By:
> WEB_USER
>
> Summary:
> Hello anybody?
>
> Still waiting on this one...
>
> Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%
40tbtube.com>)
>
>
>
>
> Added:
> 1/30/2008 2:28:58 PM
> By:
> DMURPHY
>
> Summary:
> Looking for documentation concerning Customization for Customer
> Connect and Sale
>
> Looking for documentation concerning Customization for Customer
> Connect and Sales Connect.
>
>
>
> --- In vantage@yahoogroups.com<mailto:vantage%
40yahoogroups.com>, "Dale R. Kalsow" <dale.r.kalsow@>
> wrote:
> >
> > Good Morning Everyone,
> >
> >
> >
> > I have a meeting with Epicor on Monday. One of the topics that is
> bound
> > to come up is the level of support/response we receive when we
call
> > technical support and other people they have on staff.
> >
> >
> >
> > Does want to share their feels about Epicor? Do they respond when
> you
> > call? Are they helpful? If you call your CAM does he respond
> quickly?
> >
> >
> >
> > Thanks !
> >
> >
> >
> > Dale
> >
> >
> >
> > From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On
> Behalf
> > Of Kunal Ganguly
> > Sent: Friday, May 09, 2008 9:14 AM
> > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
> > Subject: Re: [Vantage] PO Entry form customizations
> >
> >
> >
> > I did not have such an option. Are you sure it was not a
> customization
> > on your end?
> >
> > Thanks,
> > Kunal
> >
> > ----- Original Message ----
> > From: vantage <vantage@ <mailto:vantage%40rmgfelm.com> >
> > To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
> > Sent: Friday, May 9, 2008 9:05:10 AM
> > Subject: RE: [Vantage] PO Entry form customizations
> >
> > There is a check box in ver. 8.03 on the line to lock unit Price
> that I
> > think does what you are doing in your custom code.
> >
> > Steve
> >
> > -----Original Message-----
> > From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> > Sent: May 09, 2008 8:52 AM
> > To: vantage@yahoogroups .com
> > Subject: Re: [Vantage] PO Entry form customizations
> >
> > Thanks a ton Rob! That did the trick as far as the values
changing
> is
> > concerned. One issue down, 3 more to go :)
> >
> > Thanks,
> > Kunal
> >
> > ----- Original Message ----
> > From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%
40yahoo.
> com>
> > yahoo.com>
> > To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> > Sent: Thursday, May 8, 2008 3:41:25 PM
> > Subject: Re: [Vantage] PO Entry form customizations
> >
> > We experienced the (unacceptable) auto price change upon any
> editing as
> > well.
> >
> > I ended up adding a checkbox (PODetail.checkbox0 3) to the line
> tab w/
> > this
> > code to capture current line price and store as 'frozen' price
(for
> > restore
> > after the app stupidly recalcs it) in PODetail.Number02:
> >
> > '//////
> > Private Sub PODetail_AfterField Change(ByVal sender As object,
> ByVal
> > args As
> > DataColumnChangeEve ntArgs) Handles PODetail_Column.
ColumnChanged
> > Event Handler Code
> > '
> > Select Case args.Column. ColumnName
> >
> > Case "CheckBox03"
> > If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
> Then
> > 'messagebox. show("freeze unit price value = unit cost on
checkbox
> true
> > select")
> > edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
> edvPODetail.
> > dataView( edvPODetail. Row)("UnitCost" )
> > End If
> >
> > Case Else
> > End Select
> > End Sub
> > '/////
> >
> > I added a hidden textbox (txtEpiClcTtlCst) linked to
> PODetail.CalcTotalC
> > ost
> > and then added this code to restore the price upon unwarranted
app
> > triggered
> > changes:
> >
> > '////
> > Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As
Object,
> ByVal
> > Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> > '// ** Place Event Handling Code Here **
> > If len(txtEpiClcTtlCst .text) <> 0 then
> > If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
> Then
> > If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
> edvPODetail.
> > dataView( edvPODetail. Row)("Number02" ) Then
> > 'messagebox. show("reset price to Freeze Unit Price value")
> > edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
> edvPODetail.
> > dataView( edvPODetail. Row)("Number02" )
> > End If
> > End If
> > End If
> > End Sub
> > '////
> >
> > The darn shame of it is, the db looks like it was designed to
> enable
> > rollback of cost as their are numerous pre-change qty, pre-change
> cost,
> > etc., fields that look they were intended to store values prior
to
> > changes
> > made. Unfortunately, most don't get updated so I had to write the
> mess
> > above. Had they been working (404), it would have been much
> cleaner.
> >
> > The ability of a buyer to set a checkbox to Lock a unit cost
> (instead of
> > allowing a re-price based on the current price list - every time
a
> qty
> > or
> > date changes) should be a standard option PO Entry option.
> >
> > Rob
> > --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com>
wrote:
> >
> > From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> > Subject: [Vantage] PO Entry form customizations
> > To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> > Date: Thursday, May 8, 2008, 3:37 PM
> >
> > I have been running into a number of problems while customizing
the
> > Purchase
> > Order Entry form.
> >
> > For starters, the unit price for any particular line items resets
> to the
> > default value when ANY change is made to the form forcing the
user
> to
> > double
> > check every time. I have been trying to use beforeadapter,
> afteradapter,
> > afterfieldchange, and other variations/combinat ions to little
> success.
> > Essentially, we would like the unit price to not change
> automatically,
> > it
> > should remain the same value throughout no matter what change is
> made
> > anywhere else. (BPMs failed to do anything useful to help with
> this)
> >
> > We would like releases for any new line item to have a locked
> quantity.
> > While this is relatively simple to do with a afterfieldchange
> method,
> > but
> > this tends to interfere with the above problem or vice-versa. The
> two do
> > not
> > seem to co-exist very well.
> >
> > For line items that fall into the "other" category, we would like
> to
> > pick a
> > single GL account on the release form for all future line items.
I
> added
> > a
> > new search button and textboxes for the user to pick a GL
account,
> but I
> > cannot seem to find an easy way to (a) make all "other" line
items
> use
> > that
> > GL account and/or (b) have all new line items use that GL
account.
> Also,
> > as
> > with the unit cost problem above, when ANY change is made to the
> line
> > item,
> > the GL on the release form tends to reset to the same "misc"
> value.
> >
> > Any suggestions and comments would be highly appreciated.
> >
> > Thanks,
> > Kunal
> >
> > ____________ _________ _________ _________ _________ _________ _
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> yahoo.com/
> > ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
> >
> > [Non-text portions of this message have been removed]
> >
> > ____________ _________ _________ _________ _________ _________ _
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> yahoo.com/
> > ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
> >
> > ____________ _________ _________ _________ _________ _________ _
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> > <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> > yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
> >
> > [Non-text portions of this message have been removed]
> >
> > [Non-text portions of this message have been removed]
> >
> > __________________________________________________________
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile. Try it now.
> > http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
> >
> > [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]
>
Do you have a phone # / email



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Robert Kula
Sent: Friday, May 09, 2008 9:34 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Re: Epicor Customer Support



Joe Jasper is in charge of all support

________________________________
From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf Of Dale R. Kalsow
Sent: Friday, May 09, 2008 9:30 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Who is Joe?

From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
On Behalf
Of Robert Kula
Sent: Friday, May 09, 2008 9:29 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Have you sent this to Joe Jasper?

________________________________
From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com> ]
On
Behalf Of Michael McWilliams
Sent: Friday, May 09, 2008 9:26 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Re: Epicor Customer Support

Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec

Details:
Re-open Call

Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.

Event added by: Mike McWilliams(mmcwilliams@...
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...

Event added by: Mike McWilliams(mmcwilliams@...
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.

--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [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]

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





[Non-text portions of this message have been removed]
Here's another:
Began in January, the question was "why does the automatic job close
function require a cost estimate on an operation that is marked as QUANTITY
ONLY??"
The correspondence demonstrates that the support people could not even
determine what the question was, let alone answer it!
I've been on Vantage since 1999. In those days it was a quick pick up the
phone, first name basis with the support techs, and an answer immediately or
surely by the end of the day. Since the release of 8.0 that support level
has dwindled to useless. And if the question starts with "How do I . . . "
Oh my goodness, you need our consulting people and by the way that is
billable!






Module:

Job Management

Version:

8.03.403d



Bug Number:


Reference #:




Summary:

ENH JM auto job closing/complete process does not work if operation has 0
prod s







Details:





<javascript:var%20MyWindow=window.open('https://epicweb.epicor.com/eportalne
t/AddEvent.aspx?CustomerView=yes&domainuserid=schmura&callid=6749B629939847C
89ECDAD51213763EC','AddEvent','toolbar=no,resizable=yes,scrollbars=yes,locat
ion=no,directories=no,status=yes,menubar=no,copyhistory=no,width=550,height=
300');MyWindow.focus();void%200;> Add New Event























Added:

4/17/2008 12:49:36 PM

By:

AZUSTIAK



Summary:

email string




Stan,
I received some more information on your questions.

The reason why the auto job close does not work when an operation has 0
estimated cost is because the calculation that is used in the auto job close
function to determine if the job can be closed uses the estimated hours. The
calculation ends up being a value divided by 0 (the estimate of 0).

I will put an enhancement in to change the way this works.

Thanks,
Amy


-----Original Message-----
From: Stan Chmura [mailto:schmura@...]
Sent: Monday, April 07, 2008 1:42 PM
To: Amy Zustiak
Subject: RE: Call 2911850MPS: JM Job estimates artificially inflating labor
costs

Hi Amy:

I understand that. I knew that from testing the function and how it works.
My questions remain:

A) If it is possible to have operations without cost estimates or
materials/subcontract without cost estimates, why are they required for this
function to work?

And

B) Is it possible to revise the logic so that these estimates are not
required?

Thanks

Stan











Added:

4/7/2008 12:09:52 PM

By:

AZUSTIAK



Summary:

email to Stan




Stan,
I reviewed the design documentation for Auto Job Closing and it is listed as
a limitation: "Jobs without estimated quantities and/or estimated cost on
material, operation or subcontract levels are not automatically completed or
closed"

Please let me know if this answers your question or if you have additional
questions.

Thank you,

Amy Zustiak
MSG Application Support Team Lead











Added:

4/7/2008 9:31:00 AM

By:

JMEISNER



Summary:

Outgoing E-mail




From: James Meisner
Sent: Monday, April 07, 2008 9:31 AM
To: 'schmura@...'
Subject: Call 2911850MPS Support Reply: JM Job estimates artificially
inflating labor costs

Please reference call # 2911850MPS if you have any additional questions on
this issue.

Sorry, I forgot to attach the screen shots.











Added:

4/7/2008 9:30:06 AM

By:

JMEISNER



Summary:

Outgoing E-mail




From: James Meisner
Sent: Monday, April 07, 2008 9:30 AM
To: 'schmura@...'
Subject: Call 2911850MPS Support Reply: JM Job estimates artificially
inflating labor costs

Please reference call # 2911850MPS if you have any additional questions on
this issue.

Stan, I tested this in 6.10.543 and it worked the same in that version, as
it did for me in 8.03.404a. I have attached some screen shots from my test
in version 6. Operation 10 was marked as backflush with an estimate of 1
piece per hour. Operation 20 was quantity only with an estimate of 1 piece
per hour. When I did a rollup in cost set entry it brought in the labor rate
from only the quantity only work center (op 20), and it took the labor and
burden rate from both work centers. If you are seeing something different in
version 6, please send me some screen shots showing this.











Added:

3/18/2008 9:10:07 AM

By:

JMEISNER



Summary:

Outgoing E-mail




From: James Meisner
Sent: Tuesday, March 18, 2008 9:10 AM
To: 'schmura@...'
Subject: Call 2911850MPS Support Reply: JM Job estimates artificially
inflating labor costs

Please reference call # 2911850MPS if you have any additional questions on
this issue.

Stan I wanted to let you know I am still working on this. I have been
running this by a few different people to make sure I know what the software
should be doing before I submit this to development. I will call you when I
have an update.











Added:

2/12/2008 4:08:03 PM

By:

JMEISNER



Summary:

Outgoing E-mail




From: James Meisner
Sent: Tuesday, February 12, 2008 4:08 PM
To: 'schmura@...'
Subject: Call 2911850MPS Support Reply: JM Need help setting up auto job
completion

Please reference call # 2911850MPS if you have any additional questions on
this issue.

Stan, I have tested this a few times, and when I had the standards setup on
the final operation my standard costs were not artificially inflated. I
checked them after I did the auto complete, and again after it was auto
closed and the costs stayed the same. Test this on a backup system at your
end and if you get something different can you sent me some screen shots
show the inflation of the standard costs from those estimates.











Added:

1/24/2008 10:22:30 AM

By:

WEB_USER



Summary:

Hierarchy




I understand the hierarchy for this process to be Final Operation Complete;
Final operation labor/cost estimate; and lastly the parameters set in the
Auto Job Complete/Close Code. Is that correct?

Also, I tested this with the final operation marked as Quantity Only as
opposed to Time/Quantity. The Job Complete Exception report shows that the
process is still looking for a cost estimate for the final operation. Since
the final op is for quantity only, no time (estimate or actual) is applied
to that op; therefore no cost estimate. It seems the process is creating an
exception preventing job completion or closing for a requirement that does
not exist. Shouldn't the process ignore the need for cost estimate when the
op is marked as quantity only?



Event added by: Stan Chmura(schmura@...)











Added:

1/24/2008 8:35:23 AM

By:

JMEISNER



Summary:

*NEW JM Need help setting up auto job completion




Problem Description:
Stan is looking for some information on how to setup the auto job completion
process. They are not live on 8.03 yet, they are live with 6.10.531











_____

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Michael McWilliams
Sent: Friday, May 09, 2008 10:26 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Epicor Customer Support

Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec


Details:
Re-open Call




Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.

Event added by: Mike McWilliams(mmcwilliams@
<mailto:mmcwilliams%40tbtube.com> tbtube.com)




Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...

Event added by: Mike McWilliams(mmcwilliams@
<mailto:mmcwilliams%40tbtube.com> tbtube.com)




Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.



--- In vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com, "Dale R.
Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
[mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com] On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
<mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.
<http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ>
yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [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]
Honestly, I have to say that I have seen a vast improvement of their
support staff and follow-ups. I think their support improves as you
become current on your Vantage edition. When we were 8.00, we were told
on every call that it was fixed in 8.03. Some of it was, but now that
we are on 8.03, they actually work to resolve our issues.



Regards,





Andrew Best

Kice Industries, Inc.

P(316)744-7151

F(316)295-2412



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Dale R. Kalsow
Sent: Friday, May 09, 2008 9:17 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Epicor Customer Support



Good Morning Everyone,

I have a meeting with Epicor on Monday. One of the topics that is bound
to come up is the level of support/response we receive when we call
technical support and other people they have on staff.

Does want to share their feels about Epicor? Do they respond when you
call? Are they helpful? If you call your CAM does he respond quickly?

Thanks !

Dale

From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf
Of Kunal Ganguly
Sent: Friday, May 09, 2008 9:14 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: Re: [Vantage] PO Entry form customizations

I did not have such an option. Are you sure it was not a customization
on your end?

Thanks,
Kunal

----- Original Message ----
From: vantage <vantage@... <mailto:vantage%40rmgfelm.com>
<mailto:vantage%40rmgfelm.com> >
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
Sent: Friday, May 9, 2008 9:05:10 AM
Subject: RE: [Vantage] PO Entry form customizations

There is a check box in ver. 8.03 on the line to lock unit Price that I
think does what you are doing in your custom code.

Steve

-----Original Message-----
From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
Sent: May 09, 2008 8:52 AM
To: vantage@yahoogroups .com
Subject: Re: [Vantage] PO Entry form customizations

Thanks a ton Rob! That did the trick as far as the values changing is
concerned. One issue down, 3 more to go :)

Thanks,
Kunal

----- Original Message ----
From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo. com>
yahoo.com>
To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
Sent: Thursday, May 8, 2008 3:41:25 PM
Subject: Re: [Vantage] PO Entry form customizations

We experienced the (unacceptable) auto price change upon any editing as
well.

I ended up adding a checkbox (PODetail.checkbox0 3) to the line tab w/
this
code to capture current line price and store as 'frozen' price (for
restore
after the app stupidly recalcs it) in PODetail.Number02:

'//////
Private Sub PODetail_AfterField Change(ByVal sender As object, ByVal
args As
DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
Event Handler Code
'
Select Case args.Column. ColumnName

Case "CheckBox03"
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
'messagebox. show("freeze unit price value = unit cost on checkbox true
select")
edvPODetail. dataView( edvPODetail. Row)("Number02" ) = edvPODetail.
dataView( edvPODetail. Row)("UnitCost" )
End If

Case Else
End Select
End Sub
'/////

I added a hidden textbox (txtEpiClcTtlCst) linked to PODetail.CalcTotalC
ost
and then added this code to restore the price upon unwarranted app
triggered
changes:

'////
Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object, ByVal
Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
'// ** Place Event Handling Code Here **
If len(txtEpiClcTtlCst .text) <> 0 then
If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True Then
If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <> edvPODetail.
dataView( edvPODetail. Row)("Number02" ) Then
'messagebox. show("reset price to Freeze Unit Price value")
edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) = edvPODetail.
dataView( edvPODetail. Row)("Number02" )
End If
End If
End If
End Sub
'////

The darn shame of it is, the db looks like it was designed to enable
rollback of cost as their are numerous pre-change qty, pre-change cost,
etc., fields that look they were intended to store values prior to
changes
made. Unfortunately, most don't get updated so I had to write the mess
above. Had they been working (404), it would have been much cleaner.

The ability of a buyer to set a checkbox to Lock a unit cost (instead of
allowing a re-price based on the current price list - every time a qty
or
date changes) should be a standard option PO Entry option.

Rob
--- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:

From: Kunal Ganguly <kunal_vantage@ yahoo.com>
Subject: [Vantage] PO Entry form customizations
To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
Date: Thursday, May 8, 2008, 3:37 PM

I have been running into a number of problems while customizing the
Purchase
Order Entry form.

For starters, the unit price for any particular line items resets to the
default value when ANY change is made to the form forcing the user to
double
check every time. I have been trying to use beforeadapter, afteradapter,
afterfieldchange, and other variations/combinat ions to little success.
Essentially, we would like the unit price to not change automatically,
it
should remain the same value throughout no matter what change is made
anywhere else. (BPMs failed to do anything useful to help with this)

We would like releases for any new line item to have a locked quantity.
While this is relatively simple to do with a afterfieldchange method,
but
this tends to interfere with the above problem or vice-versa. The two do
not
seem to co-exist very well.

For line items that fall into the "other" category, we would like to
pick a
single GL account on the release form for all future line items. I added
a
new search button and textboxes for the user to pick a GL account, but I
cannot seem to find an easy way to (a) make all "other" line items use
that
GL account and/or (b) have all new line items use that GL account. Also,
as
with the unit cost problem above, when ANY change is made to the line
item,
the GL on the release form tends to reset to the same "misc" value.

Any suggestions and comments would be highly appreciated.

Thanks,
Kunal

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

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

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile. yahoo.com/
;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ

____________ _________ _________ _________ _________ _________ _
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now. http://mobile.
<http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ

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

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

__________________________________________________________
Be a better friend, newshound, and
know-it-all with Yahoo! Mobile. Try it now.
http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ

[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]
mmm- I have issues even getting my CAM to return my calls. We are
currently discussing how we fell their sales person over sold Epicor and
it does not do everything we expected it to do. Does any of this sound
familiar to anyone else?



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Stan Chmura
Sent: Friday, May 09, 2008 9:38 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Re: Epicor Customer Support



Here's another:
Began in January, the question was "why does the automatic job close
function require a cost estimate on an operation that is marked as
QUANTITY
ONLY??"
The correspondence demonstrates that the support people could not even
determine what the question was, let alone answer it!
I've been on Vantage since 1999. In those days it was a quick pick up
the
phone, first name basis with the support techs, and an answer
immediately or
surely by the end of the day. Since the release of 8.0 that support
level
has dwindled to useless. And if the question starts with "How do I . . .
"
Oh my goodness, you need our consulting people and by the way that is
billable!




Module:

Job Management

Version:

8.03.403d

Bug Number:


Reference #:


Summary:

ENH JM auto job closing/complete process does not work if operation has
0
prod s

Details:




<javascript:var%20MyWindow=window.open('https://epicweb.epicor.com/eport
alne
t/AddEvent.aspx?CustomerView=yes&domainuserid=schmura&callid=6749B629939
847C
89ECDAD51213763EC','AddEvent','toolbar=no,resizable=yes,scrollbars=yes,l
ocat
ion=no,directories=no,status=yes,menubar=no,copyhistory=no,width=550,hei
ght=
300');MyWindow.focus();void%200;> Add New Event


Added:

4/17/2008 12:49:36 PM

By:

AZUSTIAK

Summary:

email string

Stan,
I received some more information on your questions.

The reason why the auto job close does not work when an operation has 0
estimated cost is because the calculation that is used in the auto job
close
function to determine if the job can be closed uses the estimated hours.
The
calculation ends up being a value divided by 0 (the estimate of 0).

I will put an enhancement in to change the way this works.

Thanks,
Amy

-----Original Message-----
From: Stan Chmura [mailto:schmura@...
<mailto:schmura%40fiberoptix.com> ]
Sent: Monday, April 07, 2008 1:42 PM
To: Amy Zustiak
Subject: RE: Call 2911850MPS: JM Job estimates artificially inflating
labor
costs

Hi Amy:

I understand that. I knew that from testing the function and how it
works.
My questions remain:

A) If it is possible to have operations without cost estimates or
materials/subcontract without cost estimates, why are they required for
this
function to work?

And

B) Is it possible to revise the logic so that these estimates are not
required?

Thanks

Stan

Added:

4/7/2008 12:09:52 PM

By:

AZUSTIAK

Summary:

email to Stan

Stan,
I reviewed the design documentation for Auto Job Closing and it is
listed as
a limitation: "Jobs without estimated quantities and/or estimated cost
on
material, operation or subcontract levels are not automatically
completed or
closed"

Please let me know if this answers your question or if you have
additional
questions.

Thank you,

Amy Zustiak
MSG Application Support Team Lead

Added:

4/7/2008 9:31:00 AM

By:

JMEISNER

Summary:

Outgoing E-mail

From: James Meisner
Sent: Monday, April 07, 2008 9:31 AM
To: 'schmura@... <mailto:%27schmura%40fiberoptix.com> '
Subject: Call 2911850MPS Support Reply: JM Job estimates artificially
inflating labor costs

Please reference call # 2911850MPS if you have any additional questions
on
this issue.

Sorry, I forgot to attach the screen shots.

Added:

4/7/2008 9:30:06 AM

By:

JMEISNER

Summary:

Outgoing E-mail

From: James Meisner
Sent: Monday, April 07, 2008 9:30 AM
To: 'schmura@... <mailto:%27schmura%40fiberoptix.com> '
Subject: Call 2911850MPS Support Reply: JM Job estimates artificially
inflating labor costs

Please reference call # 2911850MPS if you have any additional questions
on
this issue.

Stan, I tested this in 6.10.543 and it worked the same in that version,
as
it did for me in 8.03.404a. I have attached some screen shots from my
test
in version 6. Operation 10 was marked as backflush with an estimate of 1
piece per hour. Operation 20 was quantity only with an estimate of 1
piece
per hour. When I did a rollup in cost set entry it brought in the labor
rate
from only the quantity only work center (op 20), and it took the labor
and
burden rate from both work centers. If you are seeing something
different in
version 6, please send me some screen shots showing this.

Added:

3/18/2008 9:10:07 AM

By:

JMEISNER

Summary:

Outgoing E-mail

From: James Meisner
Sent: Tuesday, March 18, 2008 9:10 AM
To: 'schmura@... <mailto:%27schmura%40fiberoptix.com> '
Subject: Call 2911850MPS Support Reply: JM Job estimates artificially
inflating labor costs

Please reference call # 2911850MPS if you have any additional questions
on
this issue.

Stan I wanted to let you know I am still working on this. I have been
running this by a few different people to make sure I know what the
software
should be doing before I submit this to development. I will call you
when I
have an update.

Added:

2/12/2008 4:08:03 PM

By:

JMEISNER

Summary:

Outgoing E-mail

From: James Meisner
Sent: Tuesday, February 12, 2008 4:08 PM
To: 'schmura@... <mailto:%27schmura%40fiberoptix.com> '
Subject: Call 2911850MPS Support Reply: JM Need help setting up auto job
completion

Please reference call # 2911850MPS if you have any additional questions
on
this issue.

Stan, I have tested this a few times, and when I had the standards setup
on
the final operation my standard costs were not artificially inflated. I
checked them after I did the auto complete, and again after it was auto
closed and the costs stayed the same. Test this on a backup system at
your
end and if you get something different can you sent me some screen shots
show the inflation of the standard costs from those estimates.

Added:

1/24/2008 10:22:30 AM

By:

WEB_USER

Summary:

Hierarchy

I understand the hierarchy for this process to be Final Operation
Complete;
Final operation labor/cost estimate; and lastly the parameters set in
the
Auto Job Complete/Close Code. Is that correct?

Also, I tested this with the final operation marked as Quantity Only as
opposed to Time/Quantity. The Job Complete Exception report shows that
the
process is still looking for a cost estimate for the final operation.
Since
the final op is for quantity only, no time (estimate or actual) is
applied
to that op; therefore no cost estimate. It seems the process is creating
an
exception preventing job completion or closing for a requirement that
does
not exist. Shouldn't the process ignore the need for cost estimate when
the
op is marked as quantity only?

Event added by: Stan Chmura(schmura@...
<mailto:schmura%40fiberoptix.com> )

Added:

1/24/2008 8:35:23 AM

By:

JMEISNER

Summary:

*NEW JM Need help setting up auto job completion

Problem Description:
Stan is looking for some information on how to setup the auto job
completion
process. They are not live on 8.03 yet, they are live with 6.10.531



_____

From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf Of
Michael McWilliams
Sent: Friday, May 09, 2008 10:26 AM
To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Re: Epicor Customer Support

Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec

Details:
Re-open Call

Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.

Event added by: Mike McWilliams(mmcwilliams@
<mailto:mmcwilliams%40tbtube.com> tbtube.com)

Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...

Event added by: Mike McWilliams(mmcwilliams@
<mailto:mmcwilliams%40tbtube.com> tbtube.com)

Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.

--- In vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com,
"Dale R.
Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
[mailto:vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com] On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
<mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.
<http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ>
yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [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]
OK this is the last time I reply on this. There is just too much to
vent about.

Very familiar. We went through many meetings and evaluations with
Epicor. We felt it was a very thourough selection process. The
President of our company feels exactly the same way about the sales
process. He sat in on some meetings where they quotes specific
functionality that is obviously not there. He has requested many
times for a meeting with the sales person to either debunk our
claims or explain where it went wrong. Now we are on our 4th CAM
don't even know there name, 6 months later and nothing. The sales
reps were Chad Juenke and Sam Montana not even sure if they work for
Epicor anymore. If you see them Beware.

--- In vantage@yahoogroups.com, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> mmm- I have issues even getting my CAM to return my calls. We are
> currently discussing how we fell their sales person over sold
Epicor and
> it does not do everything we expected it to do. Does any of this
sound
> familiar to anyone else?
>
>
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On
Behalf
> Of Stan Chmura
> Sent: Friday, May 09, 2008 9:38 AM
> To: vantage@yahoogroups.com
> Subject: RE: [Vantage] Re: Epicor Customer Support
>
>
>
> Here's another:
> Began in January, the question was "why does the automatic job
close
> function require a cost estimate on an operation that is marked as
> QUANTITY
> ONLY??"
> The correspondence demonstrates that the support people could not
even
> determine what the question was, let alone answer it!
> I've been on Vantage since 1999. In those days it was a quick pick
up
> the
> phone, first name basis with the support techs, and an answer
> immediately or
> surely by the end of the day. Since the release of 8.0 that support
> level
> has dwindled to useless. And if the question starts with "How do
I . . .
> "
> Oh my goodness, you need our consulting people and by the way that
is
> billable!
>
>
>
>
> Module:
>
> Job Management
>
> Version:
>
> 8.03.403d
>
> Bug Number:
>
>
> Reference #:
>
>
> Summary:
>
> ENH JM auto job closing/complete process does not work if
operation has
> 0
> prod s
>
> Details:
>
>
>
>
> <javascript:var%20MyWindow=window.open
('https://epicweb.epicor.com/eport
> alne
> t/AddEvent.aspx?
CustomerView=yes&domainuserid=schmura&callid=6749B629939
> 847C
>
89ECDAD51213763EC','AddEvent','toolbar=no,resizable=yes,scrollbars=ye
s,l
> ocat
>
ion=no,directories=no,status=yes,menubar=no,copyhistory=no,width=550,
hei
> ght=
> 300');MyWindow.focus();void%200;> Add New Event
>
>
> Added:
>
> 4/17/2008 12:49:36 PM
>
> By:
>
> AZUSTIAK
>
> Summary:
>
> email string
>
> Stan,
> I received some more information on your questions.
>
> The reason why the auto job close does not work when an operation
has 0
> estimated cost is because the calculation that is used in the auto
job
> close
> function to determine if the job can be closed uses the estimated
hours.
> The
> calculation ends up being a value divided by 0 (the estimate of 0).
>
> I will put an enhancement in to change the way this works.
>
> Thanks,
> Amy
>
> -----Original Message-----
> From: Stan Chmura [mailto:schmura@...
> <mailto:schmura%40fiberoptix.com> ]
> Sent: Monday, April 07, 2008 1:42 PM
> To: Amy Zustiak
> Subject: RE: Call 2911850MPS: JM Job estimates artificially
inflating
> labor
> costs
>
> Hi Amy:
>
> I understand that. I knew that from testing the function and how it
> works.
> My questions remain:
>
> A) If it is possible to have operations without cost estimates or
> materials/subcontract without cost estimates, why are they
required for
> this
> function to work?
>
> And
>
> B) Is it possible to revise the logic so that these estimates are
not
> required?
>
> Thanks
>
> Stan
>
> Added:
>
> 4/7/2008 12:09:52 PM
>
> By:
>
> AZUSTIAK
>
> Summary:
>
> email to Stan
>
> Stan,
> I reviewed the design documentation for Auto Job Closing and it is
> listed as
> a limitation: "Jobs without estimated quantities and/or estimated
cost
> on
> material, operation or subcontract levels are not automatically
> completed or
> closed"
>
> Please let me know if this answers your question or if you have
> additional
> questions.
>
> Thank you,
>
> Amy Zustiak
> MSG Application Support Team Lead
>
> Added:
>
> 4/7/2008 9:31:00 AM
>
> By:
>
> JMEISNER
>
> Summary:
>
> Outgoing E-mail
>
> From: James Meisner
> Sent: Monday, April 07, 2008 9:31 AM
> To: 'schmura@... <mailto:%27schmura%40fiberoptix.com> '
> Subject: Call 2911850MPS Support Reply: JM Job estimates
artificially
> inflating labor costs
>
> Please reference call # 2911850MPS if you have any additional
questions
> on
> this issue.
>
> Sorry, I forgot to attach the screen shots.
>
> Added:
>
> 4/7/2008 9:30:06 AM
>
> By:
>
> JMEISNER
>
> Summary:
>
> Outgoing E-mail
>
> From: James Meisner
> Sent: Monday, April 07, 2008 9:30 AM
> To: 'schmura@... <mailto:%27schmura%40fiberoptix.com> '
> Subject: Call 2911850MPS Support Reply: JM Job estimates
artificially
> inflating labor costs
>
> Please reference call # 2911850MPS if you have any additional
questions
> on
> this issue.
>
> Stan, I tested this in 6.10.543 and it worked the same in that
version,
> as
> it did for me in 8.03.404a. I have attached some screen shots from
my
> test
> in version 6. Operation 10 was marked as backflush with an
estimate of 1
> piece per hour. Operation 20 was quantity only with an estimate of
1
> piece
> per hour. When I did a rollup in cost set entry it brought in the
labor
> rate
> from only the quantity only work center (op 20), and it took the
labor
> and
> burden rate from both work centers. If you are seeing something
> different in
> version 6, please send me some screen shots showing this.
>
> Added:
>
> 3/18/2008 9:10:07 AM
>
> By:
>
> JMEISNER
>
> Summary:
>
> Outgoing E-mail
>
> From: James Meisner
> Sent: Tuesday, March 18, 2008 9:10 AM
> To: 'schmura@... <mailto:%27schmura%40fiberoptix.com> '
> Subject: Call 2911850MPS Support Reply: JM Job estimates
artificially
> inflating labor costs
>
> Please reference call # 2911850MPS if you have any additional
questions
> on
> this issue.
>
> Stan I wanted to let you know I am still working on this. I have
been
> running this by a few different people to make sure I know what the
> software
> should be doing before I submit this to development. I will call
you
> when I
> have an update.
>
> Added:
>
> 2/12/2008 4:08:03 PM
>
> By:
>
> JMEISNER
>
> Summary:
>
> Outgoing E-mail
>
> From: James Meisner
> Sent: Tuesday, February 12, 2008 4:08 PM
> To: 'schmura@... <mailto:%27schmura%40fiberoptix.com> '
> Subject: Call 2911850MPS Support Reply: JM Need help setting up
auto job
> completion
>
> Please reference call # 2911850MPS if you have any additional
questions
> on
> this issue.
>
> Stan, I have tested this a few times, and when I had the standards
setup
> on
> the final operation my standard costs were not artificially
inflated. I
> checked them after I did the auto complete, and again after it was
auto
> closed and the costs stayed the same. Test this on a backup system
at
> your
> end and if you get something different can you sent me some screen
shots
> show the inflation of the standard costs from those estimates.
>
> Added:
>
> 1/24/2008 10:22:30 AM
>
> By:
>
> WEB_USER
>
> Summary:
>
> Hierarchy
>
> I understand the hierarchy for this process to be Final Operation
> Complete;
> Final operation labor/cost estimate; and lastly the parameters set
in
> the
> Auto Job Complete/Close Code. Is that correct?
>
> Also, I tested this with the final operation marked as Quantity
Only as
> opposed to Time/Quantity. The Job Complete Exception report shows
that
> the
> process is still looking for a cost estimate for the final
operation.
> Since
> the final op is for quantity only, no time (estimate or actual) is
> applied
> to that op; therefore no cost estimate. It seems the process is
creating
> an
> exception preventing job completion or closing for a requirement
that
> does
> not exist. Shouldn't the process ignore the need for cost estimate
when
> the
> op is marked as quantity only?
>
> Event added by: Stan Chmura(schmura@...
> <mailto:schmura%40fiberoptix.com> )
>
> Added:
>
> 1/24/2008 8:35:23 AM
>
> By:
>
> JMEISNER
>
> Summary:
>
> *NEW JM Need help setting up auto job completion
>
> Problem Description:
> Stan is looking for some information on how to setup the auto job
> completion
> process. They are not live on 8.03 yet, they are live with 6.10.531
>
>
>
> _____
>
> From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> [mailto:vantage@yahoogroups.com <mailto:vantage%
40yahoogroups.com> ] On
> Behalf Of
> Michael McWilliams
> Sent: Friday, May 09, 2008 10:26 AM
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> Subject: [Vantage] Re: Epicor Customer Support
>
> Here is a prime examle of a support request for a simple document.
> It took almost 3 months to get it. When a user has an issue that I
> cannot answer I let them know I will be putting a support call in.
> A gods honest response Is them lauging at me saying maybe you can
> get someone who you can understand this time. Then they come to a
> realization that they will not get a good answer if one at all.
> Epicor makes for the butt of alot of jokes around here. Maybe we
> were just spoiled by our previous Vendor who would solve about
> anything in a few minutes, including large issues in under 45
> minutes.
>
> Module:
> Customization
> Version:
> 8.03.403c
>
> Bug Number:
> Reference #:
>
> Summary:
> 4/23- Looking for documentation concerning Customization for
> Customer Connec
>
> Details:
> Re-open Call
>
> Added:
> 4/10/2008 7:02:05 AM
> By:
> WEB_USER
>
> Summary:
> ????????
>
> Can someone call me to let me know why I cannot get this it has
> been over 3 months.
>
> Event added by: Mike McWilliams(mmcwilliams@
> <mailto:mmcwilliams%40tbtube.com> tbtube.com)
>
> Added:
> 3/25/2008 12:41:11 PM
> By:
> WEB_USER
>
> Summary:
> Hello anybody?
>
> Still waiting on this one...
>
> Event added by: Mike McWilliams(mmcwilliams@
> <mailto:mmcwilliams%40tbtube.com> tbtube.com)
>
> Added:
> 1/30/2008 2:28:58 PM
> By:
> DMURPHY
>
> Summary:
> Looking for documentation concerning Customization for Customer
> Connect and Sale
>
> Looking for documentation concerning Customization for Customer
> Connect and Sales Connect.
>
> --- In vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com,
> "Dale R.
> Kalsow" <dale.r.kalsow@>
> wrote:
> >
> > Good Morning Everyone,
> >
> >
> >
> > I have a meeting with Epicor on Monday. One of the topics that
is
> bound
> > to come up is the level of support/response we receive when we
call
> > technical support and other people they have on staff.
> >
> >
> >
> > Does want to share their feels about Epicor? Do they respond
when
> you
> > call? Are they helpful? If you call your CAM does he respond
> quickly?
> >
> >
> >
> > Thanks !
> >
> >
> >
> > Dale
> >
> >
> >
> > From: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
> [mailto:vantage@yahoogroups <mailto:vantage%
40yahoogroups.com> .com] On
> Behalf
> > Of Kunal Ganguly
> > Sent: Friday, May 09, 2008 9:14 AM
> > To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
> > Subject: Re: [Vantage] PO Entry form customizations
> >
> >
> >
> > I did not have such an option. Are you sure it was not a
> customization
> > on your end?
> >
> > Thanks,
> > Kunal
> >
> > ----- Original Message ----
> > From: vantage <vantage@ <mailto:vantage%40rmgfelm.com> >
> > To: vantage@yahoogroups <mailto:vantage%40yahoogroups.com> .com
> <mailto:vantage%40yahoogroups.com>
> > Sent: Friday, May 9, 2008 9:05:10 AM
> > Subject: RE: [Vantage] PO Entry form customizations
> >
> > There is a check box in ver. 8.03 on the line to lock unit Price
> that I
> > think does what you are doing in your custom code.
> >
> > Steve
> >
> > -----Original Message-----
> > From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> > Sent: May 09, 2008 8:52 AM
> > To: vantage@yahoogroups .com
> > Subject: Re: [Vantage] PO Entry form customizations
> >
> > Thanks a ton Rob! That did the trick as far as the values
changing
> is
> > concerned. One issue down, 3 more to go :)
> >
> > Thanks,
> > Kunal
> >
> > ----- Original Message ----
> > From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%
40yahoo.
> com>
> > yahoo.com>
> > To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> > Sent: Thursday, May 8, 2008 3:41:25 PM
> > Subject: Re: [Vantage] PO Entry form customizations
> >
> > We experienced the (unacceptable) auto price change upon any
> editing as
> > well.
> >
> > I ended up adding a checkbox (PODetail.checkbox0 3) to the line
> tab w/
> > this
> > code to capture current line price and store as 'frozen' price
(for
> > restore
> > after the app stupidly recalcs it) in PODetail.Number02:
> >
> > '//////
> > Private Sub PODetail_AfterField Change(ByVal sender As object,
> ByVal
> > args As
> > DataColumnChangeEve ntArgs) Handles PODetail_Column.
ColumnChanged
> > Event Handler Code
> > '
> > Select Case args.Column. ColumnName
> >
> > Case "CheckBox03"
> > If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") =
True
> Then
> > 'messagebox. show("freeze unit price value = unit cost on
checkbox
> true
> > select")
> > edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
> edvPODetail.
> > dataView( edvPODetail. Row)("UnitCost" )
> > End If
> >
> > Case Else
> > End Select
> > End Sub
> > '/////
> >
> > I added a hidden textbox (txtEpiClcTtlCst) linked to
> PODetail.CalcTotalC
> > ost
> > and then added this code to restore the price upon unwarranted
app
> > triggered
> > changes:
> >
> > '////
> > Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As
Object,
> ByVal
> > Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> > '// ** Place Event Handling Code Here **
> > If len(txtEpiClcTtlCst .text) <> 0 then
> > If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") =
True
> Then
> > If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
> edvPODetail.
> > dataView( edvPODetail. Row)("Number02" ) Then
> > 'messagebox. show("reset price to Freeze Unit Price value")
> > edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
> edvPODetail.
> > dataView( edvPODetail. Row)("Number02" )
> > End If
> > End If
> > End If
> > End Sub
> > '////
> >
> > The darn shame of it is, the db looks like it was designed to
> enable
> > rollback of cost as their are numerous pre-change qty, pre-
change
> cost,
> > etc., fields that look they were intended to store values prior
to
> > changes
> > made. Unfortunately, most don't get updated so I had to write
the
> mess
> > above. Had they been working (404), it would have been much
> cleaner.
> >
> > The ability of a buyer to set a checkbox to Lock a unit cost
> (instead of
> > allowing a re-price based on the current price list - every time
a
> qty
> > or
> > date changes) should be a standard option PO Entry option.
> >
> > Rob
> > --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com>
wrote:
> >
> > From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> > Subject: [Vantage] PO Entry form customizations
> > To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> > Date: Thursday, May 8, 2008, 3:37 PM
> >
> > I have been running into a number of problems while customizing
the
> > Purchase
> > Order Entry form.
> >
> > For starters, the unit price for any particular line items
resets
> to the
> > default value when ANY change is made to the form forcing the
user
> to
> > double
> > check every time. I have been trying to use beforeadapter,
> afteradapter,
> > afterfieldchange, and other variations/combinat ions to little
> success.
> > Essentially, we would like the unit price to not change
> automatically,
> > it
> > should remain the same value throughout no matter what change is
> made
> > anywhere else. (BPMs failed to do anything useful to help with
> this)
> >
> > We would like releases for any new line item to have a locked
> quantity.
> > While this is relatively simple to do with a afterfieldchange
> method,
> > but
> > this tends to interfere with the above problem or vice-versa.
The
> two do
> > not
> > seem to co-exist very well.
> >
> > For line items that fall into the "other" category, we would
like
> to
> > pick a
> > single GL account on the release form for all future line items.
I
> added
> > a
> > new search button and textboxes for the user to pick a GL
account,
> but I
> > cannot seem to find an easy way to (a) make all "other" line
items
> use
> > that
> > GL account and/or (b) have all new line items use that GL
account.
> Also,
> > as
> > with the unit cost problem above, when ANY change is made to the
> line
> > item,
> > the GL on the release form tends to reset to the same "misc"
> value.
> >
> > Any suggestions and comments would be highly appreciated.
> >
> > Thanks,
> > Kunal
> >
> > ____________ _________ _________ _________ _________ _________ _
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> yahoo.com/
> > ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
> >
> > [Non-text portions of this message have been removed]
> >
> > ____________ _________ _________ _________ _________ _________ _
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> yahoo.com/
> > ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
> >
> > ____________ _________ _________ _________ _________ _________ _
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> > <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> > yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
> >
> > [Non-text portions of this message have been removed]
> >
> > [Non-text portions of this message have been removed]
> >
> > __________________________________________________________
> > Be a better friend, newshound, and
> > know-it-all with Yahoo! Mobile. Try it now.
> > http://mobile.
> <http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ>
> yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
> >
> > [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]
>
bkula@...

________________________________
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Dale R. Kalsow
Sent: Friday, May 09, 2008 9:33 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Re: Epicor Customer Support


Do you have a phone # / email

From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf
Of Robert Kula
Sent: Friday, May 09, 2008 9:34 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Joe Jasper is in charge of all support

________________________________
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com> ] On
Behalf Of Dale R. Kalsow
Sent: Friday, May 09, 2008 9:30 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Who is Joe?

From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
On Behalf
Of Robert Kula
Sent: Friday, May 09, 2008 9:29 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Have you sent this to Joe Jasper?

________________________________
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com> ]
On
Behalf Of Michael McWilliams
Sent: Friday, May 09, 2008 9:26 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Re: Epicor Customer Support

Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec

Details:
Re-open Call

Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.

Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...

Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.

--- In vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [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]

[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]
jjasper@...<mailto:jjasper@...>

Although given the silent monitoring of this group that is done by Epicor (and for every possible other place people comment on Epicor) you should not be at all surprised if you receive a call from someone who works for Joe. They are far more proactive about public criticism than solving issues - or so it seems.

Actually my experience has been fairly good with support although it has sometimes taken a few calls or emails to get to "the right person" (or someone who speaks English). This may change as we move away from the relatively stable 6.1 version. They put a lot of effort into addressing issues in 8.03.4xx "from the ground up" so prior 8.x versions will probably get, as indicated in another post, the "fixed in 8.03.4xx" response.

-Todd C.

________________________________
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Dale R. Kalsow
Sent: Friday, May 09, 2008 9:33 AM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Re: Epicor Customer Support


Do you have a phone # / email

From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf
Of Robert Kula
Sent: Friday, May 09, 2008 9:34 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Joe Jasper is in charge of all support

________________________________
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com> ] On
Behalf Of Dale R. Kalsow
Sent: Friday, May 09, 2008 9:30 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Who is Joe?

From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
On Behalf
Of Robert Kula
Sent: Friday, May 09, 2008 9:29 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
Subject: RE: [Vantage] Re: Epicor Customer Support

Have you sent this to Joe Jasper?

________________________________
From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com> ]
On
Behalf Of Michael McWilliams
Sent: Friday, May 09, 2008 9:26 AM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Re: Epicor Customer Support

Here is a prime examle of a support request for a simple document.
It took almost 3 months to get it. When a user has an issue that I
cannot answer I let them know I will be putting a support call in.
A gods honest response Is them lauging at me saying maybe you can
get someone who you can understand this time. Then they come to a
realization that they will not get a good answer if one at all.
Epicor makes for the butt of alot of jokes around here. Maybe we
were just spoiled by our previous Vendor who would solve about
anything in a few minutes, including large issues in under 45
minutes.

Module:
Customization
Version:
8.03.403c

Bug Number:
Reference #:

Summary:
4/23- Looking for documentation concerning Customization for
Customer Connec

Details:
Re-open Call

Added:
4/10/2008 7:02:05 AM
By:
WEB_USER

Summary:
????????

Can someone call me to let me know why I cannot get this it has
been over 3 months.

Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
3/25/2008 12:41:11 PM
By:
WEB_USER

Summary:
Hello anybody?

Still waiting on this one...

Event added by: Mike McWilliams(mmcwilliams@...<mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>
<mailto:mmcwilliams%40tbtube.com> <mailto:mmcwilliams%40tbtube.com>)

Added:
1/30/2008 2:28:58 PM
By:
DMURPHY

Summary:
Looking for documentation concerning Customization for Customer
Connect and Sale

Looking for documentation concerning Customization for Customer
Connect and Sales Connect.

--- In vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>, "Dale R. Kalsow" <dale.r.kalsow@...>
wrote:
>
> Good Morning Everyone,
>
>
>
> I have a meeting with Epicor on Monday. One of the topics that is
bound
> to come up is the level of support/response we receive when we call
> technical support and other people they have on staff.
>
>
>
> Does want to share their feels about Epicor? Do they respond when
you
> call? Are they helpful? If you call your CAM does he respond
quickly?
>
>
>
> Thanks !
>
>
>
> Dale
>
>
>
> From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>]
On
Behalf
> Of Kunal Ganguly
> Sent: Friday, May 09, 2008 9:14 AM
> To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com>
> Subject: Re: [Vantage] PO Entry form customizations
>
>
>
> I did not have such an option. Are you sure it was not a
customization
> on your end?
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: vantage <vantage@... <mailto:vantage%40rmgfelm.com> >
> To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> <mailto:vantage%40yahoogroups.com>
> Sent: Friday, May 9, 2008 9:05:10 AM
> Subject: RE: [Vantage] PO Entry form customizations
>
> There is a check box in ver. 8.03 on the line to lock unit Price
that I
> think does what you are doing in your custom code.
>
> Steve
>
> -----Original Message-----
> From: Kunal Ganguly [mailto:kunal_vantage@ yahoo.com]
> Sent: May 09, 2008 8:52 AM
> To: vantage@yahoogroups .com
> Subject: Re: [Vantage] PO Entry form customizations
>
> Thanks a ton Rob! That did the trick as far as the values changing
is
> concerned. One issue down, 3 more to go :)
>
> Thanks,
> Kunal
>
> ----- Original Message ----
> From: Robert Brown <robertb_versa@ <mailto:robertb_ versa%40yahoo.
com>
> yahoo.com>
> To: vantage@yahoogroups <mailto:vantage% 40yahoogroups. com> .com
> Sent: Thursday, May 8, 2008 3:41:25 PM
> Subject: Re: [Vantage] PO Entry form customizations
>
> We experienced the (unacceptable) auto price change upon any
editing as
> well.
>
> I ended up adding a checkbox (PODetail.checkbox0 3) to the line
tab w/
> this
> code to capture current line price and store as 'frozen' price (for
> restore
> after the app stupidly recalcs it) in PODetail.Number02:
>
> '//////
> Private Sub PODetail_AfterField Change(ByVal sender As object,
ByVal
> args As
> DataColumnChangeEve ntArgs) Handles PODetail_Column. ColumnChanged
> Event Handler Code
> '
> Select Case args.Column. ColumnName
>
> Case "CheckBox03"
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> 'messagebox. show("freeze unit price value = unit cost on checkbox
true
> select")
> edvPODetail. dataView( edvPODetail. Row)("Number02" ) =
edvPODetail.
> dataView( edvPODetail. Row)("UnitCost" )
> End If
>
> Case Else
> End Select
> End Sub
> '/////
>
> I added a hidden textbox (txtEpiClcTtlCst) linked to
PODetail.CalcTotalC
> ost
> and then added this code to restore the price upon unwarranted app
> triggered
> changes:
>
> '////
> Private Sub txtEpiClcTtlCst_ ValueChanged( ByVal Sender As Object,
ByVal
> Args As System.EventArgs) Handles txtEpiClcTtlCst. ValueChanged
> '// ** Place Event Handling Code Here **
> If len(txtEpiClcTtlCst .text) <> 0 then
> If edvPODetail. dataView( edvPODetail. Row)("CheckBox03 ") = True
Then
> If edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) <>
edvPODetail.
> dataView( edvPODetail. Row)("Number02" ) Then
> 'messagebox. show("reset price to Freeze Unit Price value")
> edvPODetail. dataView( edvPODetail. Row)("UnitCost" ) =
edvPODetail.
> dataView( edvPODetail. Row)("Number02" )
> End If
> End If
> End If
> End Sub
> '////
>
> The darn shame of it is, the db looks like it was designed to
enable
> rollback of cost as their are numerous pre-change qty, pre-change
cost,
> etc., fields that look they were intended to store values prior to
> changes
> made. Unfortunately, most don't get updated so I had to write the
mess
> above. Had they been working (404), it would have been much
cleaner.
>
> The ability of a buyer to set a checkbox to Lock a unit cost
(instead of
> allowing a re-price based on the current price list - every time a
qty
> or
> date changes) should be a standard option PO Entry option.
>
> Rob
> --- On Thu, 5/8/08, Kunal Ganguly <kunal_vantage@ yahoo.com> wrote:
>
> From: Kunal Ganguly <kunal_vantage@ yahoo.com>
> Subject: [Vantage] PO Entry form customizations
> To: "Vantage Yahoo Group" <vantage@yahoogroup s .com>
> Date: Thursday, May 8, 2008, 3:37 PM
>
> I have been running into a number of problems while customizing the
> Purchase
> Order Entry form.
>
> For starters, the unit price for any particular line items resets
to the
> default value when ANY change is made to the form forcing the user
to
> double
> check every time. I have been trying to use beforeadapter,
afteradapter,
> afterfieldchange, and other variations/combinat ions to little
success.
> Essentially, we would like the unit price to not change
automatically,
> it
> should remain the same value throughout no matter what change is
made
> anywhere else. (BPMs failed to do anything useful to help with
this)
>
> We would like releases for any new line item to have a locked
quantity.
> While this is relatively simple to do with a afterfieldchange
method,
> but
> this tends to interfere with the above problem or vice-versa. The
two do
> not
> seem to co-exist very well.
>
> For line items that fall into the "other" category, we would like
to
> pick a
> single GL account on the release form for all future line items. I
added
> a
> new search button and textboxes for the user to pick a GL account,
but I
> cannot seem to find an easy way to (a) make all "other" line items
use
> that
> GL account and/or (b) have all new line items use that GL account.
Also,
> as
> with the unit cost problem above, when ANY change is made to the
line
> item,
> the GL on the release form tends to reset to the same "misc"
value.
>
> Any suggestions and comments would be highly appreciated.
>
> Thanks,
> Kunal
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> [Non-text portions of this message have been removed]
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
yahoo.com/
> ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ
>
> ____________ _________ _________ _________ _________ _________ _
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now. http://mobile.
> <http://mobile. yahoo.com/ ;_ylt=Ahu06i62sR 8HDtDypao8Wcj9tA cJ>
> yahoo.com/;_ ylt=Ahu06i62sR8H DtDypao8Wcj9tAcJ
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> __________________________________________________________
> Be a better friend, newshound, and
> know-it-all with Yahoo! Mobile. Try it now.
> http://mobile.yahoo.com/;_ylt=Ahu06i62sR8HDtDypao8Wcj9tAcJ
>
> [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]

[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]