Friday, December 26, 2014

Fusion Groovy

My goal is to create a UI and call web services.
def vo = ('TroubleTicket_c') 

executeQuery() Executes the view object's query with any
currently applied view criteria filters.
Returns: - void.

def indexes = 1..100
for (j in indexes) {
// do something with j here
}

for (j in 1..100) {
// do something with j here
}