cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

How to get value based on a incoming document

the_pan_zone
New Contributor

Hi, I have the below input data

AccountName,AccountID,PAccountID
Abc,5467,6000
dsd,6000,7000
dfghyh,7000,5467

In the output I want the Parent account name based on the input so the output will be like

AccountName,AccountID,PAccountID, PAccountName
Abc,5467,6000,dsd
dsd,6000,7000,dfghyh
dfghyh,7000,5467,Abc

Please help me how can I achieve that?

10 REPLIES 10

smudassir
Employee
Employee

In the above json content, child appears to be before parent. So we can use Script snap to solve this. We have to cache all the documents. Once all the input docs are received then we can write to the output view as desired.

bojanvelevski
Valued Contributor

Hey @the_pan_zone,

Hereโ€™s a pipeline that does exactly what you need:

Inherit Parent AccountName_2021_12_01.slp (5.7 KB)

If by any means, there is a mistake in your CSV sample, because as @smudassir said, the child appears before the parent, and you need it other way around, than you need to change the Mapper expression to :

$input0.map((x,index)=> index == 0 ? x.extend({"PAccountName":$input0[$input0.length -1].AccountName}) : x.extend({"PAccountName":$input0[index-1].AccountName}))

Regards,

Thanks @bojanvelevski
it is workingโ€ฆDo you think it will work for .1 million records?

Hi @bojanvelevski ,

If I add one more row and change the source data
AccountName,AccountID,PAccountID
Abc,5467,6000
dsd,6000,7000
dfghyh,7000,5467
new,5000,5467

This time the code is not working