Search found 389 matches

by ddumas
Wed Feb 19, 2020 12:15 pm
Forum: General discussion and questions about Aware IM
Topic: pass value from query grid to create object form
Replies: 9
Views: 13244

Re: pass value from query grid to create object form

Right. In DfraftFlag would work in that scenario. Until Enter New works without any buttons at the bottom I will not use it.
by ddumas
Tue Feb 18, 2020 8:32 pm
Forum: General discussion and questions about Aware IM
Topic: 2019 Zero to Hero Beginners Workshop Package now Available
Replies: 2
Views: 28702

Re: 2019 Zero to Hero Beginners Workshop Package now Availab

Can you make an End to End video that calls a complex REST API? I for one, would pay at least $200 for that alone, maybe more, if it was state of the art. One that literally takes you step by step from start to finish, and does NOT "pre-create" any BOs, property files, System settings, etc. A great ...
by ddumas
Tue Feb 18, 2020 8:07 pm
Forum: General discussion and questions about Aware IM
Topic: Which features do you want in the next release?
Replies: 204
Views: 7618263

Re: Which features do you want in the next release?

Please Fix Enter New to add an option to remove all the buttons at the bottom. Then it becomes much more usable. Because of those buttons, I do not even use it anymore.
by ddumas
Tue Feb 18, 2020 7:51 pm
Forum: General discussion and questions about Aware IM
Topic: pass value from query grid to create object form
Replies: 9
Views: 13244

Re: pass value from query grid to create object form

I hate the continue and cancel buttons, next form, previous form, etc. I never use Enter New. I always call a process that does a Create BO With ... and then do a View, which acts like an Edit . That skips all the "unecessary noise" associated with Enter New. I have many forms and not a single one u...
by ddumas
Tue Feb 18, 2020 6:45 pm
Forum: General discussion and questions about Aware IM
Topic: Close Button on Popup Form ignores edits (SOLVED)
Replies: 9
Views: 20348

Close Button on Popup Form ignores edits (SOLVED)

I have a popup window for a form edit. It puts a close button at the bottom (which I do not even want). If you make edits and then click the close button at the bottom, you do not get the valuable message that you will lose unsaved changes. So I believe this may be a bug. I have a panel operation (w...
by ddumas
Tue Feb 18, 2020 2:13 pm
Forum: Tips and Tricks
Topic: COUNT UNIQUE VALUES
Replies: 14
Views: 83058

Re: COUNT UNIQUE VALUES

USE EXEC_SP, or the EXEC_SPF() function to return the value. I call stored procedures throughout my application, especially for queries. Also to set flags or calculated columns that are best left to SQL code
Know them, love them ,use them :)
by ddumas
Tue Feb 18, 2020 12:12 pm
Forum: General discussion and questions about Aware IM
Topic: Display Message that looks good for a long message (SOLVED)
Replies: 1
Views: 3283

Display Message that looks good for a long message (SOLVED)

I have a long message, about 8 sentences, that I would like to display to the user. Using Display Message, it's really ugly. No Formatting that I can find, and ignores HTML. Is there something like like a [Display HTML Message] ? Or another way to do this?

Thanks,

Dave
by ddumas
Tue Feb 18, 2020 12:05 pm
Forum: General discussion and questions about Aware IM
Topic: Gracefully logging out new Guest after registration(SOLVED)
Replies: 9
Views: 14016

Re: Gracefully logging out a new Guest after registration

so, you have quotes within quotes. Is that correct?
by ddumas
Mon Feb 17, 2020 10:43 pm
Forum: Problem reports
Topic: Close Button at bottom on a popup window ignores edits
Replies: 2
Views: 5559

Close Button at bottom on a popup window ignores edits

I have a popup window for a form edit. It puts a close button at the bottom (which I do not even want). If you make edits and then click the close button at the bottom, you do not get the valuable Message that you will lose unsaved changes. So I believe this is a bug. I have a panel operation (where...
by ddumas
Mon Feb 17, 2020 5:47 pm
Forum: General discussion and questions about Aware IM
Topic: how do I update multiple value allowed attribute via process
Replies: 2
Views: 4549

Re: how do I update multiple value allowed attribute via pro

I do this by calling a stored proc, which creates a single string, essentially unpivoting the rows. If I find myself having do to too much in rules, as it pertains to setting special columns, a stored proc works great.
by ddumas
Mon Feb 17, 2020 5:40 pm
Forum: General discussion and questions about Aware IM
Topic: Cannot Save Record has been modified by another user(SOLVED)
Replies: 5
Views: 7483

Re: Cannot Save, Record has been modified by another user

Thanks, I thought about that as well. Since I have a 2 phased process, my Organizer Locked Flag works fine. I have a Panel Operation that calls a process that sets the flag and does a commit transaction (my favorite AWareIM command), so I never go into "Edit mode". Any other users that are already i...
by ddumas
Mon Feb 17, 2020 4:51 pm
Forum: General discussion and questions about Aware IM
Topic: Gracefully logging out new Guest after registration(SOLVED)
Replies: 9
Views: 14016

Gracefully logging out new Guest after registration(SOLVED)

I have a Guest registration that works fine, but I would like to exit the visual Perspective (Logout) after the Guest registers. Right now, the guest user is left with a Visual Perspective still in the browser tab. I have attached 2 screenshots. (1) where the Guest Visual Perspective shows the first...
by ddumas
Sun Feb 16, 2020 3:17 pm
Forum: General discussion and questions about Aware IM
Topic: Cannot Save Record has been modified by another user(SOLVED)
Replies: 5
Views: 7483

Re: Cannot Save, Record has been modified by another user

So I ended up adding an Editing Flag only because I have a Meeting that has 2 phases. Once phase one is done, I set the Editing "phase" to locked, and that starts phase 2. That works. However, I really like the refresh button idea also. I wish there was a way to change the "another user has changed ...
by ddumas
Thu Feb 13, 2020 4:55 pm
Forum: General discussion and questions about Aware IM
Topic: SQL Query Form - Where is it? (SOLVED)
Replies: 2
Views: 4552

Re: SQL Query Form - Where is it?

I see EXEC_SQL in the v8.4 DOC (online doc is v8.3), where you can call in a process. I am going to stick with EXEC_SP, as I feel it provides me with more functionality.
Dave