Search found 723 matches

by himanshu
Tue Mar 08, 2022 5:54 am
Forum: General discussion and questions about Aware IM
Topic: Document template tags
Replies: 2
Views: 3066

Re: Document template tags

Hi Steve,

Had you tried using UserDefined Document as HTMl? if not then you can define your html template at runtime and use the same template while sending an email.

And shortcut are working nicely if object is available in the context while generating the template.
by himanshu
Sat Jan 01, 2022 5:48 am
Forum: General discussion and questions about Aware IM
Topic: Anyone used IMGIX from Aware?
Replies: 8
Views: 2937

Re: Anyone used IMGIX from Aware?

ok let me check and get back to you in sometime.
by himanshu
Sat Jan 01, 2022 12:36 am
Forum: General discussion and questions about Aware IM
Topic: Anyone used IMGIX from Aware?
Replies: 8
Views: 2937

Re: Anyone used IMGIX from Aware?

Exactly which product or service you want to integrate.
by himanshu
Mon Dec 27, 2021 12:35 pm
Forum: General discussion and questions about Aware IM
Topic: Season Greetings from Awaresoft
Replies: 5
Views: 2109

Re: Season Greetings from Awaresoft

Happy Holidays to all!!
by himanshu
Sat Dec 18, 2021 9:48 am
Forum: General discussion and questions about Aware IM
Topic: Rating Field 'Stars'
Replies: 1
Views: 1092

Re: Rating Field 'Stars'

a long time we have create something similar.. might help

https://awareimdevelopers.com/tipsntric ... ng-jquery/
by himanshu
Mon Dec 13, 2021 7:44 am
Forum: General discussion and questions about Aware IM
Topic: Are we safe from log4j vulnerability
Replies: 12
Views: 22794

Reasons to upgrade from Log4j 1.x to Log4j 2

Might be useful to read.. Update: since August 2015, Log4j 1.x is officially End of Life and it is recommended to upgrade to Log4j 2. Update 2: Log4j 1.2 is broken in Java 9. Community support: Log4j 1.x is not actively maintained, whereas Log4j 2 has an active community where questions are answered...
by himanshu
Sun Dec 12, 2021 2:38 pm
Forum: General discussion and questions about Aware IM
Topic: Are we safe from log4j vulnerability
Replies: 12
Views: 22794

Re: Are we safe from log4j vulnerability

Latest AwareIM version uses Java 12.x and I do not found any harm to be updated with latest lib. Apache Log4j 2 is an upgrade to Log4j that provides significant improvements over its predecessor, Log4j 1.x, and provides many of the improvements available in Logback while fixing some inherent problem...
by himanshu
Sat Dec 11, 2021 5:43 pm
Forum: General discussion and questions about Aware IM
Topic: Are we safe from log4j vulnerability
Replies: 12
Views: 22794

Re: Are we safe from log4j vulnerability

Yes, We also looking into this and upgrading the necessary jars files. It looks like aware currently shipping a quite old version (1.2) and we are upgrading our system with latest 2.15 (which include this bug fix too). there are two jars which need to placed under lib folder. log4j-api-2.15.0.jar lo...
by himanshu
Thu Nov 18, 2021 9:32 am
Forum: General discussion and questions about Aware IM
Topic: stored proc returning table show in grid
Replies: 5
Views: 2349

Re: stored proc returning table show in grid

I do not understand what you mean by dynamic table/column... if you looking to create table on fly and want to access using AwareIM then I do not think it is currently not possible without configuring BSV each time.
by himanshu
Thu Nov 18, 2021 9:30 am
Forum: General discussion and questions about Aware IM
Topic: SMS Options
Replies: 3
Views: 1751

Re: SMS Options

Both are nice products.

We have implemented both in our products. Twilio has number of ways to integrate into the app and also lot more features compare to clickatell. Basically, if you have a long term plan and heavy usage then I recommend Twilio.
by himanshu
Tue Nov 16, 2021 6:56 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] Does anyone else not like this error message?
Replies: 4
Views: 5170

Re: Does anyone else not like this error message?

Wow! just learned something new, will give a try great.
by himanshu
Tue Nov 16, 2021 6:55 am
Forum: General discussion and questions about Aware IM
Topic: stored proc returning table show in grid
Replies: 5
Views: 2349

Re: stored proc returning table show in grid

Hi, Yes you can use any external table and show into AwareIM Grid but there are some restrictions related to standard features of grid like filter and sort. Paging will work. If you using external table there is no requirement to have BASTIMESTAMP or BASVERSION col. If you create table using BO insi...
by himanshu
Mon Nov 15, 2021 4:30 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] Does anyone else not like this error message?
Replies: 4
Views: 5170

Re: Does anyone else not like this error message?

This is a server side hardcoded message.

I suggest we should have a dynamic way to put custom message else default above message will be fine.

Vlad could put such message settings and few others on AwareIM config tool so people can show what ever they like in many cases.
by himanshu
Wed Oct 20, 2021 5:00 pm
Forum: General discussion and questions about Aware IM
Topic: Complex Query Conundrum
Replies: 8
Views: 3649

Re: Complex Query Conundrum

:idea:
FIND Store WHERE (EXISTS Agency WHERE (Store IN Agency.pm_Stores AND Agency IN Customer.pm_Agency))
by himanshu
Fri Sep 10, 2021 3:28 pm
Forum: General discussion and questions about Aware IM
Topic: How Create a query Group by Month DOB and Sort by Date from DOB
Replies: 8
Views: 5358

Re: How Create a query Group by Month DOB and Sort by Date from DOB

a quick solution to achieve is keep both values in two columns MONTH_TEXT and MONTH

attributeMonth= MONTH(CustomDate)
= MONTH_TEXT(attributeMonth)

hide the attributeMonth col in grid query and sort order by attributeMonth.

I think this way you have what you looking.. :idea: