Is there any way we can customize/control the Inve...
# suitescript
k
Is there any way we can customize/control the Inventory Assignment sublist we see when:     Edit the Item Fulfillment--> line level Item -->  Inventory detail --> Select Lot number/Serial Number. Thanks.
b
too vague
your level of description gets the generic uses client script
e
and client scripts can't create subrecords
b
you can however deploy client script to inventory detail records
👍 1
k
Thank you @battk & @ehcanadian I'm trying to filter/customize the results in the dropdown that is showing Lot number/Serial Numbers, based on a criteria that is to Show only the list of available lots that has a checkbox field-A in it is checked(True).
b
nope, not an option via suitescript for native fields
closest is adding your own field that has options you add yourself
and use that field to set the native field
k
Thank you @battk. Its not a native field, It is a checkbox field on the selected Lot number itself, Let me make it more clear with an example.
Edit the Item Fulfillment--> line level Item --> Inventory detail —>Dropdown/List showing 10 results of available Lot number/Serial Number. Goal is to display only Lot number/Serial Numbers that are having the Custom Checkbox field A is selected/checked to True. Among the 10 available Lot number results, only 5 of them are having the Custom checkbox A that is checked to True.  So, we need to display only 5 results in the dropdown that is showing the list of Lot number/Serial Number.
Hope this is clear, Thank you @battk
b
you missed my point
go through the documentation for Field.insertSelectOption or Field.removeSelectOption to see the restrictions related to select options
k
Ahh.. understood, the native field you mentioned is regarding the selecting dropdown itself.
Thank you @battk