Search found 1460 matches

by PointsWell
Thu Jun 07, 2018 12:26 pm
Forum: General discussion and questions about Aware IM
Topic: Reviews on Capterra and G2Crowd
Replies: 3
Views: 5145

Re: Reviews on Capterra and G2Crowd

I have lots of good things to say about AIM. I’ve also tried to create a page on the open encyclopaedia that starts with W but the challenge is the lack of other references to AIM around the world (ie referencable resources)

I would’ve moved to AIM much sooner if there had been a W’pedya page.
by PointsWell
Thu Jun 07, 2018 12:05 am
Forum: Wish List
Topic: 3-state option for Yes/No please
Replies: 2
Views: 10882

Re: 3-state option for Yes/No please

The null value of Yes/No can be problematic but for different reasons to your testing. if Yes/No attribute <> ‘No’ This is only testing if the attribute does not equal one state: NOT zero 1 is NOT zero, but NULL is also NOT zero. If you want to search for Yes values and you allow NULL as a response ...
by PointsWell
Thu May 31, 2018 2:43 am
Forum: General discussion and questions about Aware IM
Topic: Form and Specific Panels
Replies: 0
Views: 3163

Form and Specific Panels

As a consequence of the recent changes to that allow full page queries in forms, I am minded to reduce the not insignificant complexity of my app by reformatting the homes screens. Before I head off down that rabbit hole though, I wanted to ask if anyone had any suggestions on providing a consistent...
by PointsWell
Tue May 29, 2018 11:36 am
Forum: General discussion and questions about Aware IM
Topic: Hosting Aware across Sub Domains
Replies: 2
Views: 3664

Re: Hosting Aware across Sub Domains

Sub domain redirections would achieve this. You need records in you DNS.
by PointsWell
Tue May 29, 2018 5:34 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] AS_NUMBER to Integer
Replies: 2
Views: 3102

Re: AS_NUMBER to Integer

Jaymer wrote:a regular expression can also search for 0 or more 0's only at the beginning of a line.
Doh Good ol' uncle Regex to the rescue again.

I used the following:

Code: Select all

REPLACE_PATTERN(PhoneRecords.Number, '\A[0]', '')
by PointsWell
Tue May 29, 2018 2:42 am
Forum: General discussion and questions about Aware IM
Topic: Any suggestions for designing a "Drip" email campaign?
Replies: 5
Views: 5071

Re: Any suggestions for designing a "Drip" email campaign?

I would set it up as BOs: Campaign Prospects (as distinct from Customer) TargetProspect - distinct object would allow a Prospect to be targeted multiple times for different campaigns Customer Campaign may have one or more Prospects - Campaign.om_TargetPropspects.ps_Prospects Campaign.StepNo = 1..n I...
by PointsWell
Tue May 29, 2018 2:19 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] AS_NUMBER to Integer
Replies: 2
Views: 3102

[SOLVED] AS_NUMBER to Integer

If you take a large number in a text field and then use AS_NUMBER to convert it to a number, the number that is output is floating point not an integer. Is there a way to convert that floating point number to an integer? Or better convert the text to an integer from the outset? What is actually bein...
by PointsWell
Tue May 29, 2018 2:13 am
Forum: General discussion and questions about Aware IM
Topic: Any suggestions for designing a "Drip" email campaign?
Replies: 5
Views: 5071

Re: Any suggestions for designing a "Drip" email campaign?

Do I want to go ahead and create all 500 OutgoingEmail recs NOW, and mark 400 of them with a future DeliveryDate (spread out a week apart)? Because now I have the set of 100 recs available. I can run a scheduled job each morning looking for Unsent Emails with a DeliveryDate = TODAY. From a business...
by PointsWell
Tue May 29, 2018 1:39 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] REPLACE_PATTERN & Multiple Patterns
Replies: 4
Views: 5842

Re: REPLACE_PATTERN & Multiple Patterns

It seems that you can't nest REPLACE_PATTERN What do you mean by that? I have used something like the following: BO.NewAttr = REPLACE_PATTERN(REPLACE_PATTERN(BO.OldAttr, 'find1', 'replace1'), 'find2', 'replace2') You still need multiple REPLACE_PATTERN statements, but they are inside each other and...
by PointsWell
Tue May 29, 2018 1:37 am
Forum: Tips and Tricks
Topic: REPLACE_PATTERN & Multiple Patterns
Replies: 0
Views: 5546

REPLACE_PATTERN & Multiple Patterns

This tip is courtesy of BobK and was a response to a question I had of how to remove multiple non numeric characters from a text field that is acting as a numeric field (in this case a telephone number with various notational characters e.g. 1 (555) 333-1212 to get 155221212) https://www.awareim.com...
by PointsWell
Tue May 29, 2018 1:28 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] REPLACE_PATTERN & Multiple Patterns
Replies: 4
Views: 5842

Re: REPLACE_PATTERN & Multiple Patterns

More to a solution to your problem: If you need to remove all non-numeric characters, you only need 1 REPLACE_PATTERN like: BO.JustNumbers = REPLACE_PATTERN(BO.AlphaNumeric, '[\D]', '') \D matches any non-digit It's little nuggets like this that make this forum such a powerful resource! And saves t...
by PointsWell
Mon May 28, 2018 6:26 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] REPLACE_PATTERN & Multiple Patterns
Replies: 4
Views: 5842

[SOLVED] REPLACE_PATTERN & Multiple Patterns

In my continuing hell of international telephone numbers and notation habits I am now trying to strip out all the crud that I have to allow people to add here This means I have to remove ' ', '(', ')' and '-'. It seems that you can't nest REPLACE_PATTERN so is there another way, other than multiple ...
by PointsWell
Fri May 25, 2018 10:37 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] REGEX Pain / Problem
Replies: 6
Views: 8199

Re: REGEX Pain / Problem

BobK wrote:You were SOOOOOO close.
BobK that fixed it. Thanks!

Wonder what’s going wrong with the example that’s copied from the user guide?
by PointsWell
Fri May 25, 2018 10:34 pm
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] REGEX Pain / Problem
Replies: 6
Views: 8199

Re: REGEX Pain / Problem

Jaymer wrote:.

Would be nice if you could do:
If Lead.Country = 'US' THEN Mask='999-999-9999'
If Lead.Country = 'GB' THEN Mask='99-99-9999-999' (or whatever they use)
REST is your friend https://numverify.com
by PointsWell
Fri May 25, 2018 10:35 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] REGEX Pain / Problem
Replies: 6
Views: 8199

Re: REGEX Pain / Problem

Thanks, I’d checked out your example when I was trying to figure this out, but my issue is that users are entering spaces between numbers, parentheses round groups of numbers etc etc.

Which is why I was trying to get [\d .()-] to work...