Requirement Need to consider comma or semicolon as a separator for email ids given in email field for sending out the email . Solution Following code provides the way to consider any of the given email separator( , ;).
Month: March 2022
To add the total quantity of transaction records in the body field of the record
The client wants to add the total quantity of the PO, SO and related records should be shown in the body field of the transaction record To add the field we have to create a search first. Then add this search with the custom transaction body field. Make this search public. Add this search to… Continue reading To add the total quantity of transaction records in the body field of the record
Timesheet Error
When adding weekly timesheet in Netsuite it shows error as below. Solution Check the employee record details of employees who can’t enter the timesheet. If he is an inactive employee this error will be populated by the system. To check this, Navigate to List> Employees> Employees Check the box show inactive. If the inactive box… Continue reading Timesheet Error
Custom fields in the project task
If we need to create a custom field in the project task, Customization>List,records and Fields> CRM Fields>New. We have created the custom field for the task manager in the project task. This droplist shows the employees from the project subsidiary. For the project subsidiary or task subsidiary, we have created another custom field. Applied to… Continue reading Custom fields in the project task
Summary functions in Query
Example of using summary functions in a query (MIN, GROUP) We can use the summary functions in query as we use in the search
How to Enable Payment Card Tokenization
With the Payment Instruments feature, you can tokenize payment cards, and then use payment card tokens for payment processing. To enable payment card tokenization, you must create an instance of the Tokenized Payment Card payment method type, and enable payment card tokenization on the payment processing profile. To create an instance of the Tokenized Payment… Continue reading How to Enable Payment Card Tokenization
Underscore.JS – values method
Syntax_.values(object) values method return all the values of object’s properties. // Example 1 var result = _.values({one: 1, two : 2, three: 3}); console.log(result); Output [ 1, 2, 3 ]
Remove Inventory Information(stock message) until a color is selected on PDP page
Project- PTC-799Requirement: The current website behavior when you land on an item page is that it shows “in stock” based on a default item – it is only when you click on a color that it will reflect the inventory for that particular item. Remove the “In Stock” notice altogether on the landing page so… Continue reading Remove Inventory Information(stock message) until a color is selected on PDP page
Post Types in WordPress
WordPress comes with a number of distinct post kinds by default, all of which are stored in the database under the wp posts table. Default Post Types Posts Pages Attachments Revisions Navigation Menus Custom CSS Changesets POST most used by blogs posts are shown in reverse chronological order by time PAGES They can also be arranged in a hierarchy, with one page being the parent or child of another, resulting in a page structure. ATTACHMENTS These hold information… Continue reading Post Types in WordPress
PDP() Frontend Extensibility API
The PDP (Product Details Page) component provides a number of ways to interact with the product details page, such as setting page options, changing quantities, and getting item information. Get an instance of this component by calling container.getComponent(“PDP”). MembersPDP_FULL_VIEW :StringDescriptionThe name of the main PDP full view. Use this name to reference views in methods such… Continue reading PDP() Frontend Extensibility API