2022

Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. User has to login to DBSync ipaas and navigate to Functions page
  2. Click on New Function which will navigate to a Function Creation screen
  3. Name a Function of his choice and define the function is the space provided 

Please find the screenshot below which illustrates the creation of a function 

Image Added

The Code snippet for you to use is as given below 

Code Block
 
//@UserDefined
function fullName(firstName, lastName){
  return firstName + " " + lastName;
}
function fullName(firstName, lastName){  return firstName + " " + lastName;
}