Search found 545 matches

by BobK
Wed Nov 03, 2021 2:44 pm
Forum: General discussion and questions about Aware IM
Topic: Clarification on indexing
Replies: 4
Views: 2046

Re: Clarification on indexing

The problem is that I can't see where in the configuration tool to set the attribute on B that points to A (a foreign key basically) to be indexed. For other types of attributes, there is a check box called 'Indexed', but I can't find it for this one. AwareIM automatically creates and maintains the...
by BobK
Tue Oct 05, 2021 6:32 pm
Forum: General discussion and questions about Aware IM
Topic: XML Import - Trouble with single instance of nested object
Replies: 2
Views: 2781

Re: XML Import - Trouble with single instance of nested object

I was able to get this to work and here are the changes I made to do it: 1) In your CD BO, change the attribute name LOCATIONS to LOCATION 2) Even though you CD BO does not have any rules, add WITH VALIDATION to your IMPORT statement 3) In the XML stored in SystemSettings.xmlstring, remove all <LOCA...
by BobK
Fri Sep 24, 2021 1:48 pm
Forum: General discussion and questions about Aware IM
Topic: Changing date only in timestamp
Replies: 5
Views: 4055

Re: Changing date only in timestamp

To expand on PointsWell and rocketman answers. The following is from the AwareIM User Guide and describes the Parameters for the TIMESTAMP function. The bold part is a sweet little gem that is easy to overlook that I just found myself: An integer constant indicating day (1-31), an integer constant i...
by BobK
Thu Sep 16, 2021 3:09 pm
Forum: General discussion and questions about Aware IM
Topic: IS_NUMBER / IS_STRING
Replies: 1
Views: 2292

Re: IS_NUMBER / IS_STRING

You can use MATCHES with a Reg Ex to test for all numbers.

Code: Select all

If MATCHES(BO.Attribute, '[0-9]*') = 'Yes' Then
BO.Nbr = AS_NUMBER(BO.Attribute)
by BobK
Fri Aug 20, 2021 5:03 pm
Forum: General discussion and questions about Aware IM
Topic: How can I easily extract a value from a XML/JSON structure?
Replies: 7
Views: 5278

Re: How can I easily extract a value from a XML/JSON structure?

2) Is it easier, harder, the same to do this with a JSON string? My first thought was that the search would be easier in XML because there are XML tags before and AFTER the searched for value. But, as I typed my previous post I realized that after everything before the value has been removed, the f...
by BobK
Fri Aug 20, 2021 3:22 pm
Forum: General discussion and questions about Aware IM
Topic: How can I easily extract a value from a XML/JSON structure?
Replies: 7
Views: 5278

Re: How can I easily extract a value from a XML/JSON structure?

Given that I would always know a path to the desired element, is it possible for a simple REGEX function to return my element? Depends upon how you define simple. Using the examples you provided, the following will get the elements you want. Given: BO = ComplexRegEx Your first XML example stored in...
by BobK
Fri Jul 16, 2021 12:50 pm
Forum: General discussion and questions about Aware IM
Topic: Schedulers execution capacity
Replies: 3
Views: 2773

Re: Schedulers execution capacity

The issue you need to be “aware” of is that the scheduler only ever has one instance of it running. If the scheduler initiates a process that takes more than 1 minute to complete then it will skip starting (the scheduler) in the next minute. This is incorrect. The scheduler runs about every 60 seco...
by BobK
Tue Jul 06, 2021 6:36 pm
Forum: Problem reports
Topic: REST Service not reponse
Replies: 6
Views: 10639

Re: REST Service not reponse

The OP claims that the Application.Status is being changed to 'Approved' as expected, but the REST Service is not returning anything. I suspect that the FIND and update is occurring in a sub-process. If that is true, Application is not in Context of the main process and the REST Service has nothing ...
by BobK
Tue Jul 06, 2021 2:21 pm
Forum: Problem reports
Topic: REST Service not reponse
Replies: 6
Views: 10639

Re: REST Service not reponse

Are you using the same REST Service for the CREATE Application and the FIND Application?

Would it be possible to show your complete Process.
by BobK
Thu Jun 17, 2021 10:32 pm
Forum: General discussion and questions about Aware IM
Topic: perform process on BO_B Based on Query Results of BO_A
Replies: 17
Views: 9660

Re: perform process on BO_B Based on Query Results of BO_A

KnightWare wrote: Thu Jun 17, 2021 10:18 pm The PICK ONE OR MORE... Displays the query, but just a close button, no Continue.
No Continue hmmm.

I don't know.
by BobK
Thu Jun 17, 2021 10:17 pm
Forum: General discussion and questions about Aware IM
Topic: perform process on BO_B Based on Query Results of BO_A
Replies: 17
Views: 9660

Re: perform process on BO_B Based on Query Results of BO_A

I'll try to draw it up, but basically - you run a query and 1. You run a query against BOA. The user uses that query to filter down to the group of records they want. 2. You want to set a field in another Business Object (BOB) based on this group using the OBJECT_ID (Key field) that is in both BO's...
by BobK
Thu Jun 17, 2021 9:12 pm
Forum: General discussion and questions about Aware IM
Topic: perform process on BO_B Based on Query Results of BO_A
Replies: 17
Views: 9660

Re: perform process on BO_B Based on Query Results of BO_A

I still think it is a bug, but here is a work around. I assume you have a ReClass operation on you query. If so, remove it because it is no longer needed. Create a new process with the first rule as PICK ONE OR MORE FROM <the name of your existing query> The next rule would be ReClass When you run t...
by BobK
Thu Jun 17, 2021 8:45 pm
Forum: General discussion and questions about Aware IM
Topic: perform process on BO_B Based on Query Results of BO_A
Replies: 17
Views: 9660

Re: perform process on BO_B Based on Query Results of BO_A

Looks like a bug to me. I believe the following is similar to what KnightWare describes I have a query that finds some A records. This query has a "Panel Operation" that Starts Process "CountKeys" and "Applicable to multiple items" is selected. I run the query and filter the results to get the desir...
by BobK
Thu Jun 10, 2021 12:38 pm
Forum: General discussion and questions about Aware IM
Topic: how to handle a Inactive user logging in?
Replies: 4
Views: 15680

Re: how to handle a Inactive user logging in?

I have an init process. In that I'm doing a IF LoggedInSystemuser.ActiveYN = 'No' THEN xxxxx For the xxxxx do a REPORT ERROR Something like: IF LoggedInSystemuser.ActiveYN = 'No' THEN REPORT ERROR 'User inactive' What will happen: The VP displays along with the error message which also has an "OK" ...
by BobK
Wed May 26, 2021 7:43 pm
Forum: Problem reports
Topic: Problems when uploading pdf with too many pages(?)
Replies: 8
Views: 28932

Re: Problems when uploading pdf with too many pages(?)

when running AwareIM as a service... In two files, which are identical - only one is used, but I do not remember which one, so make the change in both. The files are wrapper.conf and awareim.conf in the BIN directory. This is the property in these files that sets memory: wrapper.java.maxmemory=256 I...