Discussions
Activity
Best Of...
Sign In
·
Register
Home
›
NAV/Navision Classic Client
Howdy, Stranger!
It looks like you're new here. Sign in or register to get started.
Sign In
Register
Quick Links
Categories
Recent Discussions
Activity
Best Of...
Unanswered
Categories
All Categories
73
General
73
Announcements
66.7K
Microsoft Dynamics NAV
18.7K
NAV Three Tier
38.4K
NAV/Navision Classic Client
3.6K
Navision Attain
2.4K
Navision Financials
115
Navision DOS
854
Navision e-Commerce
1K
NAV Tips & Tricks
772
NAV Dutch speaking only
615
NAV Courses, Exams & Certification
2K
Microsoft Dynamics-Other
1.5K
Dynamics AX
317
Dynamics CRM
110
Dynamics GP
10
Dynamics SL
1.5K
Other
993
SQL General
385
SQL Performance
33
SQL Tips & Tricks
34
Design Patterns (General & Best Practices)
Architectural Patterns
10
Design Patterns
5
Implementation Patterns
53
3rd Party Products, Services & Events
1.7K
General
1.1K
General Chat
1.6K
Website
79
Testing
1.2K
Download section
23
How Tos section
259
Feedback
12
NAV TechDays 2013 Sessions
13
NAV TechDays 2012 Sessions
Retrieve Filter Value
Fisherman
Member
Posts:
456
2006-08-03
edited 2006-08-03
in
NAV/Navision Classic Client
Quick question.
What's the syntax for retrieving the filter criteria that was chosen for a specific field in a dataport/report/etc..?
0
Comments
Miklos_Hollender
Member
Posts:
1,598
2006-08-03
Look for GETFILTER in the help.
Downloading the quick reference here in the downloads is also useful.
0
prassl
Member
Posts:
24
2006-08-03
I hope, that this is what you mean:
GETFILTER (FieldRef)
for example
myTextVar := "myFilteredTableField".GETFILTER;
it returns the string as the filter was set before, like it does when the
filter has been set on the record variable.
cheers, m.
... I am not a programmer, I just write code.
0
lessi
Member
Posts:
33
2006-08-03
And don't forget, if necessary, to select the correct FILTERGROUP.
0
Fisherman
Member
Posts:
456
2006-08-03
It is - Thanks.
I was trying to call CurrDataport.GETFILTER (which would make perfect sense to me... I would think that GETFILTER would be a member of the dataport object...) and it was yelling at me.
thanks.
0
Sign In
or
Register
to comment.
Comments
Downloading the quick reference here in the downloads is also useful.
GETFILTER (FieldRef)
for example
myTextVar := "myFilteredTableField".GETFILTER;
it returns the string as the filter was set before, like it does when the
filter has been set on the record variable.
cheers, m.
I was trying to call CurrDataport.GETFILTER (which would make perfect sense to me... I would think that GETFILTER would be a member of the dataport object...) and it was yelling at me.
thanks.