0
Search Button Script
Hi need a button script to search the Code on Search Code field text.
6 replies
-
do you mean like this?
let xRef := 'Search Code';
do as server
select 'your tablename here' where Code like xRef
end -
is "code" one of those choice fields?
if so might need text if front of code like below
let xRef := 'Search Code';
do as server
select 'your tablename here' where text(Code) like xRef
end -
With the code in a button, nothing will happen...
You need to put this code in a view.
You could also change the View-code to:
let xRef := 'Search Code';
select Activities [ not xRef or text(Code) like xRef]
You can remove the button then
Content aside
- Status Answered
- 1 yr agoLast active
- 6Replies
- 125Views
-
3
Following