Scenario The user wants to show the Item Sales Description in Printed Picking Ticket. Solution Check the record of the Item that is associated to your sales order Global Search: Type Item in question Click View Click Sales/Pricing Tab Sales section: Sales Description: Check if Populated Check the Sales Order Form Navigate to Setup > Customization > Transaction Forms Preferred Sales Order Form: Click Edit Click Screen Fields Click Columns Description: Mark Show Checkbox Click Printing Fields Click Columns Description: Mark Print/Email Checkbox Note:… Continue reading Show the Item Sales Description in Printed Picking Ticket
Month: November 2024
Transactions showing in the Print Packing Slips Page FAQs
What transactions are shown in the Print Packing Slips page? By design, this page considers fulfillment transactions only. If the Advanced Shipping feature is not enabled, this page shows Cash Sale and Invoice transaction records. After enabling Advanced Shipping feature, why are existing Invoices and Cash Sales no longer showing? It’s possible that the said… Continue reading Transactions showing in the Print Packing Slips Page FAQs
Sales Orders Do Not Appear in Print Packing Slips Page
Scenario Users wants to know why the Sales Orders do not appear in Print Packing Slips page. Solution Navigate to Transactions > Sales > Enter Sales Order > List Select any Sales Order Click Related Records Click the Date beside Item Fulfillment Status should be “Picked“ Note: Sales Orders where related Item Fulfillment status is already Packed or Shipped will not appear on the Print Packing Slips page by… Continue reading Sales Orders Do Not Appear in Print Packing Slips Page
Display Item’s Amount From Sales Order When Printing Packing Slip
Scenario To print the Item’s amount from Sales Order when printing Packing Slip. Solution 1. Create Custom Transaction Line Field Navigate to Customization > Lists, Records, & Fields > Transaction Body Fields > New Label: Enter Label Example: Amount in Sales Order ID: Enter Id Example: _amount_so Type: Select Currency Store Value: Remove Checkmark Applies To: Sale Item: Enter Checkmark Click Validation & Defaulting subtab Formula: Enter Checkmark Default Value: Enter {amount} Click Save 2. Create Custom Transaction Line… Continue reading Display Item’s Amount From Sales Order When Printing Packing Slip
Hold Field is Missing on the Financial Subtab of the Customer Record
Scenario When an Administrator navigates to the Financial subtab of the Customer record (using a Standard Form), Hold field is not available. Solution The Hold field is dependent on the Customer Credit Limit Handling preference of the user. To resolve this: Navigate to Home > Set Preferences Click Transactions Customer Credit Limit Handling: Select Warn Only or Enforce Holds Click Save
Render a Transaction Record Into an HTML Page
The following sample shows how to render a transaction record into an HTML page. /** * @NApiVersion 2.x */ require([‘N/render’], function(render) { function renderTransactionToHtml() { var transactionFile = render.transaction({ entityId: 23, printMode: render.PrintMode.HTML }); } renderTransactionToHtml(); }); Note: The entityId value in this sample is a placeholder. Before using this sample, replace the placeholder values with valid… Continue reading Render a Transaction Record Into an HTML Page
QA Wolf
QA Wolf is a cloud-based test automation platform designed to streamline the creation, execution, and maintenance of automated tests. Built with simplicity and speed, QA Wolf supports both code-based and no-code test creation options, making it accessible to both technical and non-technical users. Its collaborative features, self-healing capabilities, and CI/CD integrations make it an ideal… Continue reading QA Wolf
New Features of 3.0 beta version on payload
We’re now thrilled to share that Payload 3.0 beta is now available. The big takeaway? You can now install the entirety of Payload in one line into any Next.js app. Other highlights: Turbopack works out of the box Payload is now fully-ESM across the board You can now deploy Payload to Vercel Server-side HMR works… Continue reading New Features of 3.0 beta version on payload
Change the Version of the Generated Advanced PDF Template
There are instances that user needs to change the PDF version to comply with compatibility in different versions of PDF reader. Navigate to Customization > Forms > Advanced PDF/HTML Templates Preferred PDF Template: Click Edit Inside the head tag of the template, add the meta tag as shown below (Acrobat5 is for PDF version 1.4):… Continue reading Change the Version of the Generated Advanced PDF Template
change the position of a virtual field in Sublist
For adding a virtual field via Userevent to the item sublist. To specify the position of the Virtual field to show. let form = scriptContext.form; // Add a custom field to the Item sublist… Continue reading change the position of a virtual field in Sublist