![]() |
#1 |
Участник
|
Even though many of us are experienced developers, the FILTERGROUP record function isn't for each of us a well-known or understood concept. Because of this very reason the following question has been for years part of the quiz I start a course day with.
So get ready … The default lookup page for MyTable is run by the following C/AL code: MyTable.FILTERGROUP(2); MyTable.SETFILTER("No.",’1000..5000&rsquo ![]() MyTable.FILTERGROUP(0); PAGE.RUN(0,MyTable); When the page is displayed, the user applies the table filter 6000..6500. Which records will then be shown? a. No records because the filter will read: (1000..5000)&(6000..6500) b. Records in the range 1000..5000 because the program ignores the filter applied by the user c. Records in the range 1000..6500 because the filter will read (1000..6500) d. Records in the range 6000..6500 because the filter applied by the user overrides the SETFILTER call "OK ... a, b, c, or d?" ... ... I did ask the 13 Slovenian developers I was giving a NAV 2015 update course to the last couple of days. And yes, some knew, but most had a hard time with it. Triggered by this question and the discussion following it, one of the attendants, Darko Grasic (he earns the credits), consulted the msdn help on FILTERGROUP and asked me about FILTERGROUP(-1). FILTERGROUP(-1)? Yep, FILTERGROUP(-1). Follow the link and see. Or just try the following code: WITH Customer DO BEGIN FILTERGROUP(-1); SearchString := '@*ou*'; SETFILTER(Name, SearchString); SETFILTER(Contact, SearchString); SETFILTER(City, SearchString); IF FINDSET THEN REPEAT MESSAGE( 'Customer filtered on %1 %2 %3 %4 %5', SearchString, "No.", Name, Contact, City); UNTIL NEXT = 0; ENDRewriting the code somewhat so it opens a page the result looks like this (including my former MS colleague Hervé ![]() ![]() You get it? So with FILTERGROUP(-1) we now have and OR filter that can spread several columns! ***Это спам-сообщение***. Two things to note
Читать дальше
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|