How to set Service Catalog Item variable value in ServiceNow workflow

The following code will be used to set the catalog item variable value in ServiceNow workflow run script activity

// If the variable is not part of a variable set
current.variables.your_variable_name =’yes’ ;

// Otherwise
current.variable_pool.your_variable_name = ‘yes’;