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
Month: May 2023
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
Node.js Requirement for 2023.1.0 Release Of SCA
With the 2023.1.0 release, the developer tools continue to support Node.js version 14.19.0. To use the Theme, Extension, or core SCA 2023.1 developer tools, you must use this Node.js version.
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)
How to newly created sticky note to be public by default
We can add the user event script to sticky note custom record that sets every newly created sticky note to be public by default. The script ensures that the sticky note is saved as public before being added to the database. However, once set to public, users will not have the ability to change it… Continue reading How to newly created sticky note to be public by default
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
PCIN-1074 Bill payment Window Email (PROJECT 6)
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