Hi NetSuite rockstars, my team has recently moved ...
# general
c
Hi NetSuite rockstars, my team has recently moved to NS and enabled bank feeds. As you all know, the feed imports 2 months of trailing bank transactions. We'd like to exclude all the transactions before our go live date of 11/1. It seems the only option is to individually select the check boxes of each bank transaction. We have ~10,000 transactions to exclude and desperately hope one of you wizards has a more expedient way to accomplish this.
beg 1
1
1
d
This way or script. No standard functionality
c
@Deepthi could you elaborate on the script option?
d
I havent used it. But i was told this was the only alternative
cat and vegetables 1
c
Gotcha, could you at least specify a particular script name or a post somewhere?
t
would love to know this as well. Not having a 'select all' button' in the match bank data for the imported bank data makes no sense
d
This is a specific script developed by my pervious company
Sorry couldnt be of much help
w
In the browser console:
Copy code
var nodes = document.querySelectorAll('span[id^="uif"][role="checkbox"][aria-checked="false"]').forEach(node => node.click())
😲 2
1000 1
2
thankyou 1
🙏 1
👀 1
It just clicks all the checkboxen on the page. I think it is 300 per page or something. You still need to do it several times.
c
@Watz you are a god among us 💋
w
(Been there, done that) 😂
💯 1
thankyou 1
🙌 1
c
This option should be more widely publicized. Our implementation team doesn't even know about it, they're been going through and clicking the boxes individually for the last 3 days. Thanks again, Watz.
s
Note the by going in to browser console you may screw up things. That's why NS does not recommend using Console or DOM hacks. Do it on your own risk
w
If the implementation team can bill those hours…
💸 2