Customization

I'm still trying to figure this out. I think bw2868bond got me almost there. Thanks for your help! Does anyone else have a suggestion not that I can hook into the paint event? I'll try anything.

Thanks!

--- In vantage@yahoogroups.com, "scottkreel" <skreel@...> wrote:
>
> Hooking into the paint event seems to partially work. It allowed me to change the sortby and style drop down boxes, but it's not quite working yet. Although the drop down boxes change, it would appear that the values of these drop down boxes that are passed to the crystal report do not change. The style and sortby of the report that is generated is that of the defaults, not of the changes made in the paint event.
>
> I tried using the SelectedRow property of the EpiUltraCombo control instead of the ActiveRow, but that didn't seem to work either.
>
> I'm more of a c#/asp.net person, so 'm not as up to date on how binding and everything works in a windows form app.
>
> Any suggestions would be greatly appreciated. I'll post the outcomes whether successful or not.
>
>
> --- In vantage@yahoogroups.com, "bw2868bond" <bwalker@> wrote:
> >
> > Try this
> >
> > '//**************************************************
> > '// Custom VB.NET code for StockStatusReportForm
> > '// Created: 3/26/2009 8:06:05 PM
> > '//**************************************************
> > Imports System
> > Imports System.Data
> > Imports System.Diagnostics
> > Imports System.Windows.Forms
> > Imports System.ComponentModel
> > Imports Microsoft.VisualBasic
> > Imports Epicor.Mfg.UI
> > Imports Epicor.Mfg.UI.FrameWork
> > Imports Epicor.Mfg.UI.ExtendedProps
> > Imports Epicor.Mfg.UI.FormFunctions
> > Imports Epicor.Mfg.UI.Customization
> > Imports Epicor.Mfg.UI.Adapters
> > Imports Epicor.Mfg.UI.Searches
> >
> >
> > Module Script
> >
> >
> > '// ** Wizard Insert Location - Do Not Remove 'Begin/End Wizard Added Module Level Variables' Comments! **
> > '// Begin Wizard Added Module Level Variables **
> >
> > '// End Wizard Added Module Level Variables **
> >
> >
> > '// Add Custom Module Level Variables Here **
> > Private WithEvents cboSortBy As EpiUltraCombo
> >
> >
> > Sub InitializeCustomCode()
> >
> >
> > '// ** Wizard Insert Location - Do not delete 'Begin/End Wizard Added Variable Intialization' lines **
> > '// Begin Wizard Added Variable Intialization
> >
> > '// End Wizard Added Variable Intialization
> > '// Begin Custom Method Calls
> >
> > '// End Custom Method Calls
> > End Sub
> >
> >
> >
> > Sub DestroyCustomCode()
> >
> >
> > '// ** Wizard Insert Location - Do not delete 'Begin/End Wizard Added Object Disposal' lines **
> > '// Begin Wizard Added Object Disposal
> >
> > '// End Wizard Added Object Disposal
> > '// Begin Custom Code Disposal
> >
> > '// End Custom Code Disposal
> > End Sub
> >
> >
> > Private Sub StockStatusReportForm_Load(ByVal sender As object, ByVal args As EventArgs) Handles StockStatusReportForm.Load
> > '//
> > '// Add Event Handler Code
> > '//
> > cboSortBy = CType(csm.GetNativeControlReference("066cedf0-4e3b-4dfa-873f-747cd2e2e3ed"), Epicor.Mfg.UI.FrameWork.EpiUltraCombo)
> > End Sub
> >
> >
> > Private Sub cboSortBy_Paint(ByVal Sender As Object, ByVal Args As System.Windows.Forms.PaintEventArgs) Handles cboSortBy.Paint
> > '// ** Place Event Handling Code Here **
> > cboSortBy.ActiveRow = cboSortBy.Rows(cboSortBy.Rows.Count-1)
> > End Sub
> >
> >
> > End Module
> >
> >
> > --- In vantage@yahoogroups.com, "scottkreel" <skreel@> wrote:
> > >
> > > We created another menu item. So we have two menu items for the same report. We want one to have certain defaults and we want the other to have different defaults. The problem is, when I set the defaults in one, it changes the defaults in the other. If there is a way where I can have separate defaults for each menu item, that would work too.
> >
>
Ok, I figured it out. I had to change the ReportParameter Data Object settings.

Dim [edvVarName] As EpiDataView = CType(oTrans.EpiDataViews("ReportParam"), EpiDataView)
[edvVarName].dataView([edvVarName].Row)("ReportStyleNum") = 3

Dim [edvVarName] As EpiDataView = CType(oTrans.EpiDataViews("ReportParam"), EpiDataView)
[edvVarName].dataView([edvVarName].Row)("SortOptions") = "C"

--- In vantage@yahoogroups.com, "scottkreel" <skreel@...> wrote:
>
> I'm still trying to figure this out. I think bw2868bond got me almost there. Thanks for your help! Does anyone else have a suggestion not that I can hook into the paint event? I'll try anything.
>
> Thanks!
>
> --- In vantage@yahoogroups.com, "scottkreel" <skreel@> wrote:
> >
> > Hooking into the paint event seems to partially work. It allowed me to change the sortby and style drop down boxes, but it's not quite working yet. Although the drop down boxes change, it would appear that the values of these drop down boxes that are passed to the crystal report do not change. The style and sortby of the report that is generated is that of the defaults, not of the changes made in the paint event.
> >
> > I tried using the SelectedRow property of the EpiUltraCombo control instead of the ActiveRow, but that didn't seem to work either.
> >
> > I'm more of a c#/asp.net person, so 'm not as up to date on how binding and everything works in a windows form app.
> >
> > Any suggestions would be greatly appreciated. I'll post the outcomes whether successful or not.
> >
> >
> > --- In vantage@yahoogroups.com, "bw2868bond" <bwalker@> wrote:
> > >
> > > Try this
> > >
> > > '//**************************************************
> > > '// Custom VB.NET code for StockStatusReportForm
> > > '// Created: 3/26/2009 8:06:05 PM
> > > '//**************************************************
> > > Imports System
> > > Imports System.Data
> > > Imports System.Diagnostics
> > > Imports System.Windows.Forms
> > > Imports System.ComponentModel
> > > Imports Microsoft.VisualBasic
> > > Imports Epicor.Mfg.UI
> > > Imports Epicor.Mfg.UI.FrameWork
> > > Imports Epicor.Mfg.UI.ExtendedProps
> > > Imports Epicor.Mfg.UI.FormFunctions
> > > Imports Epicor.Mfg.UI.Customization
> > > Imports Epicor.Mfg.UI.Adapters
> > > Imports Epicor.Mfg.UI.Searches
> > >
> > >
> > > Module Script
> > >
> > >
> > > '// ** Wizard Insert Location - Do Not Remove 'Begin/End Wizard Added Module Level Variables' Comments! **
> > > '// Begin Wizard Added Module Level Variables **
> > >
> > > '// End Wizard Added Module Level Variables **
> > >
> > >
> > > '// Add Custom Module Level Variables Here **
> > > Private WithEvents cboSortBy As EpiUltraCombo
> > >
> > >
> > > Sub InitializeCustomCode()
> > >
> > >
> > > '// ** Wizard Insert Location - Do not delete 'Begin/End Wizard Added Variable Intialization' lines **
> > > '// Begin Wizard Added Variable Intialization
> > >
> > > '// End Wizard Added Variable Intialization
> > > '// Begin Custom Method Calls
> > >
> > > '// End Custom Method Calls
> > > End Sub
> > >
> > >
> > >
> > > Sub DestroyCustomCode()
> > >
> > >
> > > '// ** Wizard Insert Location - Do not delete 'Begin/End Wizard Added Object Disposal' lines **
> > > '// Begin Wizard Added Object Disposal
> > >
> > > '// End Wizard Added Object Disposal
> > > '// Begin Custom Code Disposal
> > >
> > > '// End Custom Code Disposal
> > > End Sub
> > >
> > >
> > > Private Sub StockStatusReportForm_Load(ByVal sender As object, ByVal args As EventArgs) Handles StockStatusReportForm.Load
> > > '//
> > > '// Add Event Handler Code
> > > '//
> > > cboSortBy = CType(csm.GetNativeControlReference("066cedf0-4e3b-4dfa-873f-747cd2e2e3ed"), Epicor.Mfg.UI.FrameWork.EpiUltraCombo)
> > > End Sub
> > >
> > >
> > > Private Sub cboSortBy_Paint(ByVal Sender As Object, ByVal Args As System.Windows.Forms.PaintEventArgs) Handles cboSortBy.Paint
> > > '// ** Place Event Handling Code Here **
> > > cboSortBy.ActiveRow = cboSortBy.Rows(cboSortBy.Rows.Count-1)
> > > End Sub
> > >
> > >
> > > End Module
> > >
> > >
> > > --- In vantage@yahoogroups.com, "scottkreel" <skreel@> wrote:
> > > >
> > > > We created another menu item. So we have two menu items for the same report. We want one to have certain defaults and we want the other to have different defaults. The problem is, when I set the defaults in one, it changes the defaults in the other. If there is a way where I can have separate defaults for each menu item, that would work too.
> > >
> >
>
I will need to create a calculator in Vantage. The calculator enable me to entered a number and choose the unit of measure. Automatically, I will need that the system say me, the conversion data. I will need for example convert feet in box. What the good method for create this ?

Thanks

Vantage 8.03.305
Launch calc.exe via a button control (from what ever app you need this in) and pass it the intial info (U/M conversion rate perhaps).

Or just write your own little vb app imbedded in the main app.



--- On Tue, 5/5/09, vantageuser13 <vantageuser13@...> wrote:

From: vantageuser13 <vantageuser13@...>
Subject: [Vantage] Customization
To: vantage@yahoogroups.com
Date: Tuesday, May 5, 2009, 8:25 AM








I will need to create a calculator in Vantage. The calculator enable me to entered a number and choose the unit of measure. Automatically, I will need that the system say me, the conversion data. I will need for example convert feet in box. What the good method for create this ?

Thanks

Vantage 8.03.305
Hello,

I customize my "Part Tracker" in Order Management and I'd like to use this customization for all part trackers in the system but not going to one by one and change it in Menu Maintanance. I'd like to use this customization automatically. Is anybody know how to do it?

Thank you.

bart.




[Non-text portions of this message have been removed]
I don't think its possible. You have to do it for each and every menu item. If anyone knows a better way, I'd love to hear it.




________________________________
From: Bartosz Niemczewski <bartoszniemczewski@...>
To: Vantage Group <vantage@yahoogroups.com>
Sent: Friday, May 8, 2009 2:31:42 PM
Subject: [Vantage] Customization





Hello,

I customize my "Part Tracker" in Order Management and I'd like to use this customization for all part trackers in the system but not going to one by one and change it in Menu Maintanance. I'd like to use this customization automatically. Is anybody know how to do it?

Thank you.

bart.

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







[Non-text portions of this message have been removed]
You can use Menu Maintenance to point to the customization wherever part
tracker is in each module - a little work but it does the trick.



Also, you can use Context Menu maintenance to determine which Part
Tracker runs when you right-click on a part. Be sure to check the
customization box on the top right before you search for the program -
otherwise your changes are for you only.







Randy Weber



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Steven Gotschall
Sent: Friday, May 08, 2009 1:45 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] Customization








I don't think its possible. You have to do it for each and every menu
item. If anyone knows a better way, I'd love to hear it.

________________________________
From: Bartosz Niemczewski <bartoszniemczewski@...
<mailto:bartoszniemczewski%40yahoo.com> >
To: Vantage Group <vantage@yahoogroups.com
<mailto:vantage%40yahoogroups.com> >
Sent: Friday, May 8, 2009 2:31:42 PM
Subject: [Vantage] Customization

Hello,

I customize my "Part Tracker" in Order Management and I'd like to use
this customization for all part trackers in the system but not going to
one by one and change it in Menu Maintanance. I'd like to use this
customization automatically. Is anybody know how to do it?

Thank you.

bart.

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

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





[Non-text portions of this message have been removed]
I think you can use sub-process maintenance for this. Basically you tell Vantage "every time program x is called, use customization y". You can also say "every time program x is called from program y, used customization z".

-bws

--
Brian W. Spolarich ~ Manager, Information Services ~ Advanced Photonix / Picometrix
    bspolarich@... ~ 734-864-5618 ~ www.advancedphotonix.com


-----Original Message-----
From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Steven Gotschall
Sent: Friday, May 08, 2009 2:45 PM
To: vantage@yahoogroups.com
Subject: Re: [Vantage] Customization

I don't think its possible. You have to do it for each and every menu item. If anyone knows a better way, I'd love to hear it.




________________________________
From: Bartosz Niemczewski <bartoszniemczewski@...>
To: Vantage Group <vantage@yahoogroups.com>
Sent: Friday, May 8, 2009 2:31:42 PM
Subject: [Vantage] Customization





Hello,

I customize my "Part Tracker" in Order Management and I'd like to use this customization for all part trackers in the system but not going to one by one and change it in Menu Maintanance. I'd like to use this customization automatically. Is anybody know how to do it?

Thank you.

bart.

[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
if possible on the customization on Vantage,for the thumbtack, when I click on this thumbtack, if not possible for reduce the windows ?

I use vantage 8.03.408b

Thanks.
Does anyone know of an easier way or have sample code that queries a table or looks up data in a table without creating a dataset.

Thank You

Jason Moyer

We are using Vantage 8.03.409A with a progress database
What are you wanting to do? In a BPM you could just work with the
dataset brought in by the business object.



Tim Dines

ERP Analyst

Steel Parts Manufacturing, Inc.

801 Berryman Pike

Tipton, IN 46072

765-675-5201



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf
Of Jason Moyer
Sent: Wednesday, June 23, 2010 1:31 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Customization





Does anyone know of an easier way or have sample code that queries a
table or looks up data in a table without creating a dataset.

Thank You

Jason Moyer

We are using Vantage 8.03.409A with a progress database





[Non-text portions of this message have been removed]
Hey, Jason, hope all is well!



If you want to do this visually, check out DbVisualizer
<http://www.dbvis.com/> . It's a pretty cool utility. There is a free
version and a licensed version with enhanced features.



Regards,
Scott Lepley



_____

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Jason Moyer
Sent: Wednesday, June 23, 2010 1:31 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Customization



Does anyone know of an easier way or have sample code that queries a table
or looks up data in a table without creating a dataset.

Thank You

Jason Moyer

We are using Vantage 8.03.409A with a progress database

_



[Non-text portions of this message have been removed]
I have buttons with code on the Order Entry screen that extracts information and populates several form letters that we send out to customers. I would like to use the EntryPerson field that contains the userid and query the UserFile table to return the users full name.

Thanks, Jason

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Dines, Tim
Sent: Wednesday, June 23, 2010 2:40 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Customization



What are you wanting to do? In a BPM you could just work with the
dataset brought in by the business object.

Tim Dines

ERP Analyst

Steel Parts Manufacturing, Inc.

801 Berryman Pike

Tipton, IN 46072

765-675-5201

From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf
Of Jason Moyer
Sent: Wednesday, June 23, 2010 1:31 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Customization

Does anyone know of an easier way or have sample code that queries a
table or looks up data in a table without creating a dataset.

Thank You

Jason Moyer

We are using Vantage 8.03.409A with a progress database

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


________________________________
Please consider the impact on our environment before printing this e-mail


[Non-text portions of this message have been removed]
Use a BPM to dump the userid into OrderHed.Character01

On update

Assign OrderHed.Caracter01=DCD-UserID.
End.
Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: "Jason M. Moyer" <jmmoyer@...>
Sender: vantage@yahoogroups.com
Date: Wed, 23 Jun 2010 15:32:26
To: vantage@yahoogroups.com<vantage@yahoogroups.com>
Reply-To: vantage@yahoogroups.com
Subject: RE: [Vantage] Customization

I have buttons with code on the Order Entry screen that extracts information and populates several form letters that we send out to customers. I would like to use the EntryPerson field that contains the userid and query the UserFile table to return the users full name.

Thanks, Jason

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Dines, Tim
Sent: Wednesday, June 23, 2010 2:40 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Customization



What are you wanting to do? In a BPM you could just work with the
dataset brought in by the business object.

Tim Dines

ERP Analyst

Steel Parts Manufacturing, Inc.

801 Berryman Pike

Tipton, IN 46072

765-675-5201

From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf
Of Jason Moyer
Sent: Wednesday, June 23, 2010 1:31 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Customization

Does anyone know of an easier way or have sample code that queries a
table or looks up data in a table without creating a dataset.

Thank You

Jason Moyer

We are using Vantage 8.03.409A with a progress database

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


________________________________
Please consider the impact on our environment before printing this e-mail


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




[Non-text portions of this message have been removed]
Oh and then pull youR fields outside the dataset in the UserFile using that as key field
Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: advantage@...
Date: Wed, 23 Jun 2010 20:43:44
To: <vantage@yahoogroups.com>
Reply-To: advantage@...
Subject: Re: [Vantage] Customization

Use a BPM to dump the userid into OrderHed.Character01

On update

Assign OrderHed.Caracter01=DCD-UserID.
End.
Sent from my Verizon Wireless BlackBerry

-----Original Message-----
From: "Jason M. Moyer" <jmmoyer@...>
Sender: vantage@yahoogroups.com
Date: Wed, 23 Jun 2010 15:32:26
To: vantage@yahoogroups.com<vantage@yahoogroups.com>
Reply-To: vantage@yahoogroups.com
Subject: RE: [Vantage] Customization

I have buttons with code on the Order Entry screen that extracts information and populates several form letters that we send out to customers. I would like to use the EntryPerson field that contains the userid and query the UserFile table to return the users full name.

Thanks, Jason

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of Dines, Tim
Sent: Wednesday, June 23, 2010 2:40 PM
To: vantage@yahoogroups.com
Subject: RE: [Vantage] Customization



What are you wanting to do? In a BPM you could just work with the
dataset brought in by the business object.

Tim Dines

ERP Analyst

Steel Parts Manufacturing, Inc.

801 Berryman Pike

Tipton, IN 46072

765-675-5201

From: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com> [mailto:vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>] On Behalf
Of Jason Moyer
Sent: Wednesday, June 23, 2010 1:31 PM
To: vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>
Subject: [Vantage] Customization

Does anyone know of an easier way or have sample code that queries a
table or looks up data in a table without creating a dataset.

Thank You

Jason Moyer

We are using Vantage 8.03.409A with a progress database

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


________________________________
Please consider the impact on our environment before printing this e-mail


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




[Non-text portions of this message have been removed]
Hi,
I need to add calculated field porel.relqty*partuom.netvolume in po form.I'm trying to calculate this using BPM.I do not see PArtUOM in temp table.How do I get PArtUOM in temp table?

Also What is the best way to do this customization?

Thanks.
--- In vantage@yahoogroups.com, "Anitha" <anithayedavalli@...> wrote:
>
> Hi,
> I need to add calculated field porel.relqty*partuom.netvolume in po form.I'm trying to calculate this using BPM.I do not see PArtUOM in temp table.How do I get PArtUOM in temp table?
>
> Also What is the best way to do this customization?
>
> Thanks.
>
I wouldn't do this via a BPM. Doing so would mean that you've got to store
the field on the table, and then you'd need to make sure that whenever one
field gets updated, the calculated field also does. Doing so isn't good
practice.



I'd recommend you simply add a control to your form, then calculate the
field within your UI. I'd probably put the code in the epidataview
notification sub (use the wizard to create this), others may have a better
idea. You may need to also have some "after field changed" events that
trigger as well (again, use the wizards to create these).



HTH,



Kevin Simon



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Anitha
Sent: Tuesday, March 15, 2011 2:51 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Customization-PO







--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> , "Anitha"
<anithayedavalli@...> wrote:
>
> Hi,
> I need to add calculated field porel.relqty*partuom.netvolume in po
form.I'm trying to calculate this using BPM.I do not see PArtUOM in temp
table.How do I get PArtUOM in temp table?
>
> Also What is the best way to do this customization?
>
> Thanks.
>





[Non-text portions of this message have been removed]
Hi Kevin,
I put the calculation in both epidataview
> notification and field change event but for some reason the calculation doesnt seemed to trigger.
The calculated field is placed in POEntry for under lines->detail.

Whenever poline is selected the calculated field should display the result.

Any ideas on how to achieve this?

Thanks


--- In vantage@yahoogroups.com, "Kevin Simon" <ksimon@...> wrote:
>
> I wouldn't do this via a BPM. Doing so would mean that you've got to store
> the field on the table, and then you'd need to make sure that whenever one
> field gets updated, the calculated field also does. Doing so isn't good
> practice.
>
>
>
> I'd recommend you simply add a control to your form, then calculate the
> field within your UI. I'd probably put the code in the epidataview
> notification sub (use the wizard to create this), others may have a better
> idea. You may need to also have some "after field changed" events that
> trigger as well (again, use the wizards to create these).
>
>
>
> HTH,
>
>
>
> Kevin Simon
>
>
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
> Anitha
> Sent: Tuesday, March 15, 2011 2:51 PM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Re: Customization-PO
>
>
>
>
>
>
>
> --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> , "Anitha"
> <anithayedavalli@> wrote:
> >
> > Hi,
> > I need to add calculated field porel.relqty*partuom.netvolume in po
> form.I'm trying to calculate this using BPM.I do not see PArtUOM in temp
> table.How do I get PArtUOM in temp table?
> >
> > Also What is the best way to do this customization?
> >
> > Thanks.
> >
>
>
>
>
>
> [Non-text portions of this message have been removed]
>
Anitha,



Go ahead and export your customization and send it to me offline. I'll take
a quick look and see what you're doing.



Kevin Simon



From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of
Anitha
Sent: Thursday, March 17, 2011 8:24 PM
To: vantage@yahoogroups.com
Subject: [Vantage] Re: Customization-PO






Hi Kevin,
I put the calculation in both epidataview
> notification and field change event but for some reason the calculation
doesnt seemed to trigger.
The calculated field is placed in POEntry for under lines->detail.

Whenever poline is selected the calculated field should display the result.

Any ideas on how to achieve this?

Thanks

--- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> , "Kevin
Simon" <ksimon@...> wrote:
>
> I wouldn't do this via a BPM. Doing so would mean that you've got to store
> the field on the table, and then you'd need to make sure that whenever one
> field gets updated, the calculated field also does. Doing so isn't good
> practice.
>
>
>
> I'd recommend you simply add a control to your form, then calculate the
> field within your UI. I'd probably put the code in the epidataview
> notification sub (use the wizard to create this), others may have a better
> idea. You may need to also have some "after field changed" events that
> trigger as well (again, use the wizards to create these).
>
>
>
> HTH,
>
>
>
> Kevin Simon
>
>
>
> From: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
[mailto:vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com> ] On
Behalf Of
> Anitha
> Sent: Tuesday, March 15, 2011 2:51 PM
> To: vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
> Subject: [Vantage] Re: Customization-PO
>
>
>
>
>
>
>
> --- In vantage@yahoogroups.com <mailto:vantage%40yahoogroups.com>
<mailto:vantage%40yahoogroups.com> , "Anitha"
> <anithayedavalli@> wrote:
> >
> > Hi,
> > I need to add calculated field porel.relqty*partuom.netvolume in po
> form.I'm trying to calculate this using BPM.I do not see PArtUOM in temp
> table.How do I get PArtUOM in temp table?
> >
> > Also What is the best way to do this customization?
> >
> > Thanks.
> >
>
>
>
>
>
> [Non-text portions of this message have been removed]
>





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