/* Copyright(c) 1995 by SAS Institute Inc., Cary, NC USA */ init: call notify('.','_GET_WIDGET_','table',tabid); /* Set up an instance method so that select goes to the */ /* data table model scl to display the data form entry. */ call send(tabid,'_SET_INSTANCE_METHOD_','_SELECT_', 'mkt.contacts.select.scl','select'); /* Set up the column name to do the where against. */ call send(tabid,'WHERE_COLUMN','LNAME'); call send(tabid,'WHERE_OPERATOR','LIKE'); call send(tabid,'WHERE_ENDING_TEXT','%'); return;