Cutomer Customization problem 8.00.811B

Well I narrowed this problem down to when it actually does the upchucking of
the Finance Charge.

financeCharge.checked=false

After some testing many different combinations of the code I narrowed it
down to exactly that line. I even step up a customization to check the Check
Duplicate POs check box, that work fine. Another one to uncheck the Combine
Packing Slips check box, that works fine. It only seems to be the Finance
Charge checkbox that is causing this issue.

Scitt



-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Scott Litzau
Sent: Tuesday, May 01, 2007 10:45 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Cutomer Customization problem 8.00.811B


I upgraded to 8.00.811B over the weekend and now my customization in
Customer Maintenance is causing a problem where customers can not be
setup.

In my customization I have it set up that when is it is a new
customer then the Finance Charge Check Box is automatically
unchecked. Here is the code

Private Sub Customer_BeforeFieldChange(ByVal sender As object, ByVal
args As DataColumnChangeEventArgs) Handles
Customer_Column.ColumnChanging
'// ** Argument Properties and Uses **
'// args.Row("[FieldName]")
'// args.Column, args.ProposedValue, args.Row
'
'Add Event Handler Code
'
Select Case args.Column.ColumnName

Case "CustID"
If (args.Row("CustID")="") Then 'Is a new Customer
Dim financeCharge As EpiCheckBox = CType(csm.getNativeControlReference
("44fa8a1e-84da-445e-97ee-f0c7526954c0"),EpiCheckBox)
financeCharge.checked=false
End If
Case Else

End Select

End Sub

Basically what is occuring is that when you enter a new Customer ID
and then Tab out of the field the Cusotmer ID goes blank but yet the
customization still occurs, the finance charge checkbox is unchecked.

I ran Customer Maintenance in Base Mode and everything works fine.

Any suggestions on what can be happening?

Thanks,

Scott Litzau



Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must have
already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links
Yahoo! Groups Links
I upgraded to 8.00.811B over the weekend and now my customization in
Customer Maintenance is causing a problem where customers can not be
setup.

In my customization I have it set up that when is it is a new
customer then the Finance Charge Check Box is automatically
unchecked. Here is the code

Private Sub Customer_BeforeFieldChange(ByVal sender As object, ByVal
args As DataColumnChangeEventArgs) Handles
Customer_Column.ColumnChanging
'// ** Argument Properties and Uses **
'// args.Row("[FieldName]")
'// args.Column, args.ProposedValue, args.Row
'
'Add Event Handler Code
'
Select Case args.Column.ColumnName

Case "CustID"
If (args.Row("CustID")="") Then 'Is a new Customer
Dim financeCharge As EpiCheckBox = CType(csm.getNativeControlReference
("44fa8a1e-84da-445e-97ee-f0c7526954c0"),EpiCheckBox)
financeCharge.checked=false
End If
Case Else

End Select

End Sub

Basically what is occuring is that when you enter a new Customer ID
and then Tab out of the field the Cusotmer ID goes blank but yet the
customization still occurs, the finance charge checkbox is unchecked.

I ran Customer Maintenance in Base Mode and everything works fine.

Any suggestions on what can be happening?

Thanks,

Scott Litzau
Off the top of my head, make sure the EpiGuid did not change for the
control you are getting the reference to.

I got hosed on a couple customizations between 809 and 811 where the
id changed.

Bernie.

--- In vantage@yahoogroups.com, "Scott Litzau" <scott.litzau@...>
wrote:
>
> I upgraded to 8.00.811B over the weekend and now my customization
in
> Customer Maintenance is causing a problem where customers can not
be
> setup.
>
> In my customization I have it set up that when is it is a new
> customer then the Finance Charge Check Box is automatically
> unchecked. Here is the code
>
> Private Sub Customer_BeforeFieldChange(ByVal sender As object,
ByVal
> args As DataColumnChangeEventArgs) Handles
> Customer_Column.ColumnChanging
> '// ** Argument Properties and Uses **
> '// args.Row("[FieldName]")
> '// args.Column, args.ProposedValue, args.Row
> '
> 'Add Event Handler Code
> '
> Select Case args.Column.ColumnName
>
> Case "CustID"
> If (args.Row("CustID")="") Then 'Is a new Customer
> Dim financeCharge As EpiCheckBox = CType
(csm.getNativeControlReference
> ("44fa8a1e-84da-445e-97ee-f0c7526954c0"),EpiCheckBox)
> financeCharge.checked=false
> End If
> Case Else
>
> End Select
>
> End Sub
>
> Basically what is occuring is that when you enter a new Customer ID
> and then Tab out of the field the Cusotmer ID goes blank but yet
the
> customization still occurs, the finance charge checkbox is
unchecked.
>
> I ran Customer Maintenance in Base Mode and everything works fine.
>
> Any suggestions on what can be happening?
>
> Thanks,
>
> Scott Litzau
>
That was the first thing I checked. It is the same. I actually copied and
pasted it from the Properties just in case.

Scott

-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
bw2868bond
Sent: Tuesday, May 01, 2007 11:12 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Cutomer Customization problem 8.00.811B


Off the top of my head, make sure the EpiGuid did not change for the
control you are getting the reference to.

I got hosed on a couple customizations between 809 and 811 where the
id changed.

Bernie.

--- In vantage@yahoogroups.com, "Scott Litzau" <scott.litzau@...>
wrote:
>
> I upgraded to 8.00.811B over the weekend and now my customization
in
> Customer Maintenance is causing a problem where customers can not
be
> setup.
>
> In my customization I have it set up that when is it is a new
> customer then the Finance Charge Check Box is automatically
> unchecked. Here is the code
>
> Private Sub Customer_BeforeFieldChange(ByVal sender As object,
ByVal
> args As DataColumnChangeEventArgs) Handles
> Customer_Column.ColumnChanging
> '// ** Argument Properties and Uses **
> '// args.Row("[FieldName]")
> '// args.Column, args.ProposedValue, args.Row
> '
> 'Add Event Handler Code
> '
> Select Case args.Column.ColumnName
>
> Case "CustID"
> If (args.Row("CustID")="") Then 'Is a new Customer
> Dim financeCharge As EpiCheckBox = CType
(csm.getNativeControlReference
> ("44fa8a1e-84da-445e-97ee-f0c7526954c0"),EpiCheckBox)
> financeCharge.checked=false
> End If
> Case Else
>
> End Select
>
> End Sub
>
> Basically what is occuring is that when you enter a new Customer ID
> and then Tab out of the field the Cusotmer ID goes blank but yet
the
> customization still occurs, the finance charge checkbox is
unchecked.
>
> I ran Customer Maintenance in Base Mode and everything works fine.
>
> Any suggestions on what can be happening?
>
> Thanks,
>
> Scott Litzau
>




Useful links for the Yahoo!Groups Vantage Board are: ( Note: You must have
already linked your email address to a yahoo id to enable access. )
(1) To access the Files Section of our Yahoo!Group for Report Builder and
Crystal Reports and other 'goodies', please goto:
http://groups.yahoo.com/group/vantage/files/.
(2) To search through old msg's goto:
http://groups.yahoo.com/group/vantage/messages
(3) To view links to Vendors that provide Vantage services goto:
http://groups.yahoo.com/group/vantage/links
Yahoo! Groups Links