Scenario Customer Request a A/P aging report by posting period. Solution Navigate to Home > Set Preferences > Analytics tab Report by Period > All Reports Hit Save Navigate back to Reports > customer/Receivables > A/P Aging Set the Period under the As of field. Please Notes: 1. The set preference is only applicable to the user login.2. Here we will get the result of the unpaid receivables by periods… Continue reading A/P Aging Report by Posting Period – Alternative Solution
Month: February 2023
By using Javascript make an area of the image to zoom when hovered over the specific area of the image.
We can zoom the are of the image where the mouse is hovered on the image which will help in showing the zoomed product in the pdp page to the user.
AR Aging Report BY Posting Period and the Invoice
Scenario Customer needs to get the AR aging Report by Posting period and the invoice Solution : The A/R aging report can’t be created in the custom reports based on the “posting period and the invoice “ date is an enhancement by NetSuite. Alternative Solution Navigate to Home > Set Preferences > Analytics tab Report by Period > All Reports Hit Save Navigate back… Continue reading AR Aging Report BY Posting Period and the Invoice
Error: Extension returned statusCode 504. Expected 200.
The mentioned error occurred in the pre built Shopify-NetSuite Celigo Integration. Error: Extension returned statusCode 504. Expected 200. Response body = Solution: The 504 error is a gateway timeout error that usually occurs when the remote endpoint is not responding in a timely manner (perhaps due to downtime or a heavy load). Either Netsuite or… Continue reading Error: Extension returned statusCode 504. Expected 200.
Proposal to Change Crossed off Online Price in website to Customer Price Level For Special Item
PROPOSAL SUMMARY This proposal covers the implementation of changing the online price displayed in the webstore to the customer price level for special item. REQUIREMENT Currently, the price displayed for the item in the webstore is the customer price level except for special items. For special items the online price level is displayed crossed off along… Continue reading Proposal to Change Crossed off Online Price in website to Customer Price Level For Special Item
Check the changes in the order confirmation email template
We recently encountered a situation in which we needed to make changes to the order confirmation email template in the production domain. After making changes to the email template, we can test the changes using the method described below rather than placing a new order. 1.Make changes innthe email template 2.Take any sales order in… Continue reading Check the changes in the order confirmation email template
Solution for issue where the “Add Item Inventory Details” option would disappear when creating an invoice.
Description When creating an invoice with entering the mandatory details , then save the invoice on that time an error message is shown like this, “Please configure inventory details for item” But there is no option available for adding the inventory details. Solution 1.Please make sure the inventory detail sublist field is enabled on the… Continue reading Solution for issue where the “Add Item Inventory Details” option would disappear when creating an invoice.
How to play and pause a video by on click
Test coverage
Test coverage measures the amount of testing performed by a set of test. Wherever we can count things and can tell whether or not each of those things has been tested by some test, then we can measure coverage and is known as test coverage. The basic coverage measure is where the ‘coverage item’ is… Continue reading Test coverage
How to get and set video src by clicking on div using jquery.
$(“.new-video #sub-video”).parent().click(function(e){const videoSource = ($(this).children().attr(‘src’))$(‘.video source’).attr(‘src’, videoSource)});