Search found 89 matches

by lueu
Fri Feb 16, 2024 12:17 pm
Forum: General discussion and questions about Aware IM
Topic: REQIRED only if CREATE/ENTER NEW, not on EDIT?
Replies: 3
Views: 297

Re: REQIRED only if CREATE/ENTER NEW, not on EDIT?

Thank you both!

I am now testing PointsWells suggestion, combined with an asterix (not red yet, though) in the label name. Will also take a look at the presentation rules, thanks for the tip!
by lueu
Fri Feb 16, 2024 9:59 am
Forum: General discussion and questions about Aware IM
Topic: REQIRED only if CREATE/ENTER NEW, not on EDIT?
Replies: 3
Views: 297

REQIRED only if CREATE/ENTER NEW, not on EDIT?

Can I force REQUIRED for only CREATE/ENTER NEW, and not EDIT? If I tick Required on the attribute, it applies to both creating and updating, but I need these attributes to only be required when creating a new record. The attributes in question is set in creating new objects through reference BOs and...
by lueu
Mon Feb 12, 2024 7:23 am
Forum: General discussion and questions about Aware IM
Topic: Problems displaying shortcuts - what could be wrong?
Replies: 7
Views: 457

Re: Problems displaying shortcuts - what could be wrong?

Jumping in the middle here, but to use a shortcut you 1st have to create a relationship between 2 BO's. (Tables). This does NOT automatically populate the relationship in EXISTING records. Only when new records are created. Aware creates 3 fields in the child table (if it is a many to many then a n...
by lueu
Fri Feb 09, 2024 4:10 pm
Forum: General discussion and questions about Aware IM
Topic: Problems displaying shortcuts - what could be wrong?
Replies: 7
Views: 457

Re: Problems displaying shortcuts - what could be wrong?

The only reason I can think of why you would want the IndID attribute is if you are importing data from another source, and want to establish AwareIM relationships based on these values. However, if the users are adding the data themselves, you will not need this attribute. I think IndID is somethi...
by lueu
Fri Feb 09, 2024 2:36 pm
Forum: General discussion and questions about Aware IM
Topic: Problems displaying shortcuts - what could be wrong?
Replies: 7
Views: 457

Re: Problems displaying shortcuts - what could be wrong?

Follow up question: Does shortcuts only work for objects created/edited after relationship and shortcuts are made? Not for existing objects in the table(BO)? Since I can create a new object using a reference attribute to select/set a value, and this will show, but the already existing objects shows ...
by lueu
Fri Feb 09, 2024 1:54 pm
Forum: General discussion and questions about Aware IM
Topic: Problems displaying shortcuts - what could be wrong?
Replies: 7
Views: 457

Re: Problems displaying shortcuts - what could be wrong?

Having an attribute with the same name and value in two BOs does not mean that they are connected. How is the relation between BO1 and BO2 made in the first place, and why is the IndID attribute needed? If you can describe the workflow, it should be easy to come up with a permanent solution. These ...
by lueu
Fri Feb 09, 2024 12:10 pm
Forum: General discussion and questions about Aware IM
Topic: Problems displaying shortcuts - what could be wrong?
Replies: 7
Views: 457

Problems displaying shortcuts - what could be wrong?

I have an issue with a shortcut attribute. It doesnt't display in my query, but if I swith on inline editing and make the coulmn editable, I get the values. So they are there, but Aware might not know what row each of them belong to? BO1: attributes IndName and IndId. BO2: attributes Line, IndId and...
by lueu
Mon Feb 05, 2024 2:01 pm
Forum: General discussion and questions about Aware IM
Topic: Question about Find References
Replies: 0
Views: 265

Question about Find References

I use the Find references option on my business objects and noticed something I haven't seen before: "Business object "MyBO" used in query 'MyQuery' in CREATE OBJECT operation is not found" Anyone knows what this means? I have a button for Create object as a panel operation in my query, so I guess i...
by lueu
Wed Jan 17, 2024 9:44 am
Forum: General discussion and questions about Aware IM
Topic: Process with DISPLAY QUESTION - how to make it work?
Replies: 4
Views: 16174

Re: Process with DISPLAY QUESTION - how to make it work?

What do you mean by this? What are you putting into SessionObj? By this I mean that I thought I needed to make my own question attribute. I thought all the examples I've been reading just used "question.reply" as just an example, like "YourBO.YourAttribute"... :oops: Thanks so much for clearifying ...
by lueu
Wed Jan 17, 2024 9:09 am
Forum: General discussion and questions about Aware IM
Topic: Process with DISPLAY QUESTION - how to make it work?
Replies: 4
Views: 16174

Re: Process with DISPLAY QUESTION - how to make it work?

Hmm, I tried that, but the subporcess is for some reason not running if I do it like this. Both 'yes', 'no' and 'cancel' does nothing. If I change it to "IF question.reply='No' THEN DISPLAY MESSAGE 'xxx' ELSE SubProcess" it workes as described earlier; subprocess runs both on clikcing yes and no. So...
by lueu
Wed Jan 17, 2024 8:07 am
Forum: General discussion and questions about Aware IM
Topic: Process with DISPLAY QUESTION - how to make it work?
Replies: 4
Views: 16174

Process with DISPLAY QUESTION - how to make it work?

I am struggeling with making a process with a DISPLAY QUESTION work as I want it to. The question is if the user wants to proceed. If the user answers 'yes', it proceedes as wanted, but the same happens if you answer 'No'. 'Cancel' cancels the process as it should, but I still have all three buttons...
by lueu
Mon Jan 15, 2024 9:18 am
Forum: General discussion and questions about Aware IM
Topic: How to refresh query after process is run, not when started?
Replies: 0
Views: 3280

How to refresh query after process is run, not when started?

I have a process with an EXEC_SP which takes up to a minute to complete in the background. I would like to refresh a query when this process is done, and not just when it is started. The process is linked to another query on the same page (a VP that shows two queries, where the process is started fr...
by lueu
Mon Jan 08, 2024 10:21 am
Forum: General discussion and questions about Aware IM
Topic: Remove PROTECT when condition no longer holds?
Replies: 8
Views: 61679

Re: Remove PROTECT when condition no longer holds?

You can only protect a BO based on its own attributes. IF BO.Flag=1 THEN READ PROTECT BO.Secret IF BO.psRelatedBO.Flag=1 THEN READ PROTECT BO.Secret Followup question here: This last code snippet indicates I can use a shortcut, is that correct? Will the system be able to pick up if the shortcut att...
by lueu
Fri Jan 05, 2024 8:12 am
Forum: General discussion and questions about Aware IM
Topic: Remove PROTECT when condition no longer holds?
Replies: 8
Views: 61679

Re: Remove PROTECT when condition no longer holds?

Okei, thanks for the tip, good to know!