Filtering GET Method Using Enum with selected columns

Below URL is my Request URL to fetch Active GL Details

"localhost/.../GLAccounts?%24filter=Status%20eq%20'Inactive'&%24select=UnformattedAccount%2CStatus"

Am getting following Error

"error": { "code": "InvalidParameters",

"message": { "lang": "en-US",

"value": "A binary operator with incompatible types was detected. Found operand types 'Sage.CA.SBS.ERP.Sage300.GL.WebApi.Models.StatusEnum' and 'Edm.String' for operator kind 'Equal'." }

But when i run the Request URL with only filter option i get success response

"localhost/.../GLAccounts?%24filter=Status%20eq%20'Inactive'"

Kindly sort out this issue.