Occupationally overflow property will not work in iOS devices. The overflow property in CSS is used to control how content that overflows the bounds of an element is handled. Occasionally, you may encounter issues with the overflow property not working as expected on iOS devices. Use Vendor Prefixes: Some older versions of iOS may require… Continue reading Occupationally overflow property will not work in iOS devices
Month: September 2023
Delivery Methods Not Appearing in One Page Checkout
In some cases, not all delivery methods appear when using the One Page Checkout flow. This issue sometimes occurs after a user enters a zip code when checking out as a guest. To correct this error, extend the mountToApp() method located in the CheckoutSkipLogin.js file and hide the following line within comment tags: data.cart && LiveOrderModel.getInstance().set(data.cart); In… Continue reading Delivery Methods Not Appearing in One Page Checkout
Create Buttons in Items, Sales Order and Invoice Records
/** * @NApiVersion 2.1 * @NScriptType UserEventScript */ define([‘N/record’, ‘N/ui/serverWidget’,’N/runtime’], /** * @param{record} record * @param{serverWidget} serverWidget */ (record, serverWidget) => { /** * Defines the function definition that is executed before record is loaded. * @param {Object} scriptContext * @param {Record} scriptContext.newRecord – New record * @param… Continue reading Create Buttons in Items, Sales Order and Invoice Records
Permission to edit Customer Deposit
const ROLES = [ 1112 , 1046]const LOCATION = [29]/*** Defines the function definition that is executed before record is loaded.* @param {Object} scriptContext* @param {Record} scriptContext.newRecord – New record* @param {string} scriptContext.type – Trigger type; use values from the context.UserEventType enum* @param {Form} scriptContext.form – Current form* @param {ServletRequest} scriptContext.request – HTTP request information… Continue reading Permission to edit Customer Deposit
Generating Pay by link In Transformed Sales Order
The script will strictly transform sales orders to invoices, by making it a Terms order, and all the generated invoices will have a pay-by-link URL generated in it( Generated by Adyen Bundle). Script lookup the saved searches stored in custom record entries and thus the resultant orders are enlisted and they are transformed into invoices… Continue reading Generating Pay by link In Transformed Sales Order
Reversal of journal lines using Suitescript
In order to reverse the Journal lines, we can use a script to fetch the line count and the line field values.After fetching the values the lines can be reversed added to the existing Journal lines. So if there are 3 lines, the new reversed Journal will have 6 lines with the accounts, amounts and… Continue reading Reversal of journal lines using Suitescript
Financial Report results show different results when filtered by period and date.
A financial report shows different balances for a chart of accounts when run by two different users. One user has the report filtered by period and the other user by date. So when the same financial report is opened by both users, the results are different. A potential issue will be when a transaction date… Continue reading Financial Report results show different results when filtered by period and date.
Google’s 25th Anniversary: A Quarter Century of Transforming Information Access
In 27th september 2023, Google, the renowned search engine, celebrates its 25th birthday. This momentous occasion offers an opportunity to reflect on how Google has revolutionized the way we access and utilize information, fostering innovation and connectivity. Let’s check its profound societal impacts and the exciting developments it has in store for the future. A… Continue reading Google’s 25th Anniversary: A Quarter Century of Transforming Information Access
QA Tips – GL Impact of Picked, Packed, and Shipped Statuses in Item Fulfillment
The Accounts involved in the Pick, Pack and Ship in the Item Fulfillment process include a Cost of Goods Sold account and an asset account. These accounts are assigned to the item. The Cost of Goods Sold and the Asset accounts are actually not impacted at the “Picked” and “Packed” statuses but only at the… Continue reading QA Tips – GL Impact of Picked, Packed, and Shipped Statuses in Item Fulfillment
Adding an Image above the title in the External Suitelet form
When Building external Suitelet forms, the user/client may need to see the Company logo or other dependent images of the form. This image needs to be shown above the Title of the Form. In such cases append an image tag as a prefix to the title label and source the URL of the image.For example,… Continue reading Adding an Image above the title in the External Suitelet form