Re: Calling java class from groovy error

2022-05-25 Thread Avijit Bose
Sir, FYI to all... description="${groovy:com.akm.exim.events.DataUtils.getcompanyName(customerId);}" - Pls note that the letter 'c' in 'getcompanyName' was in lowercase as shown above in the description field. But the same

Re: Calling java class from groovy error

2022-05-25 Thread Daniel Watford
Hi Avijit, Please could you follow up with an explanation of what the cause of the problem was and how you solved it. Doing so will add to the ofbiz knowledge pool and will help others who might have similar issues in the future. Thanks, Dan. On Wed, 25 May 2022 at 14:30, Avijit Bose wrote:

Re: Calling java class from groovy error

2022-05-25 Thread Avijit Bose
Dear Sir I got this. thank you On Wed, May 25, 2022 at 4:17 PM Avijit Bose wrote: > > Hello, > > My java class file... > --- > public class DataUtils { > > public static final String module = DataUtils.class.getName(); > > public static String getCompanyName(String format) { >

Calling java class from groovy error

2022-05-25 Thread Avijit Bose
Hello, My java class file... --- public class DataUtils { public static final String module = DataUtils.class.getName(); public static String getCompanyName(String format) { Debug.logInfo("===format=", format); return format; } -- I am