Boomi – Creating Components

Creating Components You can create components on the Build page or by copying them from published processes you install from the process library. On the Build page, to create a component, use the Create New button, Component Explorer, the Start tab, or the process canvas. When you install a published process from the process library, the process component and… Continue reading Boomi – Creating Components

How to Rename the breadcrumb values using getBreadcrumbpages function

_.extend(CartDetailedView.prototype, {                    // Renaming the breadcrumb of the page from shopping cart to My cart                    getBreadcrumbPages: function (e) {                        const breadCrumb = [                            {                                text: Utils.translate(‘My Cart’),                                href: ‘/cart’                            }                        ]                        return breadCrumb;                    },                });

Resolve “You have no permission to view this page” When Using Guest Checkout

Shoppers encounter error “NOT ALLOWED – Sorry you have no permission to view this page” when they proceed to checkout. This is reproduced when the Type of Customer Registration is ‘Disabled’. Solution To allow customers to proceed with Guest Checkout: Navigate to Commerce > Websites > Website List Click Edit link of your website Navigate to the Shopping tab Set TYPE OF CUSTOMER REGISTRATION to Optional.      5.… Continue reading Resolve “You have no permission to view this page” When Using Guest Checkout

The Build Option in the Work Order is not visible..

Use Case After updating the status to ‘Release,’ the Build option doesn’t appear in the work order record. Solution To enable the Build option in the work order, update the manufacturing issue option based on commitment with the ‘Allow uncommitted’ option.

Automatic WO Creation

Use Case To make sure a Special Work Order is created when a Sales Order is made, the ‘Create WO’ option must be visible on the Sales Order’s item line. If this option is hidden, the Work Order won’t be automatically generated, even if the item is marked as a Special Work Order Item. Solution:… Continue reading Automatic WO Creation

Harnessing Hue: The Power of Natural Color in UI Design

1. Embracing the Serenity of Natural Hues: Natural colors, inspired by elements such as earth, sky, and vegetation, evoke a sense of tranquility and familiarity. Explore how incorporating these serene hues into UI elements can create a visually pleasing and calming atmosphere for users. 2. Establishing Visual Continuity with Nature: Connect users to the environment… Continue reading Harnessing Hue: The Power of Natural Color in UI Design

Map/Reduce Script to Create CSV File and Send Email

Script to generate a monthly sales report for sales representatives, including customer details and sales order information, and sends it via email. If there is no assigned sales representative, the report is sent to the administrator for further action. getInputData Function: The getInputData function creates a search to retrieve sales orders created within the last… Continue reading Map/Reduce Script to Create CSV File and Send Email

What is a watcher in vuejs?

When building components in Vue, we often need to respond to changes in our props. A watcher — or watched prop — let’s us track a property on our component and run a function whenever it changes. For example, if the prop colour changes, we can decide to log something to the console: export default { name: ‘ColourChange’, props: [‘colour’], watch:… Continue reading What is a watcher in vuejs?

Unveiling the Power of Serial Position Effect: A Guide to Top UX Laws for Design

1. Decoding Serial Position Effect: The Serial Position Effect posits that users tend to remember and give more importance to items presented at the beginning (Primacy Effect) and the end (Recency Effect) of a list or sequence. By understanding this cognitive bias, UX designers can strategically place key elements at the start and finish of… Continue reading Unveiling the Power of Serial Position Effect: A Guide to Top UX Laws for Design