If you have JS that is creating the new POA&M, then you could set a token in the JS that the multiselect search uses, When the token changes value, the multiselect search will re-run. The MS would h...
See more...
If you have JS that is creating the new POA&M, then you could set a token in the JS that the multiselect search uses, When the token changes value, the multiselect search will re-run. The MS would have something like | inputlookup sp6_poams ``` $ms_trigger_token$ ``` i.e. it just needs to be in comments in the SPL and in your JS would do something like var defTokens = mvc.Components.get('default');
var subTokens = mvc.Components.get('submitted');
var value = defTokens.get('ms_trigger_token') + 1;
defTokens.set('ms_trigger_token', value);
subTokens.set('ms_trigger_token', value); Untested, but it's easy enough to do directly in XML but with JS you just need to get and increment the current token value and set it back - not sure exactly which of the default and/or submitted token models needs updating, but doesn't hurt to do both.