Toolbar Functions 1.2.0
Bookmark :
There are a couple of new functions and a screencast explaining all of the functions. The new functions are indicated below. There is also history for Get and Set Environment Variables, Agent Run, Edit Profile Document, and Formula Evaluate. The history was built on some new features in Edit Document Fields.
Here are the current options:
There are a couple of new functions and a screencast explaining all of the functions. The new functions are indicated below. There is also history for Get and Set Environment Variables, Agent Run, Edit Profile Document, and Formula Evaluate. The history was built on some new features in Edit Document Fields.
Here are the current options:
- Agent Run
- Agent Run Current
- Database Path
- Database Replica ID
- Database Server
- Database Server & Path
- Edit Profile Document
- Formula Evaluate
- Get Environment Value
- Link Message
- Note ID
- Parent UNID
- Refresh Selected Documents
- Set Environment Value
- Undo Replication Conflict
- Unlock Document
- UNID
- Workflow Formula Test







Comments
host:=@DbLookup("":""; @Subset(@DbName; 1) : "names.nsf"; "($Servers)"; @Subset(@DbName; 1); "SMTPFullHostDomain");
normalMode:=@DbLookup("":""; @Subset(@DbName; 1) : "names.nsf"; "($Servers)"; @Subset(@DbName; 1); "HTTP_NormalMode");
sslMode:=@DbLookup("":""; @Subset(@DbName; 1) : "names.nsf"; "($Servers)"; @Subset(@DbName; 1); "HTTP_SSLMode");
port:=@DbLookup("":""; @Subset(@DbName; 1) : "names.nsf"; "($Servers)"; @Subset(@DbName; 1); "HTTP_Port");
sslPort:=@DbLookup("":""; @Subset(@DbName; 1) : "names.nsf"; "($Servers)"; @Subset(@DbName; 1); "HTTP_SSLPort");
prefix:=@If(
normalMode = "1" | normalMode = "2"; "http";
"https"
);
portSuffix:=@If(
prefix = "http" & port = 80; "";
prefix = "https" & sslPort = "443"; "";
prefix = "http"; ":" + @Text(port);
prefix = "https"; ":" + @Text(sslPort);
""
);
@URLOpen(prefix + "://" + host + portSuffix + "/" + @WebDbName + "/0/" + @Text(@DocumentUniqueID) + "?OpenDocument")
Posted by Johan Känngård At 06:31:21 AM On 12/01/2006 | - Website - |
Posted by Chad Schelfhout At 05:40:49 AM On 11/15/2006 | - Website - |
Posted by Johan Känngård At 07:16:45 AM On 11/14/2006 | - Website - |
Posted by Chad Schelfhout At 07:04:21 AM On 12/01/2006 | - Website - |
lookup:=@DbLookup("":""; @SubSet(@DbName; 1) : "names.nsf"; "($Servers)"; @SubSet(@DbName; 1); "SMTPFullHostDomain");
@If(
@IsError(lookup); @Prompt([OK]; "Invalid host name"; "Could not get host name from server document");
@URLOpen("{ Link } + lookup + "/" + @WebDbName + "/0/" + @Text(@DocumentUniqueID) + "?OpenDocument")
)
Posted by Johan Känngård At 05:50:44 AM On 12/01/2006 | - Website - |