Hi created a new dexterity window with search box and the scrolling window
The search field in the scrolling window was index Non-Unique Index.
Can somebody tell me where I am making mistake because it is not select the record
if empty('(L) EmpSearch' of window EmployeeSearch) then
warning "Please select a record first.";
else
set 'Frstname' of table EmpRate to '(L) EmpSearch';
get table EmpRate by number 1;
{run script field 'Redisplay Button' of window 'EMP_LOOKUP';}
fill window SCR_Employee from current by number 1;
focus 'Frstname' of window SCR_Employee ;
run script field 'Redisplay Button' of window 'EMP_LOOKUP';
end if;
*This post is locked for comments