Skip to main content

Dynamic Filtering and Filter Creation during for multiple record selections in Page Lookup in NAVISION

 


Introduction:

I have been working in NAV/BC for a couple of years to master the craft and to some extent all of us are successful.
But a single scenario/ user error/misunderstanding can create a big question mark.
This blog is mainly divided into two parts
1. Why does NAV/BC support few small things which are not supported when analyzing the data?
2. Workaround and its implications.

So the use case is the NAV/BC Administrator creates an Item with the number in the 'ABC-1039-(A)'. He and other users do all the manufacturing, trading activities.
When he tries to run reports having Item No. Lookup using Table Relation, he is given the following error.


Pre-requisites:

Microsoft Dynamics NAV / BC

References:

https://community.dynamics.com/nav/b/moxie4nav/posts/convert-setselectionfilter-to-setfilter

Demonstration:

1. Checking if this scenario is supported by spinning up some test code. Turns out when I hard-code Item No in SETFILTER, the report is working precisely as expected.

1
"Item".SETFITLER("No.,'TLR0001206A(P)');


2. Checking if this issue can be resolved if I get Item No. through a code-based lookup. Also, this could be done using running the page in Runmodal with  LookupMode. Refer code below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
Item No. - OnLookup(VAR Text : Text) : Boolean
CLEAR(Rec_Item);
CLEAR(Page_ItemList);
IF Rec_Item.FINDSET THEN BEGIN
  Page_ItemList.SETTABLEVIEW(Rec_Item);
  Page_ItemList.LOOKUPMODE(TRUE);
  Page_ItemList.SETRECORD(Rec_Item); 
  IF Page_ItemList.RUNMODAL = ACTION::LookupOK THEN BEGIN
    Page_ItemList.SetSelection(Rec_Item); 
     IF Rec_Item.FINDSET THEN    
     Text := Rec_Item."No.";
  END;
END;
EXIT(TRUE);

3. Here comes the fun bit, using LookupMode, can I  select multiple records and create a dynamic filter.
I know the append primary key with ' |  ' in the format stated by Franz (https://community.dynamics.com/nav/b/moxie4nav/posts/convert-setselectionfilter-to-setfilter) as I was following this for quite some time. Just that this is not an optimized version to get the filter.

For example, if I select ID1, ID3, and ID10-ID50 and if I get with the method of appending with | and creating filter will be out of scope as we are limited with field length in NAV. Instead, the filter should be  ID1| ID3 | ID10..ID50

Turns out there is a Codeunit 46 FilterManagement which allows you to pass record selection as var parameter and spits out the dynamic filter as per the example.

This FilterManagement has only filter selection for important masters such as Customers, Vendors, Items, etc. If you want for any tables other than you might have to create an appropriate method. Refer source code below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
Item No. - OnLookup(VAR Text : Text) : Boolean
CLEAR(Rec_Item);
CLEAR(Page_ItemList);
IF Rec_Item.FINDSET THEN BEGIN
  Page_ItemList.SETTABLEVIEW(Rec_Item);
  Page_ItemList.LOOKUPMODE(TRUE);
  Page_ItemList.SETRECORD(Rec_Item); 
  IF Page_ItemList.RUNMODAL = ACTION::LookupOK THEN BEGIN
    Page_ItemList.SetSelection(Rec_Item); 
     IF Rec_Item.FINDSET THEN    
     Text := CU_SelectionFilterMgmt.GetSelectionFilterForItem(Rec_Item);
  END;
END;
EXIT(TRUE);

Now, that we have the filter in a variable, we can simply apply SETFILTER ( "No.", Itemfiltervar) and it works like a charm.

Multi Selecting of the Items
Dynamics filter created by Filter Management Codeunit


Spoiler alert: Customer ended up discarding this and took the HIGHWAY of changing all item numbers and transactions 😆

Conclusion:

This blog is merely one step progress over the creation of advanced filters. Although this blog helps optimize filter creation in NAVISION / Business Central.
The thing that surprised me the most was the creation of Item with '(' in Item No throws no error but using it in Filter throws an error 😂 and what could be a possible workaround for the same.

I hope this helps! Cheers.

Comments

Popular posts from this blog

Something went wrong. An Error occurred - Error Resolution

Introduction: With the installation of NAV 2018 or BC On-premise, I have observed that when creating New Server Instance and New WebServer Instance, you will get the error 'Something went wrong. An Error occurred '. I referred to the community questions below but didn't find my resolution. Hence, I decided to write this blog. Pre-requisites: Microsoft Dynamics Business Central - On-Premise / NAV 2018 Understanding of Business Central Authentication  Books & References: https://community.dynamics.com/nav/f/microsoft-dynamics-nav-forum/261301/nav-2018-web-client-an-error-has-occurred https://community.dynamics.com/business/f/dynamics-365-business-central-forum/421987/error-something-went-wrong-an-error-has-occurred-azure-ad-tenant Demonstration: 1. Creation of NAVServerInstance: In order to create NAVServerInstance, you can either add the Server Instance through Business Central Administration or Powershell command. Add Instance - Business Central Administration Add Insta...

How to resolve 'Edit in Excel' issues

  Introduction: As you know that D365 BC offers Edit in Excel functionality. But manipulating or customizing such a  standard functionality is difficult as there is not much control available. Hence, solving issues is also a difficult task. I will be resolving the issue for this specific issue, however, the debugging steps are similar. Pre- requisites : ODATA V4 Connectivity tool for Webservices Microsoft Dynamics 365 Business Central Books & References: https://community.dynamics.com/business/f/dynamics-365-business-central-forum/448226/issue-with-excel-add-in/ Demonstration: The way Edit in Excel works is that for a given page a Webservice is created adding PageID and Page Name. Hence, there are some Webservice connectivity checks in place to validate. 1. Edit in Excel Custom Action on the page: If you are adding Edit in Excel Action on the page, please ensure that you are providing appropriate PageName and Filter criteria as Webservice is using these parameters Refer Ed...

Installing LS Central - POS on local machine

Introduction: In this blog, I'm attempting to capture the LS Central - POS installation process on Local Machine. This blog has nothing to do LS Central - Server Setup for POS. LS Retail / LS Central - On Premise POS Pre- requisites : LS Central Installed on Server SSL Setup on LS Server (https://www.olisterr.tech/2020/03/how-to-setup-navuserpassword-with-ssl.html) LS - POS Installer Business Central - On Premise Installer Demonstration: Once your LS Retail / LS Central POS is setup on the main server. Just prior to Go-Live, you will actually have to install this POS on multiple systems and connect these POS to the main server with LS Retail / LS Central. 0.Preparation: Prior to actually installing Business Central On-Premise Windows Client, you need to make sure that you're able to ping the target with the correct Port number. For this I made use of PS-Ping tool.  PSPing - IP Address: Port If you're unable to PS-Ping the correct IP with Port number, simply check the Advan...