Search found 85 matches

by rob_h7
Fri Nov 22, 2019 12:16 am
Forum: General discussion and questions about Aware IM
Topic: Just because IMAGES can be in FS, does that mean we should?
Replies: 3
Views: 5227

Re: Just because IMAGES can be in FS, does that mean we shou

Agree with ACDC

Wait until you have 900,000 records all with a small document attached and you need to make a change to that object. Publishing usually times out as it tries to update the table, hitting that table in any way in your app slows everything down to a crawl, it's just not usable.
by rob_h7
Thu Nov 21, 2019 11:55 pm
Forum: General discussion and questions about Aware IM
Topic: FR: URL opens (already logged in) page and runs a process
Replies: 12
Views: 21493

Re: FR: URL opens (already logged in) page and runs a proce

YEP +1 a url with firstcommand & startprocess2 allows you to pass a BO and an id so you can easily get an object in context - but to have it look for an active session in your tabs & then run the first command, rather than open a new tab with a new session and ruin your other session - that would be...
by rob_h7
Wed Feb 13, 2019 6:56 am
Forum: General discussion and questions about Aware IM
Topic: Google map of a group of addresses
Replies: 19
Views: 29069

Re: Google map of a group of addresses

Hi Marks, Bailey I sent you a bsv. Mark F - from what I remember: Form - nice, quick, good for displaying one marker - i.e. a map cell on a Customer form which pins them on the map. Presentation - a bit rigid in the display (not good if you want dynamic resizing), but allows you to define multiple o...
by rob_h7
Thu Nov 01, 2018 6:38 am
Forum: General discussion and questions about Aware IM
Topic: Is there a way to change the name of your Business Space?
Replies: 4
Views: 6220

Re: Is there a way to change the name of your Business Space

You can just change the tab title.

On your VP add this to the render script of a content panel (I always use one from the Main frame)

document.title="Whatever your new name is";
by rob_h7
Mon Aug 06, 2018 1:38 am
Forum: General discussion and questions about Aware IM
Topic: Do not check referred - Change to the default behaviour
Replies: 1
Views: 10603

Do not check referred - Change to the default behaviour

Can we get the 'Advanced' tab on the Business Object rules expanded by default please, & if possible, have this tick box default to Yes http://hatchit.com.au/emailimages/forum/donot.jpg More often than not we don't want referred objects being checked, found out the hard way that when a client loaded...
by rob_h7
Tue Mar 20, 2018 2:48 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] Added a shortcut and got this runtime error. Weird
Replies: 4
Views: 7500

Re: Added a shortcut and got this runtime error. Weird

Hey Jaymer

It's just crap data. Was the relationship multi allowed but then changed to not? It happens when there's a single relationship but there's multiple records inserted.

So my guess is one of your Lead records has managed to get multiple Tenants inserted.
by rob_h7
Tue Mar 13, 2018 6:52 am
Forum: General discussion and questions about Aware IM
Topic: Am I using the LIST function wrong?
Replies: 5
Views: 13038

Re: Am I using the LIST function wrong?

Hi jaymer - the below will work for you writing into an attribute with a / delimiter:

Code: Select all

 parent.childlist=LIST_LINE(parent.child_link,' ','/','Name') 
Image
by rob_h7
Thu Feb 15, 2018 5:08 am
Forum: General discussion and questions about Aware IM
Topic: Modeless windows - hide the x
Replies: 2
Views: 4825

Re: Modeless windows - hide the x

Yep, that works pretty good.

Thanks mate!
by rob_h7
Wed Feb 14, 2018 3:49 am
Forum: General discussion and questions about Aware IM
Topic: Modeless windows - hide the x
Replies: 2
Views: 4825

Modeless windows - hide the x

Hey crew - anyone know a script I could use to hide the x on modeless windows to prevent users from closing off. We have processes that kick off on close buttons, but aware doesn't recognise it as a 'close' button - so it does nothing for us. http://hatchit.com.au/emailimages/forum/closex.jpg Thanks...
by rob_h7
Wed May 03, 2017 2:03 am
Forum: General discussion and questions about Aware IM
Topic: Process Name to be stored and used dynamically from DB?
Replies: 12
Views: 21388

Re: Process Name to be stored and used dynamically from DB?

Yeah you can use it in a process rule.

START PROCESS BONAME.AttributeName (the attribute with the process name in it).
by rob_h7
Thu Apr 06, 2017 8:50 am
Forum: General discussion and questions about Aware IM
Topic: Multi page PDF not displaying in tablet
Replies: 1
Views: 3589

Multi page PDF not displaying in tablet

Has anyone come across this before? We have a PDF that gets generated which spans multiple pages, it works fine in a browser using the built in document viewer functionality, but when it's accessed via a browser on a mobile device, it only shows the first page & seems to be displaying it as an image...
by rob_h7
Fri Mar 31, 2017 1:09 am
Forum: General discussion and questions about Aware IM
Topic: STRIP HTML TAGS FOR EXPORT
Replies: 4
Views: 9118

Re: STRIP HTML TAGS FOR EXPORT

Here you go...this should work.

Notes.MessageClean=REPLACE_PATTERN(Notes.MessageHTML, '<(.|\n)+?>', ' ')