
Hi all,
Is there anyway to enabled a field on Journal Transaction screen for Transaction Import only? I know I probably can do this with customization group, but the persons doing the import is also doing lots of manual entry, so it won't make sense to ask them to use different login just for the improt.
Thanks!
Abby Wang
*This post is locked for comments
I have the same question (0)Hi Abby,
The "Is_TI" function is available in vba customizations to determine if the screen is being run in transaction import mode. As an example, you could put this in your form load event (after editing the control name of course):
If Is_TI = True Then
' Enable field here
Call SetProp (NameOfTheControl, PROP_ENABLED, True)
Else
Call SetProp (NameOfTheControl, PROP_ENABLED, False)
End If
Hope this helps,
Paul Phillips