Designing and Running Pipelines
Discuss how to use the SnapLogic platform.
cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Ultra pipeline sending no response

i’m creating an ultra task for my pipeline and tried to execute it through third party client. But i’m receiving no response though i have an un-linked input and output view. Also in dashboard my pipeline is showing inactive… any suggestions?? this i...

AdityaReja by New Contributor III
  • 1703 Views
  • 2 replies
  • 0 kudos

Writing a forEach

Hello, I have a use case where I am getting my input in tab delimited form, which after doing a groupBy N I am converting to an array so that I can make some comparison operation. I need to extract the records from this array group for below mentione...

Update table redshift

I have a requirement where I need to populate running totals: Eg. Date Product value cum_total 20180201 abc 5 5 20180202 abc 2 7 20180203 ...

Raj by New Contributor II
  • 1966 Views
  • 4 replies
  • 1 kudos

Create array using script snap

Hi Everyone, I have written a simple javascript code in Script snap. Please find the code below: script = { execute : function() { while (input.hasNext()) { var test = [“a”, “b”]; try { outpu...

abjoe by New Contributor II
  • 4165 Views
  • 3 replies
  • 3 kudos

LDAP generating null error

i’m trying to make an LDAP search for multiple value at the same time. I’m getting a value from pipeline parameter, which is a space separated string and i need to split the string and make filter condition for each string. filter condition is correc...

AdityaReja by New Contributor III
  • 1525 Views
  • 2 replies
  • 0 kudos

How to format time stamp?

Date.now().toString() - it provides the result - 2014-09-22T00:00:00.000Z(like this) but i need time stamp like - 2014-09-22T00:00:00.00Z. I want only two digits before Z. Thank you for the help in advance

aspanda by New Contributor II
  • 1274 Views
  • 1 replies
  • 1 kudos

Question for javascript

Hi Suppose i have below json. { "id":"1", "name":"name1" "age": 5 } I want to use javascript to add an additional field “schools” into above json to be like { "id":"1", "name":"name1" "age": 5, "schools":[ { ...