HI DAW

With reference to cWebObjectHost_mixin.pkg -> function ClientTranslations

There is a piece of code as per:

Code:
        If (Error_Object_Id > 0) ;
            Get Error_Description of Error_Object_Id DFERR_ENTRY_REQUIRED "" to Trans.sV
If should be:

Code:
        If (ghoErrorHandler > 0) ;
            Get Error_Description of ghoErrorHandler DFERR_ENTRY_REQUIRED "" to Trans.sV
IF the error_object_Id is redirected then you will get an error 98 as the Error_Description would most likely not exists in the redirected object.