-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Add parent_account_id to netsuite2_transaction_details #141
Comments
Hey there @kenzie-marsh thanks for opening this, I think this makes a ton of sense to add! If you're still down to implement, we'd want to include the following:
And we'll prioritize reviewing, polishing, and merging in your PR 🎉 |
thanks @fivetran-jamie I just ran into a similar problem, where we also really need the location ID for the purpose of later joins, but the transaction details table only includes the following (line 192):
I haven't actually made a change like this before that would require a version upgrade and whatnot. Plus, considering that I've found a few of these now, I think it would be helpful to get someone from Fivetran's eyes on this to make sure that other cases where IDs could be useful are also added in. Do you think that would be possible? |
@kenzie-marsh We actually have an open ticket for adding in ID columns like I've added all the ID fields we're still missing from Also if you're still open to creating a PR, we'd be happy to apply all the version-upgrading stuff and polishes from our end! |
That ticket looks perfect!! Would be so so helpful. Are y'all planning on working on that, can I upvote it or anything like that? I don't think I'd be able to create that PR unfortunately |
HI @kenzie-marsh , |
Is there an existing feature request for this?
Describe the Feature
Add parent account id to the select statement (along with the parent account name which is already present)
How would you implement this feature?
coalesce(parent_account.account_id, accounts.account_id) as parent_account_id,
to line 152 on the netsuite2_transaction_details model, in keeping with the account name fieldDescribe alternatives you've considered
Currently we are having to join to the stg accounts table data downstream to bring in the id
Are you interested in contributing this feature?
Anything else?
If this solution seems reasonable, I could implement it. thanks!
The text was updated successfully, but these errors were encountered: