web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Finance | Project Operations, Human Resources, ...
Suggested Answer

Hide two display methods in on-hand list grid

(3) ShareShare
ReportReport
Posted on by 31
I want to hide two display methods in on-hand list grid (ordered in total - total available) how to do it?
 
Categories:
I have the same question (0)
  • Suggested answer
    Waed Ayyad Profile Picture
    9,167 Super User 2026 Season 1 on at
     
    You can hide it either from personalization or from visual studio.
     
     
    Personalization: Right click on the column and chooses hide this column option, then you can save the view and publish it to the other users. Check the following blog: D365_Personalization_views
     
    Visual studio: You need a developer to create an extension of the form and hide the columns.
     
     

    Thanks,

    Waed Ayyad

    If this helped, please mark it as "Verified" for others facing the same issue

     
  • Suggested answer
    André Arnaud de Calavon Profile Picture
    305,708 Super User 2026 Season 1 on at
    Hi,
     
    Next to the options provided by Waed, you can also achieve it using security. Which solution to use depends on your actual requirements. Should it be strictly hidden for anyone? Is there any condition when to have these fields available or not? As you didn't provide much context, we don't know the background of your question. 
     
    PS @Waed Ayyad, the link you provided is not a URL to a blog. Can you review it?
    At least, standard documention for saved views can be found here: Saved views - Finance & Operations | Dynamics 365 | Microsoft Learn
     
     
     
  • Sohaib Cheema Profile Picture
    49,668 Super User 2026 Season 1 on at
    Persolnalization may do funny thing on this form as the columns are auto-hided and shown using the standard filter (a combobox). you may want to look what MS is doing behind it and add your logic in the same place using extensions (in case persolization creates the issues)
  • Waed Ayyad Profile Picture
    9,167 Super User 2026 Season 1 on at

    Hi, 

    Is your issue resolved? If yes, mark the answers that helped you as verified. 

    Thanks,

    Waed Ayyad

  • Suggested answer
    Shaluma Profile Picture
    161 on at
    Hi,

    Instead of personalization, create a form extension:
     
    First → Open the form InventOnhandItem in VS, Find the ComboBox control and its selectionChanged() methodvUnderstand exactly which control names MS uses for those columns Create a form extension and override the same method Call next selectionChanged() first, then apply your hide logic after
    ComboBox selectionChanged
    [ExtensionOf(formStr(InventOnhandItem))]
    final class InventOnhandItem_Extension
    {
        // Find the combobox control name from standard form
        public void selectionChanged()
        {
            next selectionChanged(); 
    
            FormGridControl grid = this.design().controlName('LineGrid');
    
            // Hide the two display method columns
            grid.controlName('InventSum_OrderedInTotal').visible(false);
            grid.controlName('InventSum_AvailOrdered').visible(false);
        }
    }

    If the issue still persists after following them, please raise a query, and we will be happy to support you further.

    Thanks,
    If you found it helpful, please consider marking it as verified — it may be useful for others in the future!
     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Women in Power Builds Momentum

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Finance | Project Operations, Human Resources, AX, GP, SL

#1
Abhilash Warrier Profile Picture

Abhilash Warrier 565 Super User 2026 Season 1

#2
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 487 Super User 2026 Season 1

#3
Subra Profile Picture

Subra 413

Last 30 days Overall leaderboard

Product updates

Dynamics 365 release plans