Method to Scan a Copy Files from a Folder Another Folder with a CSV File

Here is the code to provide the sorting method of getting the files to be copied from a folder to another folder based on the required list of names #!/bin/bash CSV_FILE=”{CSV_File}.csv” SOURCE_DIR=”{Source_location}P” DEST_DIR=”{destination_location}” # Create destination directory if not exists mkdir -p “$DEST_DIR” # normalize: trim, remove CR, remove all spaces, lowercase normalize() {  … Continue reading Method to Scan a Copy Files from a Folder Another Folder with a CSV File

Sh Code to Convert Files from JPG to WEPB in bulk from a folder

Firstly Need to Install webp Extension on the linux or operating system #!/bin/bash # Usage: ./jpg-to-webp-folder.sh /path/to/input /path/to/output INPUT_DIR=”{location}” OUTPUT_DIR=”{location}” # Check inputs if [ -z “$INPUT_DIR” ] || [ -z “$OUTPUT_DIR” ]; then     echo “Usage: $0 <input_folder> <output_folder>”     exit 1 fi # Create output folder if it doesn’t exist mkdir… Continue reading Sh Code to Convert Files from JPG to WEPB in bulk from a folder

International Testing Standards Across the Software Development Life Cycle (SDLC)

Integrating international testing standards throughout the Software Development Life Cycle (SDLC) is crucial for ensuring software quality, safety, and reliability. The primary standard governing these activities is the ISO/IEC/IEEE 29119 series, which provides a comprehensive, internationally agreed framework for software testing applicable to any SDLC model. Another key standard is ISO/IEC 12207, which defines the software life cycle… Continue reading International Testing Standards Across the Software Development Life Cycle (SDLC)

Gulp deploy successful but the changes do not display on the web site

Scenario When you execute the gulp deploy command to upload changes to the website, you may encounter an issue where the command is successful but the changes does not take effect. This happens when you execute the command on the root folder and the DeployDistribution folder is at a different location.   Before you can… Continue reading Gulp deploy successful but the changes do not display on the web site

PropertyMixer

Buffered scene graph property that allows weighted accumulation; used internally. Constructor new PropertyMixer( binding : PropertyBinding, typeName : string, valueSize : number ) Constructs a new property mixer. bindingThe property binding. typeNameThe keyframe track type name. valueSizeThe keyframe track value size. Properties .binding : PropertyBinding The property binding. .cumulativeWeight : number TODO Default is 0. .cumulativeWeightAdditive : number TODO Default is 0. .referenceCount : number TODO Default… Continue reading PropertyMixer

How to access ‘ Generate Inventory report’ in another role?

REQUIREMENT: Using the WMS Warehouse Manager role, I can access WMS Reporting > Inventory Reporting > Generate Inventory Report. How can i give a non WMS role to access this report? ANSWER: You won’t be able to. That report is for the WMS role. You can provide access to other inventory reports by going to… Continue reading How to access ‘ Generate Inventory report’ in another role?

NetSuite Financial Records Audit Trails

🔎 Tracking Key Financial Record Audit Trails in NetSuite General Transaction Audit Trail NetSuite records every change to transactions, including creation, modification, and deletion. Each entry captures details such as the user, their role, the action taken, date and time, affected accounts, and updated amounts. These records are stored as system notes, audit trails, or… Continue reading NetSuite Financial Records Audit Trails

PropertyBinding

This holds a reference to a real property in the scene graph; used internally. Constructor new PropertyBinding( rootNode : Object, path : string, parsedPath : Object ) Constructs a new property binding. rootNodeThe root node. pathThe path. parsedPathThe parsed path. Properties .node : Object The object owns the animated property. .parsedPath : Object An object holding information about the path. .path : string… Continue reading PropertyBinding

Reverse Charge Mechanism (RCM)

The Reverse Charge Mechanism (RCM) is a system under GST where the recipient of goods or services, instead of supplier is responsible for paying the applicable GST directly to the government. RCM is used in situations where the government wants to ensure tax compliance from organized entities, such as purchases from unregistered suppliers, import of… Continue reading Reverse Charge Mechanism (RCM)

Published
Categorized as Finance

THREE DECIMAL PLACES IN WORKBOOK

SCENARIO In datasets, quantity fields are automatically rounded to two decimal places when added. For example, if the actual data is “Gold Screw – 0.045 gm” and “Gold Chain – 0.050 gm,” the dataset displays both as 0.05 gm. SOLUTION Apply the formula TO_CHAR({field_id}, ‘9999999990.000’) ‘9999999990.000’ ensures three decimal places are always shown. You can… Continue reading THREE DECIMAL PLACES IN WORKBOOK