đź§ What Is Boomi Flow? Boomi Flow is a cloud-native workflow automation tool that allows users to: Design interactive applications using a drag-and-drop interface Connect to external systems via Boomi Integration Build workflows that span multiple steps, users, and system 1. Create a New Process Log in to Boomi AtomSphere. Go to Build → Click… Continue reading Creating a simple flow in Boomi
Month: August 2025
Exploring the Test Function in Boomi
In Boomi AtomSphere, building an integration process is only half the journey. The other half is making sure it works as expected. That’s where the Test function comes in—a powerful feature that lets you simulate and validate your process before deploying it into production. Whether you’re syncing data between systems, transforming records, or handling complex… Continue reading Exploring the Test Function in Boomi
To Change the sales order form based on the Domain.
We can create an extension to check the domain. For this, we have created a configuration record and a transaction body field. If the domain matches as expected, we will add the corresponding form to the sales order during creation. Using a workflow, we can then set a condition: if the transaction body field contains… Continue reading To Change the sales order form based on the Domain.
How to Use Subcollections in Firebase Firestore and Create Multiple Child Items
When working with Firebase Firestore, you’ll often need to store related data in a structured way. For example, an Order document might contain multiple Items, or a Post might have many Comments. Firestore provides a powerful way to handle this scenario using subcollections. In this article, we’ll cover: 🔹 What subcollections are in Firestore 🔹… Continue reading How to Use Subcollections in Firebase Firestore and Create Multiple Child Items
Converting Subtask to Task in Jira
To Convert a Subtask to a Task in Jira, follow these steps: Open the Subtask: Navigate to the subtask you want to convert. Access More Options: Click on the three dots (…) in the top-right corner of the subtask window. Convert to Issue: Select the “Convert to Issue” option from the dropdown menu. Select New… Continue reading Converting Subtask to Task in Jira
How can I enable “Allow Remote Assistance” for all existing customers in Magento 2?
To enable ‘Allow Remote Assistance’ for all customers in your Magento 2 store, you can run an SQL query directly on your database. Magento stores this preference in the table login_as_customer_assistance_allowed. Each record links to a customer by their customer_id. Here’s the SQL command to enable it for every existing customer: INSERT IGNORE INTO login_as_customer_assistance_allowed… Continue reading How can I enable “Allow Remote Assistance” for all existing customers in Magento 2?
LatheGeometry
Creates meshes with axial symmetry like vases. The lathe rotates around the Y axis. Code Example const points = []; for ( let i = 0; i < 10; i ++ ) { points.push( new THREE.Vector2( Math.sin( i * 0.2 ) * 10 + 5, ( i – 5 ) * 2 ) ); }… Continue reading LatheGeometry
Creation Of Journal Entry
let journal = record.create({ type: record.Type.JOURNAL_ENTRY, isDynamic: true }); journal.setValue({ fieldId: ‘subsidiary’, value: subsidiary }); journal.setValue({ fieldId: ‘currency’, value: currency }); journal.setValue({ fieldId: ‘trandate’, value: trandate }); journal.setValue({ fieldId: ‘memo’, value: ‘Auto JE for Income Tax on Vendor Bill ‘ + bill.getValue(‘tranid’) }); // DEBIT A/P journal.selectNewLine({ sublistId: ‘line’ }); journal.setCurrentSublistValue({ sublistId: ‘line’, fieldId: ‘account’,… Continue reading Creation Of Journal Entry
Real-Time Lighting and Shadow Optimization in Three.js
Lighting and shadows define mood, depth, and realism in 3D experiences, but they can also be performance bottlenecks—especially in WebXR and browser-based environments. Three.js provides multiple lighting techniques, ranging from baked lightmaps to real-time dynamic shadows. Balancing realism with performance is key to creating immersive yet smooth-running applications. By combining efficient shadow techniques, light probes,… Continue reading Real-Time Lighting and Shadow Optimization in Three.js
Custom Trace Keys: Transforming Error Management in Celigo
Introduction Celigo’s integrator.io is a powerful iPaaS for automating business processes, but errors from data inconsistencies can disrupt flows. While standard error tools are useful, custom trace keys are an underutilized feature that revolutionizes error management by enhancing tracking and resolution. What Are Custom Trace Keys? Custom trace keys are user-defined identifiers for records in… Continue reading Custom Trace Keys: Transforming Error Management in Celigo