Home > Blockchain >  How could I edit the information on popup window in NetSuite?
How could I edit the information on popup window in NetSuite?

Time:05-13

How could I edit the information on popup window in NetSuite ? Like this photo, I wanna to show some other information in this popup window . enter image description here

I want to edit the information of item colume in Purchase Order.

Is there any way to do that? Maybe using some script?

CodePudding user response:

Under Customizaton / Forms /Entry Forms

  • find the default form for the record type for which you want to adjust the quick-vew
  • Edit that form.
  • there is a 'Quick View' tab
  • add/remove/re-order the fields needed
  • save the form

Repeat as needed (non-inventory items have different forms than inventory items etc)

There are also much more complex ways to accomplish this by adding scripts to the page but that's a whole other story.

edit based on comment: Something like the last X prices of the item could be added as custom item fields. These fields would be no different from any custom fields. They can be non-saved and derived from saved search outputs or they could be calculated daily in a map reduce script on items that have been purchased in the previous 24 hours. (or 36 for some extra effort but no missed transactions)

  • Related