Adding processing steps to a Data Process shape Add a processing step to a Data Process shape for each action to perform on the document data. The processing steps are executed in the order defined in the shape. Each processing step operates on the data output from the previous processing step. Add a Data Process shape to… Continue reading Boomi – Adding processing steps to a Data Process shape
Month: February 2024
Boomi – Data Process Shape
Data Process shape The Data Process shape provides a number of options for manipulating document data within a process, from splitting and combining documents to zipping and unzipping data. You can define multiple processing steps to perform more than one action on the document data. The processing steps will be executed in the order defined… Continue reading Boomi – Data Process Shape
Saved Search to Display Accounts with Eliminate Intercompany Transactions=True
Create a Saved Search to Display Accounts with ‘Eliminate Intercompany Transactions’ box = True Navigate to Lists > Search > Saved Searches > New Click Account On the Criteria tab > Standard subtab, set the following filters: – System Notes Fields > Field = Eliminate – System Notes: New Value = T Rename the Custom Account Search Click Save or Save & Run. Note: The search will only return those… Continue reading Saved Search to Display Accounts with Eliminate Intercompany Transactions=True
SuiteCommerce Products
In addition, SCS is unique from SCA in the following ways: SCS offers no direct customization of source code. SCS only supports a single site/domain. SCS is only customizable via themes and extensions. SCS offers no customization of the checkout flow. SCS is not susceptible to “version lock” due to core customization.
Provide Custom Roles Access to Resource Allocation Chart/Grid 2.0 SuiteApp
User with a Custom Role is encountering a Notice: “You do not have privileges to view this page” when opening the Resource Allocation Chart/Grid. After customizing a role to access the Resource Allocation Chart/Grid, an administrator must also add these new roles to the script deployment. Doing so ensures that the SuiteApp will launch when… Continue reading Provide Custom Roles Access to Resource Allocation Chart/Grid 2.0 SuiteApp
ADD AND DELETE AN ISSUE WORKFLOW
For a Jira administrator, you can create, copy, import, and delete workflows to adapt to the needs of your business processes and teams working in Jira application projects. When you’re ready to share a new workflow with your teams, you can associate it with a workflow scheme, which can then be associated with any number… Continue reading ADD AND DELETE AN ISSUE WORKFLOW
Configure statuses, resolutions, and Priorities!
For a Jira administrator, they can manage or customize default issue statuses, resolutions, and priorities. Statuses represent the position of an issue in its workflow. A status can be mapped to one workflow step. Resolutions are the ways in which an issue can be closed. Add, Edit, and Delete a Status Select > Issues. Under ISSUE ATTRIBUTES,… Continue reading Configure statuses, resolutions, and Priorities!
Render Search Results into a PDF File
The following sample shows how to render search results into a PDF. /** * @NApiVersion 2.x * @NScriptType Suitelet */ // This sample shows how to render search results into a PDF file. define([‘N/render’, ‘N/search’], function(render, search) { function onRequest(options) { var request = options.request; var response = options.response; var xmlStr = ‘<?xml version=”1.0″ encoding=”UTF-8″?>n’… Continue reading Render Search Results into a PDF File
To add the price level in the item record using script.
require([‘N/record’], function (record) { let objRecord = record.load({ type: record.Type.INVENTORY_ITEM, id: 5124, isDynamic: true, }); let lineCount = objRecord.getLineCount({ sublistId: ‘price’ });//The linecount… Continue reading To add the price level in the item record using script.
solve Error “This record already exists.” on CSV Import
Solve Error: “A record with this ID already exists.” when user is performing CSV import: use unique External ID. or remove column external id from csv file.