customization - acumatica add field to display values from database -
i created custom field usrfobprice in stock items screen(in202500),
i created new custom screen in purchase order. enter image description here
how add inventory id lookup field , custom field fob price in new screen display values database?
(when try add new field on new screen says mastertable not exist in database)
using system; using px.data; namespace newscreen { public class newpurchaseorder : pxgraph<newpurchaseorder> { public pxcancel<mastertable> cancel; public pxfilter<mastertable> masterview; public pxfilter<detailstable> detailsview; [serializable] public class mastertable : ibqltable { } [serializable] public class detailstable : ibqltable { } } }
Comments
Post a Comment