// Here they create MultiSelectionHelper object. Note that createFromCaller() isn't the only possible way.
MultiSelectionHelper multiselectionHelper = MultiSelectionHelper::createFromCaller(_args.caller());
// Get the first record from multiselectionHelper
IntentLetter_IT intentLetter = multiselectionHelper.getFirst();
// Check if there is a record to process
while (intentLetter)
{
// Add data to a list. Here they use a list of records, but you can also use a list of primitive values (such as record IDs).
intentLetterList.addEnd(intentLetter);
// Get the next selected record
intentLetter = multiselectionHelper.getNext();
}
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,867 Super User 2024 Season 2
Martin Dráb 229,173 Most Valuable Professional
nmaenpaa 101,156