NetSuite custom field for Kit / Package entries that reference member positions

Is it possible to create a custom field in Kit / Package entries in which member items will be displayed?

For example: there is a kit / package containing two components. Is it possible to have a custom field called "Component SKU 1". This field will be filled in the SKU of the first position {memberline}.

+5
source share
2 answers

Create a custom beforeSubmit script event that will trigger a search on member elements and fill in custom fields with the required data. I did a little testing and I'm sure this is not something that can be achieved with a simple local search. Creating this custom event should be simple enough if you have some knowledge in SuiteScript and Javascript format. In the beginning, although you should only use the "N / record" and "N / search" modules if you are using SuiteScript 2.0. Information about both can be found quite easily in the help.

+3
source

You can create a custom script event that populates a set of custom item fields. What is your use case?

0
source

Source: https://habr.com/ru/post/1270927/


All Articles