Search found 1668 matches
- Wed Jan 15, 2025 6:23 pm
- Forum: General discussion and questions about Aware IM
- Topic: Does a Scheduled 'System' process have access to the SessionValues NP object? (Ver 8.8)
- Replies: 6
- Views: 169
Re: Does a Scheduled 'System' process have access to the SessionValues NP object? (Ver 8.8)
If you mean it completely stopped running, I noted a while back that scheduled processes suddenly became sensitive to the format of the time, i.e., IF CURRENT_TIME='03:00', not IF CURRENT_TIME='3:00'.
- Thu Jan 02, 2025 9:02 pm
- Forum: General discussion and questions about Aware IM
- Topic: Ongoing process, timeout, completed?
- Replies: 4
- Views: 2106
Re: Ongoing process, timeout, completed?
Can you display a message at completion to confirm it got to the final step?
- Fri Dec 27, 2024 8:18 pm
- Forum: General discussion and questions about Aware IM
- Topic: Header Caption
- Replies: 3
- Views: 2152
Re: Header Caption
I presume that the header is on the form of the object JobSystemItems. Note that until the object is created, there will be no reference. I'll be happy to look at this with you.
- Sun Dec 15, 2024 6:26 pm
- Forum: Tips and Tricks
- Topic: Fast reports
- Replies: 7
- Views: 16341
Re: Fast reports
MESSI, can you tell us whether Fast Reports supports conditional elements is some manner like the internal report generator? I looked at their documentation, but I don't see it.
- Fri Dec 13, 2024 1:53 pm
- Forum: General discussion and questions about Aware IM
- Topic: Donwload multiple documents from multiple BOs
- Replies: 12
- Views: 4597
Re: Donwload multiple documents from multiple BOs
Can you configure a report rather than a document?
- Thu Dec 12, 2024 10:40 pm
- Forum: General discussion and questions about Aware IM
- Topic: Donwload multiple documents from multiple BOs
- Replies: 12
- Views: 4597
Re: Donwload multiple documents from multiple BOs
Use the test log to see how many items are found in the query.
- Thu Dec 12, 2024 3:24 pm
- Forum: Tips and Tricks
- Topic: Fast reports
- Replies: 7
- Views: 16341
Re: Fast reports
If jannes is willing to provide a 30-minute webinar on Zoom or any other platform, I would love to see it.
- Sun Nov 24, 2024 8:21 pm
- Forum: General discussion and questions about Aware IM
- Topic: Export To Excel
- Replies: 2
- Views: 2988
Re: Export To Excel
I'll be lazy and give you some LIST_TABLE code that works. You'll have to sort through it to see if it can help. This is the HTML from an HTML document embedded in an email notification. Hope it helps. Hello <<Investigator.FirstName>>, You currently have <<Count PHS WHERE (PHS.Investigator=Investiga...
- Fri Nov 15, 2024 9:01 pm
- Forum: General discussion and questions about Aware IM
- Topic: Document vs Picture
- Replies: 4
- Views: 5028
Re: Document vs Picture
You can certainly display a picture attribute in a report. If it is stored in a document type, then no. I see lots of workarounds. Let's say you want to store everything in a document type. You can have a second attribute to store a picture and an update rule where if the document is .jpg, .png, .gi...
- Thu Nov 14, 2024 2:32 pm
- Forum: General discussion and questions about Aware IM
- Topic: Document vs Picture
- Replies: 4
- Views: 5028
Re: Document vs Picture
I use both types but always for different purposes. Like you said, I use picture type only when the object needs to be displayed on screen or in a report. I presume the document display function will display an image if needed. So, I use the picture type only if I need the picture to display on scre...
- Wed Oct 30, 2024 10:34 pm
- Forum: General discussion and questions about Aware IM
- Topic: Trying to use only areas for the Job I'm on
- Replies: 3
- Views: 3644
Re: Trying to use only areas for the Job I'm on
I concur with my limited understanding. Also, you probably don't need the This prefix so long as JobSystem.ob_Job is always in context and not overwritten by any other instance of the object.
- Wed Oct 30, 2024 7:31 pm
- Forum: General discussion and questions about Aware IM
- Topic: Trying to use only areas for the Job I'm on
- Replies: 3
- Views: 3644
Re: Trying to use only areas for the Job I'm on
We could use a bit more detail as to how these objects are related. Also, you are using the FIND action, and you say the items are being displayed somewhere. It would be key to know where/how. You must be sure the JobSystem object is in context. Perhaps describe the function more completely.
- Tue Oct 29, 2024 1:31 pm
- Forum: General discussion and questions about Aware IM
- Topic: Need help with creating wages per job
- Replies: 11
- Views: 7171
Re: Need help with creating wages per job
Okay, so for each job, you are copying the entire master list, and I presume the user selects the applicable labor for the job? For this, you should use the DUPLICATE action as shown here: https://www.awareim.com/dokuwiki/doku.php/a_f/a/duplicate?s[]=%2Aduplicate%2A However, I'm not sure how you rel...
- Mon Oct 28, 2024 11:58 pm
- Forum: General discussion and questions about Aware IM
- Topic: Need help with creating wages per job
- Replies: 11
- Views: 7171
Re: Need help with creating wages per job
No, I think your approach is off a bit. The MasterWageDetail objects are the various job descriptions and wages. In the Job object, the user selects the Union/Non-Union and Description attributes which you use to lookup the wage in the MasterWageDetail table and bring in the daily wage. So, your rul...
- Mon Oct 28, 2024 11:02 pm
- Forum: General discussion and questions about Aware IM
- Topic: Need help with creating wages per job
- Replies: 11
- Views: 7171
Re: Need help with creating wages per job
I think that is resolved in my second response. You want to FIND the WageDetail object based on the two selections in the Job object. That's the criteria but my second response prevails based on the information as I understand it.