Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Par2: Multiple field range limit 1999-12-01 -- Anton Novikov > I would like to do a range with the 3 fields. I know that I can use Field1
> as a range and Field2 + Field3 as a Filter, but I would like to do the range
> with the 3 fields and not use the Filter .
Actually all range limits are converted to filters :)
1. You can do it in BRWxx.ApplyFilter before the parent call:
BRWxx.View{prop:Filter} = '(Field1=Something) AND (Field2=Something) AND
(Field3=Something)'
RETURN
Also you can use MESSAGE(BRWxx.View{prop:filter},'filter') to look at the
filter expression
2. Also you can do it in BRWxx.SetSort method, after parent call:
SELF.SetFilter('(Field1=Something) AND (Field2=Something) AND
(Field3=Something)','1')
Don't forget to bind appropriate vars.
Today is December 3, 2024, 11:41 am This article has been viewed 35217 times.
|
|