However,

We are doing a domain migration ..

For example we are using:

code:
IF ingroup("DomainA\Accounting") or ingroup ("DomainB\Accounting")
; - true condition
ELSE
; - false condition
ENDIF

Hmmm... Maybe you could try:
code:
IF 1 = ingroup("DomainA\Accounting") or 1 = ingroup ("DomainB\Accounting")
; - true condition
ELSE
; - false condition
ENDIF

Or...
code:
IF (1 = ingroup("DomainA\Accounting")) or (1 = ingroup ("DomainB\Accounting"))
; - true condition
ELSE
; - false condition
ENDIF

Thanks,

Kent

[ 18. October 2002, 07:35: Message edited by: kdyer ]
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's