Hi,
Am able to retrieve data from data request (table) and pass it to JRuby script to display the data in HTML table format. But the same is not working when trying to retrieve from business view.
Below is the working JRuby script involving table. Any suggestions on how to make it work for business view ?
require 'json'
def main(orchAttr, inputMap)
returnMap = {}
# Add logic here
input = inputMap["input"]
jsonIn = JSON.parse(input)
#Header row for HTML table...
Read more
Am able to retrieve data from data request (table) and pass it to JRuby script to display the data in HTML table format. But the same is not working when trying to retrieve from business view.
Below is the working JRuby script involving table. Any suggestions on how to make it work for business view ?
require 'json'
def main(orchAttr, inputMap)
returnMap = {}
# Add logic here
input = inputMap["input"]
jsonIn = JSON.parse(input)
#Header row for HTML table...
Read more