Filters Problem

chandru
chandru Member Posts: 15
edited 2004-02-27 in Navision Attain
hi friends.,

I am facing peculiar problem in which, i am applying filters for the users based on their status. it is working fine. but the user always have the option to remove the filter by pressing showall button or removing filter.

is there anyway that i could restrict the users from removing filters by pressing showall button and removing filters.please help me out

lou
chandru
You cannot discover new ocean unless you have the courage to lose sight ofthe shore.

Comments

  • Louis
    Louis Member Posts: 78
    Look at FILTERGROUP in the online help.
    Louis
  • jsrark
    jsrark Member Posts: 50
    Or remove their permissions to change filters.
    Object Type = System, ID = 3220
  • Sbhat
    Sbhat Member Posts: 301
    Hi,

    Put the filter on OnOpenForm and OnAfterGetRecord. Even showall wont work.

    Regards
    Suresh.
  • craigbarbs
    craigbarbs Member Posts: 60
    Hi Suresh

    You can use filter groups.


    FILTERGROUP(2);
    SETRANGE("Responsibility Center",UserMgt.GetSalesFilter());
    FILTERGROUP(0);

    You should read up on this as they can be useful from time to time.