Update CheckBox01 on SerialNo through the BO

Thanks Stephen, that was the information I was missing. It works now.
Â
Steven G.


________________________________
From: Stephen Edginton <stephene@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, November 16, 2012 8:19 PM
Subject: RE: [Vantage] Update CheckBox01 on SerialNo through the BO

Â
Before you do anything like this always trace the process, then compare your trace from your customisation

You will notice you are missing
adSerialNo.SerialNoData.SerialNo(0)(" TransactionSource") = "SNMaint"

Regards,

From: mailto:vantage%40yahoogroups.com [mailto:mailto:vantage%40yahoogroups.com] On Behalf Of Steven
Sent: 16 November 2012 16:53
To: mailto:vantage%40yahoogroups.com
Subject: [Vantage] Update CheckBox01 on SerialNo through the BO

Vantage 8.03.408A Progress

I am trying to update CheckBox01 in the SerialNo table using the SerialNoAdapter BO. When I execute the update method, I get an unhandled exception "The Transaction source is invalid". Anyone have an idea on what I am doing wrong?

Steven G.

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




[Non-text portions of this message have been removed]
Vantage 8.03.408A Progress

I am trying to update CheckBox01 in the SerialNo table using the SerialNoAdapter BO. When I execute the update method, I get an unhandled exception "The Transaction source is invalid". Anyone have an idea on what I am doing wrong?

Steven G.
SHow your code..


*Jose C Gomez*
*Software Engineer*
*
*
*
*T: 904.469.1524 mobile
E: jose@...
http://www.josecgomez.com
<http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez>
<http://www.google.com/profiles/jose.gomez> <http://www.twitter.com/joc85>
<http://www.josecgomez.com/professional-resume/>
<http://www.josecgomez.com/feed/>
<http://www.usdoingstuff.com>

*Quis custodiet ipsos custodes?*



On Fri, Nov 16, 2012 at 11:52 AM, Steven <sgotschall@...> wrote:

> **
>
>
> Vantage 8.03.408A Progress
>
> I am trying to update CheckBox01 in the SerialNo table using the
> SerialNoAdapter BO. When I execute the update method, I get an unhandled
> exception "The Transaction source is invalid". Anyone have an idea on what
> I am doing wrong?
>
> Steven G.
>
>
>


[Non-text portions of this message have been removed]
This is the click event on the button in the tracker of a dashboard:
 Private Sub btnEpiCustom1_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnEpiCustom1.Click
'// ** Place Event Handling Code Here **
Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0
Dim adSerialNo as SerialNoAdapter = New SerialNoAdapter(Otrans)
adSerialNo.BOconnect()
Dim ReturnedData as Boolean
adSerialNo.ClearData()
adSerialNo.ClearList()
ReturnedData = adSerialNo.GetById(txtEpiCustom1.Text, txtEpiCustom2.Text)
If ReturnedData Then
If adSerialNo.SerialNoData.Tables("SerialNo").Rows.Count > 0 Then
adSerialNo.SerialNoData.SerialNo(0)("CheckBox01") = TRUE
adSerialNo.Update()
End If
End If
adSerialNo.Dispose()
Otrans.Refresh()
End Sub


________________________________
From: Jose Gomez <jose@...>
To: Vantage <vantage@yahoogroups.com>
Sent: Friday, November 16, 2012 12:25 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

SHow your code..


*Jose C Gomez*
*Software Engineer*
*
*
*
*T: 904.469.1524 mobile
E: jose@...
http://www.josecgomez.com
<http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez>
 <http://www.google.com/profiles/jose.gomez> <http://www.twitter.com/joc85>
 <http://www.josecgomez.com/professional-resume/>
<http://www.josecgomez.com/feed/>
 <http://www.usdoingstuff.com>

*Quis custodiet ipsos custodes?*



On Fri, Nov 16, 2012 at 11:52 AM, Steven <sgotschall@...> wrote:

> **
>
>
> Vantage 8.03.408A Progress
>
> I am trying to update CheckBox01 in the SerialNo table using the
> SerialNoAdapter BO. When I execute the update method, I get an unhandled
> exception "The Transaction source is invalid". Anyone have an idea on what
> I am doing wrong?
>
> Steven G.
>

>


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



------------------------------------

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/.%c2%a0
(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/linksYahoo! Groups Links



[Non-text portions of this message have been removed]
You don't need to declare oTrans.

Delete Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0




________________________________
From: Steven Gotschall <sgotschall@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, November 16, 2012 12:48 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

This is the click event on the button in the tracker of a dashboard:
 Private Sub btnEpiCustom1_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnEpiCustom1.Click
'// ** Place Event Handling Code Here **
Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0
Dim adSerialNo as SerialNoAdapter = New SerialNoAdapter(Otrans)
adSerialNo.BOconnect()
Dim ReturnedData as Boolean
adSerialNo.ClearData()
adSerialNo.ClearList()
ReturnedData = adSerialNo.GetById(txtEpiCustom1.Text, txtEpiCustom2.Text)
If ReturnedData Then
If adSerialNo.SerialNoData.Tables("SerialNo").Rows.Count > 0 Then
adSerialNo.SerialNoData.SerialNo(0)("CheckBox01") = TRUE
adSerialNo.Update()
End If
End If
adSerialNo.Dispose()
Otrans.Refresh()
End Sub


________________________________
From: Jose Gomez <jose@...>
To: Vantage <vantage@yahoogroups.com>
Sent: Friday, November 16, 2012 12:25 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

SHow your code..


*Jose C Gomez*
*Software Engineer*
*
*
*
*T: 904.469.1524 mobile
E: jose@...
http://www.josecgomez.com
<http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez>
 <http://www.google.com/profiles/jose.gomez> <http://www.twitter.com/joc85>
 <http://www.josecgomez.com/professional-resume/>
<http://www.josecgomez.com/feed/>
 <http://www.usdoingstuff.com>

*Quis custodiet ipsos custodes?*



On Fri, Nov 16, 2012 at 11:52 AM, Steven <sgotschall@...> wrote:

> **
>
>
> Vantage 8.03.408A Progress
>
> I am trying to update CheckBox01 in the SerialNo table using the
> SerialNoAdapter BO. When I execute the update method, I get an unhandled
> exception "The Transaction source is invalid". Anyone have an idea on what
> I am doing wrong?
>
> Steven G.
>

>


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



------------------------------------

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/.%c2%a0
(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/linksYahoo! Groups Links



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



------------------------------------

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/.%c2%a0
(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/linksYahoo! Groups Links



[Non-text portions of this message have been removed]
In a dashboard for version 8.03 you do.
Â
I tried the same code without the oTrans declaration in the Serial Number Maintenance screen and got the same error message. I think there might be a problem with the BO in my version of Vantage.


________________________________
From: Ted Koch <tkoch77@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, November 16, 2012 4:24 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

Â
You don't need to declare oTrans.

Delete Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0

________________________________
From: Steven Gotschall <mailto:sgotschall%40yahoo.com>
To: "mailto:vantage%40yahoogroups.com" <mailto:vantage%40yahoogroups.com>
Sent: Friday, November 16, 2012 12:48 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

This is the click event on the button in the tracker of a dashboard:
 Private Sub btnEpiCustom1_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnEpiCustom1.Click
'// ** Place Event Handling Code Here **
Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0
Dim adSerialNo as SerialNoAdapter = New SerialNoAdapter(Otrans)
adSerialNo.BOconnect()
Dim ReturnedData as Boolean
adSerialNo.ClearData()
adSerialNo.ClearList()
ReturnedData = adSerialNo.GetById(txtEpiCustom1.Text, txtEpiCustom2.Text)
If ReturnedData Then
If adSerialNo.SerialNoData.Tables("SerialNo").Rows.Count > 0 Then
adSerialNo.SerialNoData.SerialNo(0)("CheckBox01") = TRUE
adSerialNo.Update()
End If
End If
adSerialNo.Dispose()
Otrans.Refresh()
End Sub

________________________________
From: Jose Gomez <mailto:jose%40josecgomez.com>
To: Vantage <mailto:vantage%40yahoogroups.com>
Sent: Friday, November 16, 2012 12:25 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

SHow your code..

*Jose C Gomez*
*Software Engineer*
*
*
*
*T: 904.469.1524 mobile
E: mailto:jose%40josecgomez.com
http://www.josecgomez.com
<http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez>
 <http://www.google.com/profiles/jose.gomez> <http://www.twitter.com/joc85>
 <http://www.josecgomez.com/professional-resume/>
<http://www.josecgomez.com/feed/>
 <http://www.usdoingstuff.com>

*Quis custodiet ipsos custodes?*

On Fri, Nov 16, 2012 at 11:52 AM, Steven <mailto:sgotschall%40yahoo.com> wrote:

> **
>
>
> Vantage 8.03.408A Progress
>
> I am trying to update CheckBox01 in the SerialNo table using the
> SerialNoAdapter BO. When I execute the update method, I get an unhandled
> exception "The Transaction source is invalid". Anyone have an idea on what
> I am doing wrong?
>
> Steven G.
>

>

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

------------------------------------

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/.%c2%a0
(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/linksYahoo! Groups Links

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

------------------------------------

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/%c2%a0
(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/linksYahoo! Groups Links

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




[Non-text portions of this message have been removed]
Sorry, didn't read you were on V8. I have never worked with anything less than 9.05




________________________________
From: Steven Gotschall <sgotschall@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, November 16, 2012 4:48 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

In a dashboard for version 8.03 you do.
Â
I tried the same code without the oTrans declaration in the Serial Number Maintenance screen and got the same error message. I think there might be a problem with the BO in my version of Vantage.


________________________________
From: Ted Koch <tkoch77@...>
To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
Sent: Friday, November 16, 2012 4:24 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

Â
You don't need to declare oTrans.

Delete Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0

________________________________
From: Steven Gotschall <mailto:sgotschall%40yahoo.com>
To: "mailto:vantage%40yahoogroups.com" <mailto:vantage%40yahoogroups.com>
Sent: Friday, November 16, 2012 12:48 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

This is the click event on the button in the tracker of a dashboard:
 Private Sub btnEpiCustom1_Click(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles btnEpiCustom1.Click
'// ** Place Event Handling Code Here **
Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0
Dim adSerialNo as SerialNoAdapter = New SerialNoAdapter(Otrans)
adSerialNo.BOconnect()
Dim ReturnedData as Boolean
adSerialNo.ClearData()
adSerialNo.ClearList()
ReturnedData = adSerialNo.GetById(txtEpiCustom1.Text, txtEpiCustom2.Text)
If ReturnedData Then
If adSerialNo.SerialNoData.Tables("SerialNo").Rows.Count > 0 Then
adSerialNo.SerialNoData.SerialNo(0)("CheckBox01") = TRUE
adSerialNo.Update()
End If
End If
adSerialNo.Dispose()
Otrans.Refresh()
End Sub

________________________________
From: Jose Gomez <mailto:jose%40josecgomez.com>
To: Vantage <mailto:vantage%40yahoogroups.com>
Sent: Friday, November 16, 2012 12:25 PM
Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO

SHow your code..

*Jose C Gomez*
*Software Engineer*
*
*
*
*T: 904.469.1524 mobile
E: mailto:jose%40josecgomez.com
http://www.josecgomez.com
<http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez>
 <http://www.google.com/profiles/jose.gomez> <http://www.twitter.com/joc85>
 <http://www.josecgomez.com/professional-resume/>
<http://www.josecgomez.com/feed/>
 <http://www.usdoingstuff.com>

*Quis custodiet ipsos custodes?*

On Fri, Nov 16, 2012 at 11:52 AM, Steven <mailto:sgotschall%40yahoo.com> wrote:

> **
>
>
> Vantage 8.03.408A Progress
>
> I am trying to update CheckBox01 in the SerialNo table using the
> SerialNoAdapter BO. When I execute the update method, I get an unhandled
> exception "The Transaction source is invalid". Anyone have an idea on what
> I am doing wrong?
>
> Steven G.
>

>

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

------------------------------------

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/.%c2%a0
(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/linksYahoo! Groups Links

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

------------------------------------

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/%c2%a0
(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/linksYahoo! Groups Links

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




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



------------------------------------

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/.%c2%a0
(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/linksYahoo! Groups Links



[Non-text portions of this message have been removed]
Try using the BO and not the adapter

SerialNo = new SerialNo(((Session)oTrans.Session).ConnectionPool)

SerialNumberDataSet ds = serialNo.GetByID("ID");
ds.SerialNo[0].CheckBox19=true;

SerialNo.Update(ds):


that's roughly the code


*Jose C Gomez*
*Software Engineer*
*
*
*
*T: 904.469.1524 mobile
E: jose@...
http://www.josecgomez.com
<http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez>
<http://www.google.com/profiles/jose.gomez> <http://www.twitter.com/joc85>
<http://www.josecgomez.com/professional-resume/>
<http://www.josecgomez.com/feed/>
<http://www.usdoingstuff.com>

*Quis custodiet ipsos custodes?*



On Fri, Nov 16, 2012 at 4:56 PM, Ted Koch <tkoch77@...> wrote:

> **
>
>
> Sorry, didn't read you were on V8. I have never worked with anything less
> than 9.05
>
>
> ________________________________
> From: Steven Gotschall <sgotschall@...>
> To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
> Sent: Friday, November 16, 2012 4:48 PM
>
> Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO
>
> In a dashboard for version 8.03 you do.
>
> I tried the same code without the oTrans declaration in the Serial Number
> Maintenance screen and got the same error message. I think there might be
> a problem with the BO in my version of Vantage.
>
> ________________________________
> From: Ted Koch <tkoch77@...>
> To: "vantage@yahoogroups.com" <vantage@yahoogroups.com>
> Sent: Friday, November 16, 2012 4:24 PM
> Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO
>
>
> You don't need to declare oTrans.
>
> Delete Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0
>
> ________________________________
> From: Steven Gotschall <mailto:sgotschall%40yahoo.com>
> To: "mailto:vantage%40yahoogroups.com" <mailto:vantage%40yahoogroups.com>
> Sent: Friday, November 16, 2012 12:48 PM
> Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO
>
> This is the click event on the button in the tracker of a dashboard:
> Private Sub btnEpiCustom1_Click(ByVal Sender As Object, ByVal Args As
> System.EventArgs) Handles btnEpiCustom1.Click
> '// ** Place Event Handling Code Here **
> Dim Otrans As Object = DBTVP_54755fd5_dc4e_40ed_abe4_6fc31ba1f0b0
> Dim adSerialNo as SerialNoAdapter = New SerialNoAdapter(Otrans)
> adSerialNo.BOconnect()
> Dim ReturnedData as Boolean
> adSerialNo.ClearData()
> adSerialNo.ClearList()
> ReturnedData = adSerialNo.GetById(txtEpiCustom1.Text, txtEpiCustom2.Text)
> If ReturnedData Then
> If adSerialNo.SerialNoData.Tables("SerialNo").Rows.Count > 0 Then
> adSerialNo.SerialNoData.SerialNo(0)("CheckBox01") = TRUE
> adSerialNo.Update()
> End If
> End If
> adSerialNo.Dispose()
> Otrans.Refresh()
> End Sub
>
> ________________________________
> From: Jose Gomez <mailto:jose%40josecgomez.com>
> To: Vantage <mailto:vantage%40yahoogroups.com>
> Sent: Friday, November 16, 2012 12:25 PM
> Subject: Re: [Vantage] Update CheckBox01 on SerialNo through the BO
>
> SHow your code..
>
> *Jose C Gomez*
> *Software Engineer*
> *
> *
> *
> *T: 904.469.1524 mobile
> E: mailto:jose%40josecgomez.com
> http://www.josecgomez.com
> <http://www.linkedin.com/in/josecgomez> <http://www.facebook.com/josegomez
> >
> <http://www.google.com/profiles/jose.gomez> <
> http://www.twitter.com/joc85>
> <http://www.josecgomez.com/professional-resume/>
> <http://www.josecgomez.com/feed/>
> <http://www.usdoingstuff.com>
>
> *Quis custodiet ipsos custodes?*
>
> On Fri, Nov 16, 2012 at 11:52 AM, Steven <mailto:sgotschall%40yahoo.com>
> wrote:
>
> > **
> >
> >
> > Vantage 8.03.408A Progress
> >
> > I am trying to update CheckBox01 in the SerialNo table using the
> > SerialNoAdapter BO. When I execute the update method, I get an unhandled
> > exception "The Transaction source is invalid". Anyone have an idea on
> what
> > I am doing wrong?
> >
> > Steven G.
> >
> >
> >
>
> [Non-text portions of this message have been removed]
>
> ------------------------------------
>
> 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/linksYahoo! Groups Links
>
> [Non-text portions of this message have been removed]
>
> ------------------------------------
>
> 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/linksYahoo! Groups Links
>
> [Non-text portions of this message have been removed]
>
> [Non-text portions of this message have been removed]
>
> ------------------------------------
>
> 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/linksYahoo! Groups Links
>
> [Non-text portions of this message have been removed]
>
>
>


[Non-text portions of this message have been removed]
Before you do anything like this always trace the process, then compare your trace from your customisation

You will notice you are missing
adSerialNo.SerialNoData.SerialNo(0)(" TransactionSource") = "SNMaint"

Regards,


From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Steven
Sent: 16 November 2012 16:53
To: vantage@yahoogroups.com
Subject: [Vantage] Update CheckBox01 on SerialNo through the BO



Vantage 8.03.408A Progress

I am trying to update CheckBox01 in the SerialNo table using the SerialNoAdapter BO. When I execute the update method, I get an unhandled exception "The Transaction source is invalid". Anyone have an idea on what I am doing wrong?

Steven G.



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