Forum Discussion
omatzura
18 years agoSuper Contributor
Hi John,
I think you need to wrap your method in a class instead, something like
package john.overbaugh.utils
public class DBUtils
{
def static CleanUpPerson( AccountID, log )
{
...
}
}
which you can then call with
john.overbaugh.utils.DBUtils.CleanUpPerson( "123", log )
Hope this helps!
regards,
/Ole
eviware.com
I think you need to wrap your method in a class instead, something like
package john.overbaugh.utils
public class DBUtils
{
def static CleanUpPerson( AccountID, log )
{
...
}
}
which you can then call with
john.overbaugh.utils.DBUtils.CleanUpPerson( "123", log )
Hope this helps!
regards,
/Ole
eviware.com