Search found 2409 matches

by customaware
Mon Dec 10, 2012 12:56 am
Forum: General discussion and questions about Aware IM
Topic: Dynamic Formulas
Replies: 1
Views: 1968

Dynamic Formulas

Imagine this situation... I have a table of user defined parameters that each have a Code Description Value A Param A 65.3 B Param B 104.08 C Param C 0.445 ..... n Param N 9.04 I want the user to then be able to build Metrics that are based on calculations of various Parameters. For Example a BO cal...
by customaware
Thu Nov 29, 2012 12:52 am
Forum: General discussion and questions about Aware IM
Topic: Folder Selection Dialog
Replies: 17
Views: 10800

Thanx Tom.

Those tips and tricks are excellent and extremely interesting for future reference.

However, I cannot see an example of dynamically naming a BO based on the LoggedIn User.

Cheers,
Mark
by customaware
Wed Nov 28, 2012 3:45 pm
Forum: General discussion and questions about Aware IM
Topic: Folder Selection Dialog
Replies: 17
Views: 10800

Sorry Tom,

Have scoured the forum including T&T and cannot find the post you are referring to.

Cheers
Mark
by customaware
Wed Nov 28, 2012 12:59 pm
Forum: General discussion and questions about Aware IM
Topic: Folder Selection Dialog
Replies: 17
Views: 10800

I thought I could have a RegularUser attribute to the file but cannot assign the LoggInSystemUser to that attribute on the fly.

How do I make a file name that includes the LoggedInSystemUser.ID?

Cheers,
Mark
by customaware
Wed Nov 28, 2012 8:06 am
Forum: General discussion and questions about Aware IM
Topic: Difference Between Two Records
Replies: 0
Views: 2252

Difference Between Two Records

I have a BO called MyData with attributes for Easting and Northing. Imagine the data looking like ID Easting Northing 1 1,000 12,345 2 1,101 12,456 3 1,342 12,342 4 1,355 12,411 5 1,378 12,503 6 1,402 12,475 I have another temporary BO called Delta which has two attributes, Dx and Dy I need to loop ...
by customaware
Wed Nov 28, 2012 6:07 am
Forum: General discussion and questions about Aware IM
Topic: Adding a Sequence Number during CREATE
Replies: 1
Views: 2121

Adding a Sequence Number during CREATE

I have a BO that could have 1000's records. Users import data which gets added to this BO. I IMPORT and CREATE the new records, however, for each set of imported data I need a sequence number starting at 1 and with the last imported record being the total number of records imported during that impor...
by customaware
Wed Nov 28, 2012 6:01 am
Forum: General discussion and questions about Aware IM
Topic: Folder Selection Dialog
Replies: 17
Views: 10800

Managed to get it to work with only one caveat. ENTER NEW FileUpload USING Main EXPORT DOCUMENT FileUpload.FileToUpload TO FILE 'mydata.csv' IMPORT HaulData FROM 'mydata.csv' FIND ALL HaulData ORDER BY HaulData.ID CREATE HaulProfiles FOR EACH HaulData WITH HaulProfiles.Analysis=Analyses,HaulProfiles...
by customaware
Fri Nov 23, 2012 8:28 am
Forum: General discussion and questions about Aware IM
Topic: Folder Selection Dialog
Replies: 17
Views: 10800

Hi James. Yes that works. Thanx. One issue though.... I have two BOs. Analyses and HaulData HaulData is owned by Analyses My HaulData has the following attributes... SegmentCode text Easting number Northing number RL number Analysis Analyses I call the importation process from an Analyses and pass A...
by customaware
Fri Nov 23, 2012 6:08 am
Forum: General discussion and questions about Aware IM
Topic: Folder Selection Dialog
Replies: 17
Views: 10800

Yes. I can do that and I can get it to import the file (.csv) into the document attribute. But, is it then possible to point to that attribute as an argument for the IMPORT FROM Normally IMPORT myBO FROM 'C:\mydocs\myfile.csv But now I import the file into fileBO IMPORT myBO FROM fileBO Unless I am ...
by customaware
Fri Nov 23, 2012 1:20 am
Forum: General discussion and questions about Aware IM
Topic: Folder Selection Dialog
Replies: 17
Views: 10800

Oh really.

File select will work for my purpose.

How can that be accomplished.

I can see IMPORT myobject FROM 'C:/mydocuments/psa.csv'

So, if i can use that but have the user select the file to import rather than have is hard coded, that would be great.

Cheers,
Mark
by customaware
Thu Nov 22, 2012 9:30 am
Forum: General discussion and questions about Aware IM
Topic: Folder Selection Dialog
Replies: 17
Views: 10800

Folder Selection Dialog

I want each user to be able to set a default folder path.

Is there any funtionality in AwareIM that will pop up a folder selection dialog
and then allow me to take that selected folder path and save it to a BO attribute?

Cheers,
Mark
by customaware
Fri Nov 09, 2012 5:51 am
Forum: General discussion and questions about Aware IM
Topic: Rule Problem
Replies: 1
Views: 1875

Rule Problem

I have a Rule as Follows.... Condition 1 UserEntities.EntityUser.DefaultEntityCount=1 Condition 2 UserEntities.DefaultEntity='No' Action 1 READ PROTECT UserEntities.DefaultEntity FROM ALL This is intended to hide any of the DefaultEntity of any record where it = 'No' if any one of the records = 'Yes...
by customaware
Tue Oct 30, 2012 10:14 am
Forum: General discussion and questions about Aware IM
Topic: Effective Date
Replies: 1
Views: 2158

Ah.....

FIND Equipment WHERE MyDate>=Equipment.EffectiveDate ORDER BY Equipment.EffectiveDate DESC TAKE BEST 1

Solved.

Awesome. :wink:
by customaware
Tue Oct 30, 2012 9:26 am
Forum: General discussion and questions about Aware IM
Topic: Effective Date
Replies: 1
Views: 2158

Effective Date

I have a BO Equipment with attributes Effective Date Equipment So the data looks like 01/04/2010 Type A 18/09/2011 Type B 24/06/2012 Type C So I need to retrieve an item of Equipment for a particular Date. For example if my enquiry date is 14/10/2011 then I need to get Type B. And if my enquiry date...
by customaware
Tue Oct 30, 2012 9:10 am
Forum: General discussion and questions about Aware IM
Topic: Newbie Stuggling with Rules etc
Replies: 1
Views: 2143

Worked it out. :D