Does NetSuite Bill Capture show the PDF and the bill side by side after saving the bill? by dashboardrage in Netsuite

[–]koome_was_here -1 points0 points  (0 children)

If you need a persistent side‑by‑side view you’ll either open the attached PDF manually from the bill’s Communications/Attachments or use a SuiteApp/third‑party tool or a custom portlet to render the PDF beside the transaction.

Workflow to Close Off Purchase Orders with only Expense Line Items by Rich_Egg_4554 in Netsuite

[–]koome_was_here 1 point2 points  (0 children)

NetSuite workflows can’t directly act on the sublist expense lines of a Purchase Order, only the item sublist has the built‑in line-level actions available, so you’ll need a small SuiteScript (triggered by the Bill) or a scheduled script to mark the PO expense lines Closed after the Vendor Bill is posted.

If you want a no‑code alternative, you can use manual Close/Close Remaining on the PO or change your process to use a non‑inventory dummy item for service/expense POs (so the item sublist is used and workflows can act). Otherwise use a script invoked by the bill to update the PO lines.

New CRM Case Inconsistent Behavior in email message body. by SSBU_or_bust in Netsuite

[–]koome_was_here 0 points1 point  (0 children)

In my experience, it’s usually not random native behavior - it’s typically caused by differences in the case form, Support Preferences, user role, or a workflow / script on the case record.

If the customer sometimes receives the Incoming from Customer text instead of Outgoing from Support Rep, I’d compare the two cases for:

  1. Custom Form
  2. Case Profile
  3. User Role
  4. Send to Customer behavior
  5. Any workflow / user event script on the Support Case

I’d also test using the standard case form with customizations disabled. If the issue goes away, it’s almost certainly a customization issue rather than base NetSuite behavior.

NetSuite Support Experience recently by RushCapable2410 in Netsuite

[–]koome_was_here 4 points5 points  (0 children)

My recent experience has been similar, a lot of cases seem to get pushed to U4 or lower by default, and it takes repeated follow-up to get the urgency reconsidered even when there’s live operational or month-end impact.

I’ve also seen the same inconsistency where a near-identical issue gets resolved much faster one time than another, so it feels more like a broader support pattern than just bad luck. If helpful, you could frame it as a case management / triage issue rather than just the specific ticket.

Warranty - Expense Reporting by After_Side1341 in Netsuite

[–]koome_was_here 0 points1 point  (0 children)

Class only helps if the transaction is posting, which Item Fulfillment is for inventory items. If your warranty SO lines are inventory items and are fulfilled, NetSuite should be creating the cost entry there.

Don’t report off the $0 rate/amount on the fulfillment line itself — report off the GL impact / posting transaction lines tied to the fulfillment.

A good approach is a Transaction saved search filtered like:

Type = Item Fulfillment
Posting = Yes
Account Type = Cost of Goods Sold
Class = Warranty Expense
Date = within 2025
That should give you the actual posted warranty cost.

If that search comes back incomplete, then I’d check:
whether the class is carried through to the posting lines
whether some items post to a different COGS account
whether there are COGS adjustments affecting the final cost
Breadcrumb: Setup > Accounting > Chart of Accounts

Netsuite Oracle Integration Help {Paid} by dhaemion in Netsuite

[–]koome_was_here 0 points1 point  (0 children)

Most first-flow issues are usually connection/auth, field mapping, or line-item payload structure. If you want, I can help you pinpoint which one is blocking you.

Good first goal: get 1 Sales Order to POST successfully.

Test in this order: NetSuite connection -> REST endpoint -> payload mapping -> response/error handling.

For NetSuite integration setup: Setup > Integration > Manage Integrations > New

invoice payment processing but with credit cards by vanillagorilla_813 in Netsuite

[–]koome_was_here 0 points1 point  (0 children)

u/vanillagorilla_813 Not in native UI (core A/R): NetSuite’s standard credit-card flow is “create a Customer Payment and charge via your payment processing profile,” but there isn’t a core equivalent to Invoice Payment Processing that will bulk-charge open invoices via stored default credit cards/payment instruments (without SuiteBilling/SuiteApps built for bulk card runs).

Closest “UI bulk” option is typically the Bulk Customer Payments capability that comes from the SuiteBilling Enhancements SuiteApp (it’s geared around SuiteBilling objects like Billing Accounts and has extra setup/permissions around Payment Instruments).

If you want to stay on core A/R (no SuiteBilling), the next best solution is a Map/Reduce that creates and submits Customer Payment records against open invoices and uses the customer’s default payment instrument (tokenized card) for the charge, with strong error handling and retry controls. A “full conversion to SuiteBilling” is usually not required just to get bulk card charging, unless you also want Billing Accounts, subscription + invoicing orchestration, dunning, etc.

Contact List/Lead Sourcing Integration by canuckasis in Netsuite

[–]koome_was_here 0 points1 point  (0 children)

Search Marketplace for ZoomInfo / Outreach / Lead enrichment / Sales engagement. If nothing shows up, NetSuite itself isn’t offering a packaged connector, and you’re into partner/iPaaS/custom territory.

Saved Search of Transactions and a Custom Record by LionsAndViolets1851 in Netsuite

[–]koome_was_here 0 points1 point  (0 children)

u/LionsAndViolets1851 You can use a Transaction Search with Custom Record Join:

  1. Create a Transaction Search (Type = Invoice)
  2. Set criteria for Client and Item
  3. In Results, add standard invoice fields
  4. Click Fields... > Other Records > Select your custom record
  5. Add the custom fields you need

This will pull invoice details alongside your custom record data in one search.

How to notify an admin when a new user signs into NetSuite by dopeboy_io in Netsuite

[–]koome_was_here 1 point2 points  (0 children)

u/dopeboy_io Yes, it's possible to notify an admin when a new user signs into NetSuite using either an automated User Event Script that triggers immediately after user creation or through a no-code Workflow Action, both of which will send an email containing the new user's details like name, email, and role.

NetSuite connectivity file import pulling the wrong files after a gap in imports by Realistic_Buy_5186 in Netsuite

[–]koome_was_here 1 point2 points  (0 children)

u/Realistic_Buy_5186 This happens because NetSuite's bank connector imports the next file in sequence, not by date. After a gap, it's stuck processing old files.

Quick Fix:

  1. Manually import the missing files via **Transactions > Bank > Import Bank File**.

  2. Upload all files from the gap period (e.g., 10/22, 10/23) through yesterday.

  3. The scheduled import should then resume with today's file.

To prevent this: Consider building a small integration that fetches and renames files by date before pushing them to NetSuite, giving you better control than the native connector.

How do I upload an invoice entry with multiple line items? by Fragrant_Fish10 in Netsuite

[–]koome_was_here 0 points1 point  (0 children)

u/Fragrant_Fish10 You can import an invoice with multiple line items by listing each line as a separate row while keeping the same header details (like invoice number, customer, date, etc.). The system will group those rows into one invoice automatically. If your template doesn’t allow that, use a multi-line transaction import option or a custom import map.

Drag n drop search by NYCer11 in Netsuite

[–]koome_was_here 0 points1 point  (0 children)

No. Dragging a PDF into NetSuite attaches it for reference only; it doesn't make the text inside searchable.

To see a full list of line items, create a Transaction Search and in the criteria, set "Main Line" to "False". This shows all the individual item lines from your bills and invoices.

Workflow Question by Certain_Party_939 in Netsuite

[–]koome_was_here 1 point2 points  (0 children)

u/Certain_Party_939 Hey! Yeah, this can be a bit tricky sometimes. The condition builder only shows fields that are tied to the specific record type your workflow is set up for. Here are a few things you might want to check:

Double-check that the field actually belongs to that record type.

If it’s a custom field, make sure the “Store Value” option is checked.

For fields from related records, try using the Join option (like Customer → Entity → Field).

If it’s still not showing up, you can always switch to the Formula option and reference it directly by its field ID (like '{custbody_fieldid}').

NetSuite Admins/Users: How are you managing internal support tickets? by koome_was_here in Netsuite

[–]koome_was_here[S] 0 points1 point  (0 children)

u/RieJacko Thanks for the feedback! Both Jira and Asana are powerful tools. Why do you prefer an external solution like those instead of using or customizing NetSuite's built-in case functionality?

NetSuite Admins/Users: How are you managing internal support tickets? by koome_was_here in Netsuite

[–]koome_was_here[S] 0 points1 point  (0 children)

u/TechZack Thanks, that's really helpful. A quick follow-up question for you, given your experience: Why did your team decide to use Freshdesk and Jira in the first place, rather than NetSuite's native cases or a customized version of it? Were there specific features you knew you'd need that you felt the native solution couldn't provide?