Hi
I have written below code to filter record according to user Location . Problem is when i click next button it displays one more record which i don't want. It should display only 1 record.
https://imgur.com/a/1eh46gp
IF UserSetup.GET(USERID) THEN
BEGIN
UserSetup.TESTFIELD("Location");
IF (UserMgt.GetUserInfo2(USERID) <> '' )THEN BEGIN
FILTERGROUP(2);
SETRANGE("No.",UserMgt.GetUserInfo2(USERID));
FILTERGROUP(0);
END;
END;
Thanks
Answers
Sorry but it's not clear!!
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/
In ScreenShot first image is o.k . When user presses Next Button it displays second image which i dont want to be shown
Thanks