How Do I Customize New List Elements?

When you use '+' button on a grid or scroll you get a new, empty list element. If you want to customize the object, define a function in the TabMenu's user exit file named initializeNewElement_​<LIST_​NAME>(newElement).

Example:

function initializeNewElement_​ENRL_​LOG(newElement) {
    newElement.set('ENRL_​LOG_​TYPE_​FLG', 'USER');
    newElement.set('USER_​INFO', parent.model.getValue('CURRENT_​USER_​INFO'));
}