All records belonging to the same high-level group share the same ID pool. For example, sales orders and invoices both belong to the group of transaction records. When you create a sales order and it is assigned 1234 as the internal ID, you should not assume that the internal ID of the next sales order… Continue reading Estimates does not follow the internal IDs in sequence.
Month: April 2025
Optimizing Performance with Vue 3 Suspense and Async Components
Vue 3’s Suspense and async components provide a way to handle asynchronous data fetching while keeping the UI responsive. What is Suspense? Suspense is a component that displays a fallback while waiting for async data. <template> <Suspense> <template #default> <AsyncComponent /> </template> <template #fallback> <p>Loading…</p> </template> </Suspense> </template> Using Async Components You can dynamically load… Continue reading Optimizing Performance with Vue 3 Suspense and Async Components
WorkFlow – For Setting the Status of Journals as “Approved”
In the case of journal csv import, if you can’t set the Approval status as Approved by default. Then create a workflow for setting the approval status as “Approved”. After setting this workflow, without mentioning the approval status of the journal will automatically be set as Approved. Steps Navigate to Workflows: Go to Customization >… Continue reading WorkFlow – For Setting the Status of Journals as “Approved”
Fix error : Invalid price reference key
Scenario The error occurs in the Sales order Import step which includes mapping of price level and unit price for the item lines. The issue is caused by the destination field Items : Price Level (Name) in the mapping. Solution Change the destination field of price level to “Items : Price Level (InternalId)” and map… Continue reading Fix error : Invalid price reference key
Update on Ending Support for NetSuite India SuiteTax Engine Plug-In
An earlier notification stated that the India Localization SuiteTax Engine SuiteApp will no longer support the NetSuite India SuiteTax Engine plug-in with the next release of the SuiteApp. As a required action, you were advised to use the NetSuite Suite Tax Engine SS2 plug-in. If you have the NetSuite India Suite Tax Engine SS2 plug-in… Continue reading Update on Ending Support for NetSuite India SuiteTax Engine Plug-In
Essential Steps for Sending a Bulk Merge Email in NetSuite
Create a Saved Search Log in as Administrator Navigate to Reports > Saved Searches > All Saved Searches > New Search Type: Click Customer Use specific filters to identify who will receive the bulk email Note: If this is for all customers, you may leave the filter blank in the Criteria tab. Click Save Create a Group Log in as Administrator… Continue reading Essential Steps for Sending a Bulk Merge Email in NetSuite
script to make a basic car model in blender
import bpy def create_car(): # Create the main car body bpy.ops.mesh.primitive_cube_add(size=2, location=(0, 0, 1)) car_body = bpy.context.object car_body.name = “Car_Body” car_body.scale.x = 2 # Length car_body.scale.y = 1 # Width car_body.scale.z = 0.5 # Height # Create the roof bpy.ops.mesh.primitive_cube_add(size=1.5, location=(0, 0, 1.5)) car_roof = bpy.context.object car_roof.name = “Car_Roof” car_roof.scale.x = 1.2 car_roof.scale.y = 0.9 car_roof.scale.z =… Continue reading script to make a basic car model in blender
Basic python scrip to make body armature
import bpy import math def create_armature(name=”BasicHumanRig”): bpy.ops.object.armature_add() armature = bpy.context.object armature.name = name armature.data.name = name return armature def edit_mode(): bpy.ops.object.mode_set(mode=’EDIT’) def pose_mode(): bpy.ops.object.mode_set(mode=’POSE’) def object_mode(): bpy.ops.object.mode_set(mode=’OBJECT’) def create_bone(armature, bone_name, head, tail, parent=None): edit_bones = armature.data.edit_bones bone = edit_bones.new(bone_name) bone.head = head bone.tail = tail if parent: bone.parent = edit_bones[parent] return bone def create_rig(): armature… Continue reading Basic python scrip to make body armature
Free form Text to Rich Text ADD HTML
Normal Text to Rich Text If you have MS Excel, you can use the Replace (Ctrl + H) functionality. Steps: Open your Excel file Press Ctrl + H on your keyboard Click the “Find what:” box, then press Ctrl + J on your keyboard Click the “Replace with:” box then put in <br> Click Replace All Save the file as a CSV It is important that… Continue reading Free form Text to Rich Text ADD HTML
Extract Rich Text Field Values without HTML Tags using Saved Search Formula
Workaround: Using Formula (Text) Fields To address this, you can utilize a Formula (Text) field in your Saved Search to strip the HTML tags from the exported data. This ensures that only the text values are extracted. Edit your Saved Search On the Results tab, add a Formula (Text) field with this formula: REGEXP_REPLACE({fieldid},'<[^<>]*>’,”) where… Continue reading Extract Rich Text Field Values without HTML Tags using Saved Search Formula