StephenW
(Stephen Wilson)
October 7, 2022, 3:30pm
1
Hi All!,
I have a task to add a new column into a menu that has been customized, how can I add a new field to an existing view?
The menu is the Quote BOM Pricing Menu. Beow SS is what fields currently populate.
I can see these field are coming from view “edvResults” as SS beow shows.
I need to add another field that is Qty on Hand, but that field is not available in the field drop down menu. How do I go about adding this field to this view?
bordway
(Bruce Ordway)
October 8, 2022, 7:37pm
2
Have you already seen this topic?
Here’s a quick example that does what you want ( and a brief video explaining how it works if ya wanna know)
//Using
using Ice.Lib.Broadcast;
//Class Level
BAQDataView baqViewLate;
public void CreateLateBAQView()
{
baqViewLate = new BAQDataView("LateOpenPos");
oTrans.Add("LateOpenPOBAQ",baqViewLate);
string pubBinding = "POTotal.BuyerID";
IPublisher pub = oTrans.GetPublisher(pubBinding);
if(pub==null)
{
oTrans.PublishColumnChange(pubBinding, "MyCustomPublish");
pub …
StephenW
(Stephen Wilson)
October 10, 2022, 7:25pm
3
I did not see that, I didn’t search for this topic but did not see that one, Ill check it out thanks.