Formula To Get Item Child Name Only in a Saved Search

Use the below formula to return only the item’s child name in a saved search. Formula(Text): REGEXP_REPLACE(REGEXP_SUBSTR({name},’: [^:]+*$’),’: ‘,”) For example without the formula a parent: child item will display as: Parent Item Name: Child Item Name Using the formula only the Child Item Name will display.

Google Tag Manager

Google Tag Manager (GTM) is a free application provided by Google that lets you manage all of your tags in one place. Tags can measure site traffic and visitor behavior. They can also provide information about the impact of online advertising and marketing campaigns. Third-party services use tags to collect information about user activities as… Continue reading Google Tag Manager

How to use JavaScript for Auto-filling of one field same as other

 We might have noticed that sometimes websites like e-commerce or some government website have two address fields in their forms. One for the primary address and another for the secondary address(or one for billing address and another for the shipping address etc).  Most of the time people have the same primary and secondary addresses and… Continue reading How to use JavaScript for Auto-filling of one field same as other

Dynamically assign default customer for Magento Orders

The Magento2-NetSuite Integration app provides an option to assign one default customer to all Magento Orders. For this the internal id of the customer is to be specified and the Add all orders against the NetSuite customer is to be marked true. We can assign different default customer to Magento Orders from different Stores. For… Continue reading Dynamically assign default customer for Magento Orders

Remove Quantity Pricing in PDP Without Disabling the Quantity Pricing Feature

Go to the SuiteCommerce website Press Escape Login as using credentials with Administrator or any role with SMT access Navigate to an item Click the item to redirect to it’s product details page. On the Site Management Tools Toolbar click Edit Mode > Click Add Content mode Drag the CMS HTML content to the  Productdetails.full.view Pages area  On the HTML Code text area insert the following script… Continue reading Remove Quantity Pricing in PDP Without Disabling the Quantity Pricing Feature

Outsourcing Production

NetSuite enables customers to outsource their manufacturing efforts to vendors. Customers can outsource from either a purchase order or from a work order. To outsource production from a purchase order Go to the purchase order record( Transactions > Purchases > Enter Purchase Order). On the Purchase Order page, in the Custom Form field, select the… Continue reading Outsourcing Production

Solution for the issue On checkout page when entering security number in card and click on the continue button the security number disappears

Description when we entering the security number in the card field and click on the continue button then the number is disappears.Here we take Artina website. Solution 1.Inspect the continue button and find where its event is triggered 2.Find that the event is triggered in ‘click #payment_method_continue_button’: ‘showBilling’ 3.Here have a variable selectedBilling 4.Then search… Continue reading Solution for the issue On checkout page when entering security number in card and click on the continue button the security number disappears

RangeError

If a value is given and the value given is above the specific range RangeError is thrownCompiler will stops execution of rest of code To solve this we need to use try catch block Ex: 100 is not fit100 digits will not be allowed here