Search found 80 matches

by gernotlg
Mon Mar 18, 2024 8:45 am
Forum: General discussion and questions about Aware IM
Topic: Browser refresh
Replies: 3
Views: 93

Re: Browser refresh

I know this is not what your post is addressing, however, I wonder.. if there is a security risk here (while we're on the subject of Browser Refresh). I have noticed that when I leave a session idle for a while, then go to use it, it tells you the session has timed out, and I get logged out, like it...
by gernotlg
Sun Feb 04, 2024 10:31 am
Forum: General discussion and questions about Aware IM
Topic: Remove Border on Form Separator
Replies: 3
Views: 5224

Re: Remove Border on Form Separator

Gold. Thanks Jaymer.
by gernotlg
Tue Jan 30, 2024 12:07 am
Forum: General discussion and questions about Aware IM
Topic: Handling Internal Exceptions in a Process
Replies: 2
Views: 5322

Handling Internal Exceptions in a Process

I must be missing something really really basic here, I've searched the forums and docs ( for hours ) but cant seem to find anything. If there is an Internal Exception in a Rule within a Process , how do I catch it ? I know I can use Report Error , and then use Failure Rules ... But a Process doesn'...
by gernotlg
Mon Jan 29, 2024 7:08 am
Forum: General discussion and questions about Aware IM
Topic: Run a Process once when BS is Published
Replies: 2
Views: 396

Re: Run a Process once when BS is Published

ah sweet. Thanks. that'll save a database query every time.
by gernotlg
Sun Jan 28, 2024 10:35 pm
Forum: General discussion and questions about Aware IM
Topic: Run a Process once when BS is Published
Replies: 2
Views: 396

Run a Process once when BS is Published

Is there a way to start a process as soon as a new BS is published ? eg. If I had a process called InitBS System running happily.... BS get published .... InitBS gets executed... system keeps running happily, and initBS never runs again unless a new BS is Published. I have a workaround using the Sch...
by gernotlg
Tue Jan 23, 2024 8:11 am
Forum: General discussion and questions about Aware IM
Topic: Can't use SystemSettings in Scheduling ?
Replies: 3
Views: 736

Re: Can't use SystemSettings in Scheduling ?

Thanks guys. Yeah.. I was gonna so something like what Jaymer said. It's not a priority atm though. Good to know though: .... The scheduler checks jobs every minute. ... So in essence you could just have One process that runs from the scheduler for tasks you wanna have flexibility on, which then con...
by gernotlg
Sun Jan 21, 2024 5:15 am
Forum: General discussion and questions about Aware IM
Topic: So many image files in Tomcat\webapps\AwareIM folder
Replies: 1
Views: 449

So many image files in Tomcat\webapps\AwareIM folder

I've just had a look at my AwareIM\Tomcat\webapps\AwareIM folder, and it is chocka's with image files. These files are copies, (yes.. All copies) , of the 2 logo image files for my 2 tenants. It's like Aware or Tomcat is creating a copy of these in the Tomcat\webapps\AwareIM folder, either for each ...
by gernotlg
Sun Jan 21, 2024 2:46 am
Forum: General discussion and questions about Aware IM
Topic: Can't use SystemSettings in Scheduling ?
Replies: 3
Views: 736

Can't use SystemSettings in Scheduling ?

I take it we can't use SystemSettings to specify a time interval in sheduling ? The following doesn't seem to trigger the event. (Where SystemSettings.PODsAutoEmailTime = a number of minutes ) if NEXT_SEQUENCE_TIME('0.7751654773902943',10,SystemSettings.PODsAutoEmailTime) = 'Yes' AND CURRENT_DATE>=1...
by gernotlg
Fri Jan 19, 2024 1:34 am
Forum: General discussion and questions about Aware IM
Topic: Can we have a REPORT WARNING similar to REPORT ERROR
Replies: 12
Views: 33636

Re: Can we have a REPORT WARNING similar to REPORT ERROR

In case it helps anyone who stumbles across this problem. The solution is setting the BO rule properties so it doesn't run on the server and 'No' form initialisaton. Then you don't get the warning message in the configurator when you're saving. And it doesn't cause a problem when it runs. Your 'Warn...
by gernotlg
Wed Jan 17, 2024 10:26 am
Forum: General discussion and questions about Aware IM
Topic: Heres my tip of the day
Replies: 5
Views: 26404

Re: Heres my tip of the day

why1.JPG
why1.JPG (55.3 KiB) Viewed 21419 times
This is the error when adding a Calendar to a content panel in a VP.

cs is the session object
by gernotlg
Fri Jan 12, 2024 11:50 am
Forum: General discussion and questions about Aware IM
Topic: IN_CONTEXT doesn't work on Session Object ?
Replies: 8
Views: 44786

Re: IN_CONTEXT doesn't work on Session Object ?

If a process is running from the menu, that process has no concept of any user let alone a logged in user. When that process runs, there could be 0 users logged on .... That doesn't make sense. If a process is run from a Menu, the User that selected the menu Item is logged in... so there must be a ...
by gernotlg
Thu Jan 11, 2024 3:35 pm
Forum: General discussion and questions about Aware IM
Topic: How to check (in a Rule) if a Scheduler job is running?
Replies: 6
Views: 10415

Re: How to check (in a Rule) if a Scheduler job is running?

BTW... you should use ...

Code: Select all

LoggedInSystemUser.AccessLevel = 'System'
Because if you have other userBO's (for eg. ClientUser) then LoggedInRegularUser wont work if you have a LoggedInClientUser
by gernotlg
Thu Jan 11, 2024 2:44 pm
Forum: General discussion and questions about Aware IM
Topic: IN_CONTEXT doesn't work on Session Object ?
Replies: 8
Views: 44786

Re: IN_CONTEXT doesn't work on Session Object ?

Found it. Search is great. https://www.awareim.com/forum/viewtopic.php?p=47586#p47586 great. Thanks.. I'll keep that one in mind: if LoggedInRegularUser.AccessLevel='System' And search isn't THAT great. It would be great if we could search for a string. I search and search and search... and there's...
by gernotlg
Thu Jan 11, 2024 2:34 pm
Forum: General discussion and questions about Aware IM
Topic: IN_CONTEXT doesn't work on Session Object ?
Replies: 8
Views: 44786

[SOLVED] Re: IN_CONTEXT doesn't work on Session Object ?

In case anyone needs a workaround for this.. I did some more tests using Schedular & Menu initiated Processes, and used my AdminLogBO to record the results. Results: ( Solution/Workaround Below ) From BOTH Scheduled (No User Logged in) processes and Processes run from a Menu (User Logged in): IN_CON...
by gernotlg
Thu Jan 11, 2024 12:02 pm
Forum: General discussion and questions about Aware IM
Topic: IN_CONTEXT doesn't work on Session Object ?
Replies: 8
Views: 44786

IN_CONTEXT doesn't work on Session Object ?

Is there a way to determine if the 'Session Object' is in CONTEXT ? As the below code returns False even when a user is logged in (in which case the session object should be in context): where cs is the name of the session object...  IF IN_CONTEXT('cs') = 'Yes' Then .. IF IN_CONTEXT('LoggedInSystemU...