RE: New Groups not showing up on the drop down list on Group Maintenance screen
Do you have any customization on the Group Maintenance screen & User Maintenance Screen?
If yes, you may have to check the VBA code in those screens.
If no, you may need to analyze this issue in the backend (Sql Server)
Group Maintenance:
This is the PVRec procedure "UserRec_Type_UserId, "G"; 0; 127; 0; 0, used in the Group maintenance. Below is the SQL Query is used in the PVREC procedure.
Select * from UserRec where UserRec.RecType LIKE 'G' and UserRec.UserId LIKE 'XXXXX' order by RecType, UserId
XXXXX- Newly created Group ID.
You can use the above sql query to check whether the newly created group available on the backend(SQL server) or not.
User Maintenance:
This is the PVRec procedure "sm_UserRec_UserId", used in the User Id field of User maintenance. Below is the SQL Query is used in the PVREC procedure.
SELECT * FROM UserRec WHERE UserId LIKE 'XXXXX' AND RecType = 'U' ORDER BY UserId
XXXXX- Newly created User ID.
You can use the above sql query to check whether the newly created user available on the backend(SQL server) or not.
Hope this helps.