Starfish Scripting Class: Difference between revisions

From Starfish ETL
Jump to navigation Jump to search
(Created page with " From within VBScript operations (ScriptedVariable, VBScriptProcedure, ScriptedField) in additional to normal VBScript functions, the developer has access to a custom “Star...")
 
No edit summary
Line 1: Line 1:
From within VBScript operations (ScriptedVariable, VBScriptProcedure, ScriptedField) in additional to normal VBScript functions, the developer has access to a custom “Starfish” class. The tables below define its usage. This class may also be used with C# scripting.
From within VBScript operations (ScriptedVariable, VBScriptProcedure, ScriptedField) in additional to normal VBScript functions, the developer has access to a custom “Starfish” class. The tables below define its usage. This class may also be used with C# scripting.


== Class Properties ==
===== Class Properties =====
{| class="wikitable"
<br>             
! style="font-weight: bold;" width="250" | Property Name
{| border="1"
! style="font-weight: bold;" | Description
|-
|-
|<br>
| CurrentStageName
'''Property Name'''
| Read-only. Returns the name of the current stage. Useful during “Repeat Each Stage” Exec Operations to determine path of execution/next steps.
 
|<br>
'''Description'''
 
|-
|-
|<br>
| TotalRows
CurrentStageName
| Returns the total number of Origin Rows in the job.
 
|<br>
Read-only. Returns the name of the current stage. Useful during “Repeat Each Stage” Exec Operations to determine path of execution/next steps.
 
|-
|-
|<br>
| CurrentRow
TotalRows
| Returns the current row number.
 
|<br>
Returns the total number of Origin Rows in the job.
 
|-
|-
|<br>
| ReturnValue
CurrentRow
| Sets the return value to the calling application. Useful for passing an output back when the Job was called with an argument.
 
|<br>
Returns the current row number.
 
|-
|<br>
ReturnValue
 
|<br>
Sets the return value to the calling application. Useful for passing an output back when the Job was called with an argument.
 
|-
|-
|<br>
| Origin ( String )
Origin ( String )
| Returns the current Origin row’s value for the field specified.
 
|<br>
Returns the current Origin row’s value for the field specified.
 
|-
|-
|PreviewMode
| PreviewMode
|This boolean variable can be used to determine if you are Previewing or Running a Job. Returnes True of False. Ex: If PreviewMode &lt;&gt; True Then...
| This boolean variable can be used to determine if you are Previewing or Running a Job. Returnes True of False. Ex: If PreviewMode <> True Then...
|}
|}
===== Class Methods =====
<br>                                                                     
{| border="1"
|-
|<br>
'''Method Name'''
|<br>
'''Description'''


== Class Methods ==
{| class="wikitable"
! style="font-weight: bold;" width="250" | Method Name
! style="font-weight: bold;" | Description
|-
|-
|<br>
| GotoStage ( String )
GotoStage ( String )
| Directs Starfish Engine to go directly to a Stage (skipping any others before it). String Parameter is the Name of the stage to go to. Once GotoStage has been called within a Job, it is considered in a “manual operation mode”. No more stages will be called in order and it will be up to the user to implement a After Each Stage Exec Operation to control stage flow. If no After Operation is called, it will go to the next row after the stage runs.
 
|<br>
Directs Starfish Engine to go directly to a Stage (skipping any others before it). String Parameter is the Name of the stage to go to. Once GotoStage has been called within a Job, it is considered in a “manual operation mode”. No more stages will be called in order and it will be up to the user to implement a After Each Stage Exec Operation to control stage flow. If no After Operation is called, it will go to the next row after the stage runs.
 
|-
|-
|<br>
| GotoNextRow ()
GotoNextRow ()
| Skips all Stages and moves to the next Origin row.
 
|<br>
Skips all Stages and moves to the next Origin row.
 
|-
|-
|<br>
| EndJob ( String )
EndJob ( String )
| Cancels the Job execution immediately, ending with an error message as passed into the String param.
 
|<br>
Cancels the Job execution immediately, ending with an error message as passed into the String param.
 
|-
|-
|<br>
| LogMessage ( String, MsgBoxStyle )
LogMessage ( String, MsgBoxStyle )
| Appends a custom message to the Log which will always be displayed (even if Logging Level is set to None). Message is the passed in String parameter. Second parameter is a valid MsgBoxStyle (vbInformation, vbQuestion, vbExclamation, vbCritical)
 
|<br>
Appends a custom message to the Log which will always be displayed (even if Logging Level is set to None). Message is the passed in String parameter. Second parameter is a valid MsgBoxStyle (vbInformation, vbQuestion, vbExclamation, vbCritical)
 
|-
|-
|<br>
| GetFields ( String )
GetFields ( String )
| Executes a SQL SELECT statement returns all field values from the first row, comma-delimited. VBScript Split() function may be used to convert to an array within your function. Can improve performance when needing multiple fields from a single table.
 
|<br>
Executes a SQL SELECT statement returns all field values from the first row, comma-delimited. VBScript Split() function may be used to convert to an array within your function. Can improve performance when needing multiple fields from a single table.
 
|-
|-
|<br>
| ExecScalar ( String, String(Optional) )
ExecScalar ( String, String(Optional) )
| Executes a SQL SELECT statement on the Destination database. Returns the first column of the first row returned by the query. Compatible with OLE DB destinations.
 
|<br>
Executes a SQL SELECT statement on the Destination database. Returns the first column of the first row returned by the query. Compatible with OLE DB destinations.


There is an optional parameter to query the origin. To query the origin, use the second parameter of "ORIGIN"EX: ExecScalar("select id from company", "ORIGIN")
There is an optional parameter to query the origin. To query the origin, use the second parameter of "ORIGIN"<br>
EX: ExecScalar("select id from company", "ORIGIN")
 
|-
|-
|<br>
| ExecScalarCache ( String )
ExecScalarCache ( String )
| Same as ExecScalar, except that results are cached and before a query is executed, a search is performed on a locally-stored set of results to prevent execution of identical queries, thus boosting performance. Should only be used for queries where multiple identical queries may be run (such as looking up user id’s or picklist values) – otherwise could consume resources needlessly.
 
|<br>
Same as ExecScalar, except that results are cached and before a query is executed, a search is performed on a locally-stored set of results to prevent execution of identical queries, thus boosting performance. Should only be used for queries where multiple identical queries may be run (such as looking up user id’s or picklist values) – otherwise could consume resources needlessly.
 
|-
|-
|<br>
| ExecSQL
ExecSQL
| Executes a non-query statement, such as UPDATE or DELETE against the destination database. Returns number of rows affected. Compatible with OLE DB destinations.
 
|<br>
Executes a non-query statement, such as UPDATE or DELETE against the destination database. Returns number of rows affected. Compatible with OLE DB destinations.
 
|-
|-
|<br>
| SendEmail ( String, String, String )
SendEmail ( String, String, String )
| Sends an email directly from within the VBScript function/procedure.


|<br>
Sends an email directly from within the VBScript function/procedure.
Parameters:
Parameters:


To_Addr – Email Recipient Address
To_Addr – Email Recipient Address


Subject – Subject of the Email
Subject – Subject of the Email


Body – Body of the Email
Body – Body of the Email
|-
|-
|<br>
| ParseName ( String, String )
ParseName ( String, String )
| Parses as string containing a person’s name, and returns the part of the name requested.
 
|<br>
Parses as string containing a person’s name, and returns the part of the name requested.


Parameters:
Parameters:


String – Input String containing entire name
String – Input String containing entire name


Part – Part of the name to return. Valid parts are “Title”,”First”,”Last”,”Middle”,”Pedigree”,”Degree”.
Part – Part of the name to return. Valid parts are “Title”,”First”,”Last”,”Middle”,”Pedigree”,”Degree”.
|-
|-
|RemoveIllegalXMLCharacters ( String )
| RemoveIllegalXMLCharacters ( String )
|This function removes Illegal XML Characters from a string.
| This function removes Illegal XML Characters from a string. This function can be used on a string before inserting it into the Target to resolve the "error in msg parsing: XML error parsing SOAP payload on line 32: Invalid character" error.
 
This function can be used on a string before inserting it into the Target to resolve the "error in msg parsing: XML error parsing SOAP payload on line 32: Invalid character" error.
 
 
|-
|-
|<br>
| GetStageValue ( Integer, String)
GetStageValue ( Integer, String)
| Returns the destination value used on a previous stage.


|<br>
Returns the destination value used on a previous stage.
Integer – Index number of the stage, 0-based.
Integer – Index number of the stage, 0-based.


String – Field name of the value from this stage to return.
String – Field name of the value from this stage to return.


 
For some of the CRM Native API’s (SData, Microsoft), generated ID’s will be automatically stored in a field named “Key”.
For some of the CRM Native API’s (SData, Microsoft), generated ID’s will be automatically stored in a field named “Key”.
|-
|-
|<br>
| SmartLookup ( String, String, String, [Boolean], [String], [String] )
SmartLookup ( String, String, String, [Boolean], [String], [String] )
| Performs a lookup against the destination database, and returns one field value based on supplied filter.


|<br>
Performs a lookup against the destination database, and returns one field value based on supplied filter.
String – Table to perform lookup in
String – Table to perform lookup in


String – Name of field to return
String – Name of field to return


String – Filter code (such as Where clause, not including keyword “Where”)
String – Filter code (such as Where clause, not including keyword “Where”)


Boolean – Default False. Enable cache for this lookup.
Boolean – Default False. Enable cache for this lookup.<br>


String – Default Blank. Order By
String – Default Blank. Order By


String – Default "DESTINATION". Use "ORIGIN" to query the Origin.
String – Default "DESTINATION". Use "ORIGIN" to query the Origin.
|-
|-
|<br>
| SmartQuery ( String, [String], [String])
SmartQuery ( String, [String], [String])
| Performs a lookup query against the destination database, returns all columns and all rows from query as a multi-dimensional array.


|<br>
Performs a lookup query against the destination database, returns all columns and all rows from query as a multi-dimensional array.
String – Table to perform the query in
String – Table to perform the query in


String – Filter code
String – Filter code


String – Default All Columns. Comma-separated list of columns to return
String – Default All Columns. Comma-separated list of columns to return


If both last 2 parameters are left blank, SmartQuery performs a full operation as specified in the first parameter.
If both last 2 parameters are left blank, SmartQuery performs a full operation as specified in the first parameter.
|-
|-
|<br>
| XrefInitWrite ( String )
XrefInitWrite ( String )
| Initializes a cross-reference file for writing. If file exists, new data will be appended to it.
 
|<br>
Initializes a cross-reference file for writing. If file exists, new data will be appended to it.


String – cross-reference name
String – cross-reference name
|-
|-
|<br>
| XrefInitRead ( String )
XrefInitRead ( String )
| Initializes an existing cross-reference for reading. This reads all ids into memory so they will be available within your job.
 
|<br>
Initializes an existing cross-reference for reading. This reads all ids into memory so they will be available within your job.


String – cross-reference name
String – cross-reference name
|-
|-
|<br>
| XrefWrite ( String, String, String )
XrefWrite ( String, String, String )
| Writes a new ID reference entry to an initialized file.


|<br>
Writes a new ID reference entry to an initialized file.
String – cross-reference name
String – cross-reference name


String – ID 1 (the ID you’ll look up by in future jobs)
String – ID 1 (the ID you’ll look up by in future jobs)


String – ID 2 (the ID you’ll want returned by future lookups)
String – ID 2 (the ID you’ll want returned by future lookups)
|-
|-
|<br>
| XrefRead ( String, String )
XrefRead ( String, String )
| Reads an ID entry from an initialized file. (Returns ID 2 from above)


|<br>
Reads an ID entry from an initialized file. (Returns ID 2 from above)
String – cross-reference name
String – cross-reference name


String – ID 1
String – ID 1
|-
|-
|<br>
| BlackbirdMessage ( String, String, String, String, [String], [String] )
BlackbirdMessage ( String, String, String, String, [String], [String] )
| Send a Blackbird Alert message (server is specified in Web.config)


|<br>
Send a Blackbird Alert message (server is specified in Web.config)
String – Message Title
String – Message Title


String – Message Text/Body
String – Message Text/Body


String – To (user or group to receive message)
String – To (user or group to receive message)


String – URL where message link will forware to
String – URL where message link will forware to


String – Icon, Default “Info”. Choose from: Info, Warning, Error, Question, Star, Check, Search, Globe, Phone, Users, Lock, Task, Bell, Cellphone, Envelope, Calendar, Flag, Charts, Calculator, Fax
String – Icon, Default “Info”. Choose from: Info, Warning, Error, Question, Star, Check, Search, Globe, Phone, Users, Lock, Task, Bell, Cellphone, Envelope, Calendar, Flag, Charts, Calculator, Fax


String – System, Default <blank>. Name of External System for use with To-ID matching.
String – System, Default &lt;blank&gt;. Name of External System for use with To-ID matching.
 
|-
|-
|<br>
| IsEmailValid ( String )
IsEmailValid ( String )
| Returns True if supplied email address is in a valid email format; otherwise false.
 
|<br>
Returns True if supplied email address is in a valid email format; otherwise false.
 
|-
|-
|<br>
| FormatDate ( String, String )
FormatDate ( String, String )
| Returns date in supplied format.


|<br>
Returns date in supplied format.
String – Date to format
String – Date to format


String – Format String
String – Format String


Example:
''Example: ''


newdt = FormatDate(olddt, “yyyy-MM-dd hh:mm:ss”)
newdt = FormatDate(olddt, “yyyy-MM-dd hh:mm:ss”)
|-
|-
|<br>
| MoveFile ( String, String )
MoveFile ( String, String )
| Moves a file on the server.
 
|<br>
Moves a file on the server.


String – From filename path
String – From filename path


String – To filename path
String – To filename path
|-
|-
|<br>
| CopyFile ( String, String )
CopyFile ( String, String )
| Copies a file on the server.


|<br>
Copies a file on the server.
String – From filename path
String – From filename path


String – To filename path
String – To filename path
|-
|-
|<br>
| DeleteFile ( String )
DeleteFile ( String )
| Deletes a file on the server.


|<br>
Deletes a file on the server.
String – Filename path
String – Filename path
|-
|-
|<br>
| ReadFile ( String )
ReadFile ( String )
| Reads a file in text mode and returns the contents as a string.


|<br>
Reads a file in text mode and returns the contents as a string.
String – Filename path
String – Filename path
|-
|-
|<br>
| WriteFile ( String, String )
WriteFile ( String, String )
| Writes the supplied contents to a file in text mode. Entire file is overwritten.
 
|<br>
Writes the supplied contents to a file in text mode. Entire file is overwritten.


String – Filename path
String – Filename path


String – contents to write to the file
String – contents to write to the file
 
|- style="background-color: #ffffcc; font-weight: bold;"
| colspan="2" | MS Dynamics CRM-Specific
|-
|<br>
'''MS Dynamics CRM-Specific'''
 
|-
|-
|<br>
| GetMCRMPicklistValue( String, String, String )
GetMCRMPicklistValue( String, String, String )
| Returns the integer value for a supplied picklist string.


|<br>
Returns the integer value for a supplied picklist string.
String – Entity for the picklist (“account”)
String – Entity for the picklist (“account”)


String – Fieldname of the picklist (“accounttype”)
String – Fieldname of the picklist (“accounttype”)


String – Value for the picklist (“Prospect”)
String – Value for the picklist (“Prospect”)
|-
|-
|<br>
| MCRMSetRelationship ( String, String, String, String, String )
MCRMSetRelationship ( String, String, String, String, String )
| Sets a relationship between two entites.


|<br>
Sets a relationship between two entites.
String – Relationship Name
String – Relationship Name


String – Entity 1 Name
String – Entity 1 Name


String – Entity 1 ID
String – Entity 1 ID


String – Entity 2 Name
String – Entity 2 Name


String – Entity 2 ID
String – Entity 2 ID
 
|- style="background-color: #ffffcc; font-weight: bold;"
| colspan="2" | SugarCRM-Specific
|-
|-
|<br>
| SugarSetRelationship (String, String, String, String )
'''SugarCRM-Specific'''
| Sets a relationship between two modules. Returns True or False based on the success of creating a relationship.
 
|-
|<br>
SugarSetRelationship (String, String, String, String )
 
|<br>
Sets a relationship between two modules. Returns True or False based on the success of creating a relationship.


String – Module 1 Name
String – Module 1 Name


String – Module 1 ID
String – Module 1 ID


String – Module 2 Name
String – Module 2 Name


String – Module 2 ID
String – Module 2 ID
|-
|-
|<br>
| SugarSetRelationshipv4 (String, String, String, String, Number(Optional) )
SugarSetRelationshipv4 (String, String, String, String, Number(Optional) )
| Sets a relationship between two entities, compatible also with custom modules. Returns True or False based on the success of creating a relationship. Also able to remove a relationship between two entities with the optional fifth parameter.


|<br>
Sets a relationship between two entities, compatible also with custom modules.
Returns True or False based on the success of creating a relationship.  Also able to remove a relationship between two entities with the optional fifth parameter.
String – Module 1 Name
String – Module 1 Name


String – Module 1 ID
String – Module 1 ID


String – Relationship Name
String – Relationship Name


String – Module 2 ID
String – Module 2 ID


String – [Delete] (Optional) – Default is 0 (false). Set to 1 (true) to Delete a relationship.
String – [Delete] (Optional) – Default is 0 (false). Set to 1 (true) to Delete a relationship.
 
|-
|-
|<br>
| SugarGetRelationships ( String, String, String )
SugarGetRelationships ( String, String, String )
| Gets comma-separated a list of ID’s related to an entity
 
|<br>
Gets comma-separated a list of ID’s related to an entity


String – Module 1 Name
String – Module 1 Name


String – Module 1 ID
String – Module 1 ID


String – Module 2 Name
String – Module 2 Name
|-
|-
|<br>
| SugarGetRelationshipsv4 ( String, String, String )
SugarGetRelationshipsv4 ( String, String, String )
| Gets comma-separated a list of ID’s related to an entity


|<br>
Gets comma-separated a list of ID’s related to an entity
String – Module 1 Name
String – Module 1 Name


String – Module 1 ID
String – Module 1 ID


String –Relationship Name
String
|- style="background-color: #ffffcc; font-weight: bold;"
 
| colspan="2" | Email (IMAP)-Specific
Relationship Name
|-
|-
|<br>
| MoveIMAPMessage ( String )
'''Email (IMAP)-Specific'''
| Moves the current email message to the specified folder on the server.


|-
|<br>
MoveIMAPMessage ( String )
|<br>
Moves the current email message to the specified folder on the server.
String – Name of IMAP folder to move message to
String – Name of IMAP folder to move message to
|}
|}
<br>

Revision as of 16:46, 27 October 2014

From within VBScript operations (ScriptedVariable, VBScriptProcedure, ScriptedField) in additional to normal VBScript functions, the developer has access to a custom “Starfish” class. The tables below define its usage. This class may also be used with C# scripting.

Class Properties

Property Name Description
CurrentStageName Read-only. Returns the name of the current stage. Useful during “Repeat Each Stage” Exec Operations to determine path of execution/next steps.
TotalRows Returns the total number of Origin Rows in the job.
CurrentRow Returns the current row number.
ReturnValue Sets the return value to the calling application. Useful for passing an output back when the Job was called with an argument.
Origin ( String ) Returns the current Origin row’s value for the field specified.
PreviewMode This boolean variable can be used to determine if you are Previewing or Running a Job. Returnes True of False. Ex: If PreviewMode <> True Then...

Class Methods

Method Name Description
GotoStage ( String ) Directs Starfish Engine to go directly to a Stage (skipping any others before it). String Parameter is the Name of the stage to go to. Once GotoStage has been called within a Job, it is considered in a “manual operation mode”. No more stages will be called in order and it will be up to the user to implement a After Each Stage Exec Operation to control stage flow. If no After Operation is called, it will go to the next row after the stage runs.
GotoNextRow () Skips all Stages and moves to the next Origin row.
EndJob ( String ) Cancels the Job execution immediately, ending with an error message as passed into the String param.
LogMessage ( String, MsgBoxStyle ) Appends a custom message to the Log which will always be displayed (even if Logging Level is set to None). Message is the passed in String parameter. Second parameter is a valid MsgBoxStyle (vbInformation, vbQuestion, vbExclamation, vbCritical)
GetFields ( String ) Executes a SQL SELECT statement returns all field values from the first row, comma-delimited. VBScript Split() function may be used to convert to an array within your function. Can improve performance when needing multiple fields from a single table.
ExecScalar ( String, String(Optional) ) Executes a SQL SELECT statement on the Destination database. Returns the first column of the first row returned by the query. Compatible with OLE DB destinations.

There is an optional parameter to query the origin. To query the origin, use the second parameter of "ORIGIN"EX: ExecScalar("select id from company", "ORIGIN")

ExecScalarCache ( String ) Same as ExecScalar, except that results are cached and before a query is executed, a search is performed on a locally-stored set of results to prevent execution of identical queries, thus boosting performance. Should only be used for queries where multiple identical queries may be run (such as looking up user id’s or picklist values) – otherwise could consume resources needlessly.
ExecSQL Executes a non-query statement, such as UPDATE or DELETE against the destination database. Returns number of rows affected. Compatible with OLE DB destinations.
SendEmail ( String, String, String ) Sends an email directly from within the VBScript function/procedure.

Parameters:

To_Addr – Email Recipient Address

Subject – Subject of the Email

Body – Body of the Email

ParseName ( String, String ) Parses as string containing a person’s name, and returns the part of the name requested.

Parameters:

String – Input String containing entire name

Part – Part of the name to return. Valid parts are “Title”,”First”,”Last”,”Middle”,”Pedigree”,”Degree”.

RemoveIllegalXMLCharacters ( String ) This function removes Illegal XML Characters from a string. This function can be used on a string before inserting it into the Target to resolve the "error in msg parsing: XML error parsing SOAP payload on line 32: Invalid character" error.
GetStageValue ( Integer, String) Returns the destination value used on a previous stage.

Integer – Index number of the stage, 0-based.

String – Field name of the value from this stage to return.

For some of the CRM Native API’s (SData, Microsoft), generated ID’s will be automatically stored in a field named “Key”.

SmartLookup ( String, String, String, [Boolean], [String], [String] ) Performs a lookup against the destination database, and returns one field value based on supplied filter.

String – Table to perform lookup in

String – Name of field to return

String – Filter code (such as Where clause, not including keyword “Where”)

Boolean – Default False. Enable cache for this lookup.

String – Default Blank. Order By

String – Default "DESTINATION". Use "ORIGIN" to query the Origin.

SmartQuery ( String, [String], [String]) Performs a lookup query against the destination database, returns all columns and all rows from query as a multi-dimensional array.

String – Table to perform the query in

String – Filter code

String – Default All Columns. Comma-separated list of columns to return

If both last 2 parameters are left blank, SmartQuery performs a full operation as specified in the first parameter.

XrefInitWrite ( String ) Initializes a cross-reference file for writing. If file exists, new data will be appended to it.

String – cross-reference name

XrefInitRead ( String ) Initializes an existing cross-reference for reading. This reads all ids into memory so they will be available within your job.

String – cross-reference name

XrefWrite ( String, String, String ) Writes a new ID reference entry to an initialized file.

String – cross-reference name

String – ID 1 (the ID you’ll look up by in future jobs)

String – ID 2 (the ID you’ll want returned by future lookups)

XrefRead ( String, String ) Reads an ID entry from an initialized file. (Returns ID 2 from above)

String – cross-reference name

String – ID 1

BlackbirdMessage ( String, String, String, String, [String], [String] ) Send a Blackbird Alert message (server is specified in Web.config)

String – Message Title

String – Message Text/Body

String – To (user or group to receive message)

String – URL where message link will forware to

String – Icon, Default “Info”. Choose from: Info, Warning, Error, Question, Star, Check, Search, Globe, Phone, Users, Lock, Task, Bell, Cellphone, Envelope, Calendar, Flag, Charts, Calculator, Fax

String – System, Default <blank>. Name of External System for use with To-ID matching.

IsEmailValid ( String ) Returns True if supplied email address is in a valid email format; otherwise false.
FormatDate ( String, String ) Returns date in supplied format.

String – Date to format

String – Format String

Example:

newdt = FormatDate(olddt, “yyyy-MM-dd hh:mm:ss”)

MoveFile ( String, String ) Moves a file on the server.

String – From filename path

String – To filename path

CopyFile ( String, String ) Copies a file on the server.

String – From filename path

String – To filename path

DeleteFile ( String ) Deletes a file on the server.

String – Filename path

ReadFile ( String ) Reads a file in text mode and returns the contents as a string.

String – Filename path

WriteFile ( String, String ) Writes the supplied contents to a file in text mode. Entire file is overwritten.

String – Filename path

String – contents to write to the file

MS Dynamics CRM-Specific
GetMCRMPicklistValue( String, String, String ) Returns the integer value for a supplied picklist string.

String – Entity for the picklist (“account”)

String – Fieldname of the picklist (“accounttype”)

String – Value for the picklist (“Prospect”)

MCRMSetRelationship ( String, String, String, String, String ) Sets a relationship between two entites.

String – Relationship Name

String – Entity 1 Name

String – Entity 1 ID

String – Entity 2 Name

String – Entity 2 ID

SugarCRM-Specific
SugarSetRelationship (String, String, String, String ) Sets a relationship between two modules. Returns True or False based on the success of creating a relationship.

String – Module 1 Name

String – Module 1 ID

String – Module 2 Name

String – Module 2 ID

SugarSetRelationshipv4 (String, String, String, String, Number(Optional) ) Sets a relationship between two entities, compatible also with custom modules. Returns True or False based on the success of creating a relationship. Also able to remove a relationship between two entities with the optional fifth parameter.

String – Module 1 Name

String – Module 1 ID

String – Relationship Name

String – Module 2 ID

String – [Delete] (Optional) – Default is 0 (false). Set to 1 (true) to Delete a relationship.

SugarGetRelationships ( String, String, String ) Gets comma-separated a list of ID’s related to an entity

String – Module 1 Name

String – Module 1 ID

String – Module 2 Name

SugarGetRelationshipsv4 ( String, String, String ) Gets comma-separated a list of ID’s related to an entity

String – Module 1 Name

String – Module 1 ID

String –Relationship Name

Email (IMAP)-Specific
MoveIMAPMessage ( String ) Moves the current email message to the specified folder on the server.

String – Name of IMAP folder to move message to