My Stuff
Review our AI Community Guidelines before posting AI-generated or AI-assisted content. Verify accuracy and include the appropriate AI disclaimer.
Ready for Next starts at SuiteWorld
SuiteWorld is where the NetSuite community comes together to learn, connect, and discover what’s next.
Whether you’re looking for product updates, practical tips, new ways to improve efficiency, or insights from other customers, SuiteWorld offers something for every stage of your NetSuite journey.
SuiteWorld is where the NetSuite community comes together to learn, connect, and discover what’s next.
Whether you’re looking for product updates, practical tips, new ways to improve efficiency, or insights from other customers, SuiteWorld offers something for every stage of your NetSuite journey.
Comments
-
Hi @Elina Kourouzidou, To add some technical detail: this can be handled with a User Event afterSubmit script on the Vendor Bill, firing on create only. The logic: Read the createdfrom field to identify the source PO Use a transaction search with a File Fields join to get the file IDs attached to the PO Loop those and use…
-
Hi @Elina Kourouzidou, As other community member mention that native Purchases portlet does not allow reordering the PO and Requisition subtabs, as the tab order is hardcoded. To change the order, you would need a custom HTML Portlet Script that renders the tabs in your preferred order and add it to the Employee Center…
-
Hi @User_MZTGL, If you have administrator access, a good starting point before filing a support case is to check the following: Go to Customization > Scripting > Script Execution Logs and filter by time of the error. Also go to Customization > Scripting > Scripted Records and find the Sales Order record. You will see all…
-
Great roundup @Clarisa De Torres-Oracle. The Finance Analyst Skill for the AI Connector Service is a welcome addition for finance teams. Looking forward to SuiteWorld 2026!
-
Hi @Vishnu M Good solution from @Francesca Nicole Mendoza-Oracle. One thing worth noting though, even with this workflow in place, if users have access to the Saved Search feature, they can still create a search against the Vendor Bill record type and view bill data including amounts, vendors, and statuses directly from…
-
TRUE
-
Hi @User_ZA0IY If you need this functionality now without waiting for the enhancement, a custom solution is possible but involves work across multiple layers: Frontend: custom SuiteCommerce extension for pickup location selection at checkout Backend: SuiteScript to handle location availability and inventory checks per…
-
Hi @Vishnu M, I think Inventory Items is the right approach for your scenario. It supports FIFO costing, quantity tracking, and value tracking out of the box. On the other item types: Gift Certificates track outstanding liability not physical quantity or cost, and each line is limited to a quantity of 1 so bulk tracking is…
-
Hi @ACVP Yes, this is doable with a Client Script. Use fieldChanged on the taxdetails sublist: On taxcode change: load the salestaxitem record, grab custrecord_ste_taxcode_taxrate, strip the %, and set taxrate with ignoreFieldChange: true. On taxbasis change: calculate taxamount = taxbasis * (taxrate / 100) and set it with…
-
Hi @Kevin Hosea, It looks like a budget record already exists in NetSuite for the same dimension combination (Subsidiary + Year + Account + Department/Class/Location), not that your CSV has internal duplicates. Have you checked in NetSuite is you already have one of the budget you are trying to import?
-
Thanks for tagging me here @Francesca Nicole Mendoza-Oracle Hi @User_APXUW For requirements 1-3 (creation permissions, Submit for Approval button, Approve button), a standard Workflow handles these cleanly using role based permissions, Set Field Display Type to lock the Approval Status dropdown, and workflow driven buttons…
-
Hi @Wishal44 , This is a generic error message and cannot say anything specific. can you please Script Execution Logs and any active script or Workflow logs to find error details.
-
Hi @User_K51C7 For the Assembly Item, saved search formulas don't support subqueries, so you can't repeat the assembly item on every component row natively. Alternatives: SuiteQL, a Transaction Column Custom Field stamped via User Event script, or a two-column layout (one for assembly, one for components).
-
Hi @kees.netsuiteadmin No native "default order quantity" field exists on item records that auto-populates PO lines on manually created POs, based on my understanding. Your options: Memorized Transactions : create a PO with your standard items/quantities and memorize it. Works well if your order list is stable and vendor…
-
@User_TJ3OT Using the file and mapping below, I successfully created an Item Receipt. However, as @Shorin Rio Daa-Oracle mentioned , partial receiving does not seem possible right now. I tested various mapping combinations, but NetSuite automatically adds the second line item to the receipt even when it's excluded from the…
-
@Bee Yook It's difficult to pinpoint the exact issue without looking at the logs, but in my experience, an unhandled error in a library file or a separate User Event script can cause the main script to throw an "unexpected error." Have you tried removing the script and deployment ID filters, and just filtering by the date…
-
Thanks for sharing this @Robert Nedelkow-Oracle
-
Thanks for Sharing this @Michelle Jabanes-Oracle
-
Thanks for sharing this @Michelle Jabanes-Oracle
-
Hi @User_PCF01 , Looking at your workflow diagram, the Returned to Submitter state currently only transitions downward into the END state. The Add Button action only handles rendering the button on the screen. To make it execute an action and resubmit the record, you need to create a Transition that links back to your…
-
Hi @Glaced99991 Can you please share the exact error message you are receiving? Also, have you tried explicitly setting the iscrosssubtransaction field to false (or true depending on your workflow) in your initialization payload? When Cross-Subsidiary Fulfillment is active, NetSuite often expects that flag to explicitly…
-
Hi @User_TJ3OT, Did you try adding fields Item Receipt - Items : Order Line Item Receipt - Items : Receive
-
Hi @David_R, Please configure Inventory Adjustment - Adjustments : Location and you only configured Inventory Adjustment : Adjustment Location.
-
B
-
Hi @Bee Yook , Do you have the Lot and Serial Number Trace (Bundle ID: 322956) bundle installed? If so, you can navigate to Reports → Lot/Serial Trace → Lot Trace to see exactly where that specific lot is being used. It is highly possible that the missing quantity is currently committed to another transaction.
-
Hi @User_JKLFU Those specific payment fields and tabs appear to be part of a custom bundle (likely installed by Bill.com) rather than native NetSuite. If they are custom, a good place to check is the custom entity field configuration under Customization → Lists, Records, & Fields → Entity Fields to see if a default value…
-
Hi @User_MZTGL ${item.quantityfulfilled!""} is working for me . I have attached the complete pdf template could you please try it.
-
Thanks for posting this, @Richard James Uri-Oracle.
-
Thanks for posting this, @Richard James Uri-Oracle.
-
Hi User_K51C7 Because NetSuite groups the Summary box into the core page structure, there isn't a native permission setting to hide it. The best workaround is to hide it visually using a CSS injection inside a User Event Script. You can deploy this User Event Script code on the Sales Order record or any other specific…