-
Setting a text field from a server script
public class MyClass{publicstatic BusinessObject1 bo1;publicstatic Form1 form1;[Promote(PromotionTargets.ExpressionBuilder)][Category("UserCategory")] public static string sGetNextInSequence() { bo1.Refresh(); string sValue=bo1.NextSequenceFormatted.ToString();// trying to set the Text1 value…
-
Error when validating script
I am trying to create a server script something like the code below: using System;using System.Data;using System.Collections.Generic;using Metastorm.Ide.Extensibility;using Metastorm.Runtime.Core;using Metastorm.Runtime.Types;using System.ComponentModel;using Metastorm.Runtime.Models.TESTSQLPROJECT;namespace…
-
Open In Edit Mode
I presume/believe this is still the case in V9, but thought I'd ask anyway ... just in case. Is it possible to open an existing folder (not a blank form / new folder) in edit mode directly from a URL? I don't mean from the To Do list, but from a link in an email message for instance? Also, for the moment, not using a 3rd…
-
Update using parameters
If I need to insert into a table, the following works well for text fields where single quotes (apostrophes) may be used: { Mstm.SelectSql(new MetastormDefault(),@INSERT INTO YOUR_TABLE (Column1,Column2) VALUES (@p1, @p2)", new QueryParameter("@p1",Local.Variable1), new QueryParameter("@p2",Local.Variable2) ); } Is there a…
-
which db to establish client server
can anybody tell me which db is required to establish provision bpa for client?
-
Multiple KE repositories
Hi I'm in the process os creating additional KE repositories. What SQL requirements are needed? Riyaad
-
Raising a flag from Subprocess that decides the routing in main process
Hi, I have used a Sub-Process into the Parent process. Inside the Sub-Process there is a flag which is raised on when stage started at archive stage. Flagged action associated to this flag resides in the parent process. "Flag used to invoke this action" property is set to the flag in subprocess. Still the flagged action…
-
How to set timer based on time of day instead of data change event.
I need to set a timer to run a process daily, when I create the timmer the only options is to run the process based on a data changing event. In my case, no data has changed so how would I trigger the process?