|
POST
|
Hi There, Can you elaborate a bit more by what you mean with project portfolio? Ta, F
... View more
05-06-2012
08:24 PM
|
0
|
0
|
570
|
|
POST
|
Hi, Has anyone implemented a step where we validate one field against another? Maybe on a save properties? I have a case where a stamped property field has a designedbyuser field / value, and a revieweruser field /value - so we can't set the reviewer to be the designer. Has anyone done anything like this? Can we pass tokens through the executesql step? Thanks, Fraser
... View more
05-06-2012
08:23 PM
|
0
|
1
|
2512
|
|
POST
|
Hi Guys, Has anyone done / seen / know if there is an update trigger mechanism in JTX? Basically I want some code to run to update an extended property for a given job when it is assigned. There is a chocolate fish in it for any answers supplied! Thanks, Fraser EDIT: I've looked at the history table as when a job is assigned is stored here - but I haven't figured out how I could link this to a specific event. Basically I want to say the job was assigned to me for site visit on date. I would have another step that says, I started my site visit on x date. Then I could query the difference between when the job was assigned for a specific task in the workflow to when that task was started. The problem as I see it with the history table is that you can't seem to associate one event with another. I need to be able to have a step that enables me to select who I what to assign the job to, and store a date with the specific phase of the job. I'm thinking another custom step. Anyone got any ideas? F
... View more
05-06-2012
03:08 PM
|
0
|
3
|
3438
|
|
POST
|
Hi There, Has any seen this? I have a job notification set up to report on a related field (1:m) - but nothing shows in the subsequent email. I thought it may display the last row of the table? Anyone? P.S. I'm not getting a load of love from this forum 😄
... View more
05-03-2012
03:38 PM
|
0
|
3
|
1449
|
|
POST
|
OK I'm an idiot. It's in the sample. Duh. Add a row to the JTX_PROPERTIES table with prop_name="DEFAULT_NOTIFIER" and value="{custom guid}" <slaps forehead>
... View more
05-02-2012
08:17 PM
|
0
|
0
|
435
|
|
POST
|
OK, I used the Custom IJTXNotifier as a base and used sp_send_dbmail as a temporary stop gap. Will most likely write the emails to a table and have another process polling that and sending the mail. Thanks, F
... View more
05-02-2012
08:15 PM
|
0
|
0
|
534
|
|
POST
|
Hi There, What is the propery name / value that we need to set in JTX_PROPERTIES to use a custom Notifier? Thanks, Fraser
... View more
05-02-2012
08:00 PM
|
0
|
1
|
1391
|
|
POST
|
Hi there, I currently can't rely through our local smtp server for notifications - has anyone got a sample of writing a custom IJTXNotifier that authenticates as the current user? Or another method for notifications? Thanks, Fraser
... View more
05-02-2012
05:48 PM
|
0
|
1
|
1588
|
|
POST
|
OK so I've written a step to populate custom props based on a passed through string, similar to what the create child advanced step does with child properties. Again our good friends IJTXAuxRecordContainer, ExtendedPropertyIdentifier and IJTXAuxRecord were invloved.
... View more
04-30-2012
02:14 PM
|
0
|
0
|
459
|
|
POST
|
Hi There, We have some 1:m related properties that we want to update from running a step to a) hide the props from the workflow users and b) make it more automated. I had thought of using the JTXSteps.ExecuteSQL for this but haven't found any examples on how to use this, or would it be better to create a custom step and do it through the object model? They are mostly dates and who has the job when the step is executed. Has any one got an example of implementing this? Thanks, F
... View more
04-25-2012
07:57 PM
|
0
|
1
|
3134
|
|
POST
|
Found it: You have to get to the JTXAuxRecord. Code snippet example IJTXAuxProperties someProps = pParentJob as IJTXAuxProperties; string[] sExtPropTableNames = someProps.ContainerNames; for(int i = 0;i < sExtPropTableNames.Length;i++) { IJTXAuxRecordContainer ipExtendedPropTable = someProps.GetRecordContainer(sExtPropTableNames); Console.WriteLine(ipExtendedPropTable.TableAlias); IJTXAuxRecordSet ipExtendedPropertyRecords = ipExtendedPropTable.GetRecords(); for(int j = 0;j < ipExtendedPropertyRecords.Count;j++) { // Get each record for this job from the extended property table IJTXAuxRecord2 ipExtendedPropRecord = ipExtendedPropertyRecords.get_Item(j) as IJTXAuxRecord2; for(int k = 0;k < ipExtendedPropRecord.Count;k++) { // Cycles through each of the extended property fields for that record // Only fields that have been marked as visible for the job type will be returned Console.WriteLine(" Field alias: " + ipExtendedPropRecord.get_PropAlias(k)); Console.WriteLine(" Field value: " + ipExtendedPropRecord.get_Data(k).ToString()); } } } I stored the custom props table that had the extended property, and the name of the property and placed it on the create child args dialog. Then in the execute step it looks it up and pulls out how many jobs it needs to create. F
... View more
04-23-2012
06:46 PM
|
0
|
0
|
419
|
|
POST
|
Hi All, I want to change the create child job step to create the amount of jobs as stored against the parent job. Has anyone got a code snippet for doing this? Or just for accessing the parent custom properties? Thanks, Fraser
... View more
04-22-2012
08:14 PM
|
0
|
1
|
1356
|
|
POST
|
Hi There, 3 tier installation ArcGIS 10 Sp4 box 1: Web / SOM / AGS REST box 2: SOC box 3: DB I have an installation of AGS where the web tier and application tier have been split onto 2 machines - the web tier has client apps, the AGS SOM and REST endpoints, while the application tier has the SOC component. Following this the WMX server extension has been installed as follows: box 1 had the SOM component and sample viewer installed, box 2 had the SOC component installed. After this installation we saw that the wmrest REST endpoints for WMX have been installed on the SOC box, which was a little unexpected. This is going to cause issues, as this is a multiple machine deployment (multi SOMs and SOCs) and we need to use the web client. Is this the expected behaviour? Can we move the wmrest location? Cheers, Fraser
... View more
04-17-2012
02:30 PM
|
0
|
2
|
3244
|
|
POST
|
Hi There, Has anyone got a working proxy page for using with windows authentication. If we don't use a proxy page then the server will challenge on the first service hit and pop up a credentials page. I have played around today with a limited degree of success but can't seem to get it to seamlessly connect (I have the proxy in an application using IIS windows integration - it grabs the httpcurrentcontext user correctly). By adding the server to the browser local intranet sites stops the challenge but I would rather funnel through a proxy. Anyone done something like this? Thanks, Fraser
... View more
09-18-2011
10:16 PM
|
0
|
1
|
2771
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 07-11-2024 05:14 PM | |
| 3 | 04-03-2024 01:48 PM | |
| 1 | 08-24-2014 10:51 PM | |
| 1 | 03-12-2024 02:26 PM | |
| 1 | 11-24-2021 12:57 PM |
| Online Status |
Offline
|
| Date Last Visited |
10-10-2024
02:13 AM
|