Remove add option for shipping address and edit option of default billing address

In SCA website the shipping address can be added from my-account and checkout section.Hide the add option for shipping address from my-account and checkout section. User’s should not be able to add the address. In Billing address,Remove the option to edit address in the default billing address.There should be option to edit and remove for… Continue reading Remove add option for shipping address and edit option of default billing address

SWOT ANALYSIS

SWOT analysis is a strategic planning tool used to evaluate the strengths, weaknesses, opportunities, and threats involved in a project or business venture. It provides a structured framework for assessing the internal and external factors that can impact an organization’s success. Here’s a breakdown of each component of a SWOT analysis: Strengths: Strengths are the… Continue reading SWOT ANALYSIS

Deployed changes not reflecting on website

Scenario: Some times, changes will not reflect in the website after deploying extension. If your changes are in local and after deployment if it is not reflected on the website. Then you can change the version from the manifest and deploy it. Still, if it is not working, deploy by changing the respective version using… Continue reading Deployed changes not reflecting on website

High Level Design (HLD) and Low Level Design (LLD)

High Level Design (HLD):  The HLD stands for High-Level Design, where the designer will only focus on the various models, like:  Decision Tables  Decision Trees  Flow Diagrams  Flow Charts  Data Dictionary  The solution architect develops the High-level design, which is used to specifies the complete description or architecture of the application.  The HLD involves system architecture, database design,… Continue reading High Level Design (HLD) and Low Level Design (LLD)

Loop Testing

Loop testing is a software testing technique that focuses on testing the functionality and behavior of loops within a program. Loops are structures in programming languages that allow repetitive execution of a set of instructions until a specific condition is met. The objective of loop testing is to ensure that loops in the program work… Continue reading Loop Testing

How to Hide Script Id Field in The Custom Record

There are cases where Users need to hide the Script/ID field of a Custom Record. If SuiteCloud Development Framework feature is enabled, this may result for the Script ID field to be present on Forms that are made from Custom Records. Navigate to Home > Set Preferences Click General SuiteCloud Development Framework:  Show ID Field on Sublists: Remove Checkmark Click Save

Convert Amount to Words

Create a Transaction body field and uncheck the store value check box In the Validating & Defaulting Add the Formula in the Default Value column by checking the formula checkboxFormula : CASEWHEN {payment} = 0 THEN ‘ZERO’ELSECASEWHEN FLOOR({payment}) = {payment} THENTO_CHAR(TO_DATE(TO_CHAR(TRUNC({payment}, 0)), ‘J’), ‘JSP’) || ‘ ONLY’ELSETO_CHAR(TO_DATE(TO_CHAR(TRUNC({payment}, 0)), ‘J’), ‘JSP’) || ‘ AND ‘ ||TO_CHAR(FLOOR({payment}… Continue reading Convert Amount to Words