Login    Sites MenuBlueStep

BlueStep Platform Support

RelateScript
Outline full outline 
Overview 
Data Types 
Operators 
Order of Operations 
Assignment 
String Concatenation 
Arithmetic & Date/Time Operators 
Comparative Operators 
Logical Operators 
Casting Operators 
Increment and Decrement Operators 
The Conditional Operator 
Bitwise Operators 
Statements 
The if Statement 
The while Loop Statement 
The do/while Loop Statement 
The for Loop Statement 
The for/in Loop Statement 
The continue Statement 
The break Statement 
The Array Creation Statement 
Functions 
Data Conversion 
String Functions 
HTML/CSS/JavaScript 
decodeURI(...) 
diff(...) 
encodeURI(...) 
getButtonHTML(...) 
getButtonURL(...) 
getPopInScript(...) 
newJSONArray(...)
B.xmlToJsonString
 
newJSONObject(...)
B.xmlToJsonString
 
putContent(...)
B.pageContent
 
scriptIncl(...) 
scriptTag(...) 
toHTML(...) 
toPlainText(...) 
Array Functions 
Date/Time Functions 
Mathematical Functions 
Advanced Functions 
Restricted Functions 
clearCache()
B.clearCache
 
clearLock(...)
B.clearLock
 
End Point request/response
B.request,B.response
 
executeQuery(...)
B.executeQuery
 
logKeyword(...) 
Mckesson Functions 
prepareLookup(...) 
setBioImage() 
storeString(...) 
storeURL(...) 
Web Services 
getNewSoapClient(...)
B.createSoapClient, B.createJaxWsSoapClient
 
SoapObject 
Sample Code 
Working with Relate Data 
How Formulas Work 
Related Topics 

Expressions are evaluated in the order listed below:

 

Operator(s) Description Evaluation Order
() Parenthesis N/A
. or  [] Field/Method Access, Array Access left-to-right
++  or  -- Post-Increment/Decrement N/A
-  or  ++  or  --  or  ~  or  !  or  Cast Negate, Pre-Increment, Pre-Decrement, Bitwise Complement, Logical Complement (NOT), Cast right-to-left
*  or  /  or  % Multiply, Divide, Remainder left-to-right
-  or  + Subtract, Add/Concatenate left-to-right
<<  or  >>  or  >>> Shift left-to-right
<  or  >  or  <=  or  >= Relational Comparison N/A
==  or  != Equality, Inequality left-to-right
& Logical/Bitwise AND left-to-right
^ Logical/Bitwise XOR left-to-right
| Logical/Bitwise OR left-to-right
&& Conditional AND left-to-right
|| Conditional OR left-to-right
? : Conditional Operator N/A
=  or  *=  or  /=  or  %=  or  +=  or  -=  or  |=  or  <<=  or  >>=  or  >>>=  or  &=  or  ^= Assignment right-to-left