Search found 1664 matches
- Fri Dec 13, 2024 1:53 pm
- Forum: General discussion and questions about Aware IM
- Topic: Donwload multiple documents from multiple BOs
- Replies: 11
- Views: 280
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: 11
- Views: 280
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: 4
- Views: 10486
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: 1024
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: 1992
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: 1992
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: 1488
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: 1488
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: 3505
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: 3505
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: 3505
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.
- Mon Oct 28, 2024 10:43 pm
- Forum: General discussion and questions about Aware IM
- Topic: Need help with creating wages per job
- Replies: 11
- Views: 3505
Re: Need help with creating wages per job
Based on what I see here, you just need an update rule such as: IF Job.WageType WAS CHANGED OR Job.WorkerDescription WAS CHANGED THEN FIND WageDetail WHERE WageDetail.WageType=Job.WageType and AND WageDetail.WorkerDescription=Job.WorkerDescription Job.DailyWage=WageDetail.DailyWage On the Rule, you ...
- Mon Oct 28, 2024 9:48 pm
- Forum: General discussion and questions about Aware IM
- Topic: Need help with creating wages per job
- Replies: 11
- Views: 3505
Re: Need help with creating wages per job
To clear, let me reiterate your need: When you create the Job BO, you want to populate certain attributes with attributes from the reference attribute ps_MasterWageDetail. It seems you may need to do this based on one or more attributes entered in the Job BO during creation. If I have this right, he...
- Tue Oct 22, 2024 2:22 pm
- Forum: General discussion and questions about Aware IM
- Topic: Dispaly summary of selected records
- Replies: 5
- Views: 3244
Re: Dispaly summary of selected records
Why not create a summary report and use the "Applicable to Multiple" option when calling the process to create the report?
- Tue Oct 08, 2024 8:28 pm
- Forum: General discussion and questions about Aware IM
- Topic: Copying LIVE into TEST
- Replies: 15
- Views: 11296
Re: Copying LIVE into TEST
Depending on how you set up the BSV, you either established a new (separate) database or are using the standards basdb database. If you did not use a separate database, then your test database tables are all appended with your bsv name i.e., [bsv]_customers. They WILL use this naming convention in t...