The modern workplace comprises a diverse mix of individuals from different age groups, each with unique characteristics, values, and work preferences. To effectively manage and create a harmonious work environment, HR professionals must understand the various generations present in the workforce. This guide aims to provide HR personnel with valuable insights into the distinct traits… Continue reading HR Guide to Generations in the Workplace
Month: July 2023
Keys to Improve your Hiring Process
Improving your hiring process is crucial for attracting top talent and ensuring the right candidates are selected for your organization. Below are key strategies to enhance your hiring process: Define clear job requirements: Start by creating detailed and accurate job descriptions that outline the skills, qualifications, and responsibilities required for the role. This helps attract… Continue reading Keys to Improve your Hiring Process
Role of HR Leaders in Promoting Employee Wellbeing in the Workplace
The role of HR leaders in promoting employee wellbeing in the workplace is crucial for creating a positive and productive work environment. Employee wellbeing encompasses physical, mental, emotional, and social aspects of an employee’s life. When HR leaders prioritize and actively support employee wellbeing, it can lead to increased employee satisfaction, engagement, and retention, as… Continue reading Role of HR Leaders in Promoting Employee Wellbeing in the Workplace
Search for Custom Duties applied in Item Receipt.
Requirement: User need a report that shows computation of the custom duties added to an item through Item Receipt Transaction to help better understand the breakdown of costs of inventory and a summary of landed costs. Solution A saved search can be customized to show total landed cost assigned to an item receipt transactions. Navigate… Continue reading Search for Custom Duties applied in Item Receipt.
Resource Skill Set SuitApp
Create a Skill Category A Skill can represent either knowledge or the ability to perform a task. For each skill, you can definedifferent expertise levels, such as basic, intermediate, and advanced.You can create Skill Categories to group related skills under the same classification.Steps1) Perform a Global Search to locate the New Skill Category page.2) Enter… Continue reading Resource Skill Set SuitApp
There are no records of this type when using the suitelet URL.
When working with Suitelets in NetSuite, there are some reserved parameter names that you should avoid using to prevent conflicts with NetSuite’s internal functionality. Here are some reserved parameter names in Suitelet URLs: eidcplpopupsd_nodropscstickyprintemailqsistrdisplayonlynodisplaydeployscript To avoid conflicts, it is recommended to choose parameter names that do not overlap with these reserved names. For example, you… Continue reading There are no records of this type when using the suitelet URL.
Search to get the Orders with the status Closed
It is not necessary to close all the Item lines for an order to have closed status. There are two possible options. Options-1 All the item lines in the orders are closed. Option-2 Some of the Item lines in the order are closed and the remaining item lines are fulfilled or received. So if we… Continue reading Search to get the Orders with the status Closed
ACH Available in the Checkout Flow – 2023.1.0
With the 2023.1 release, ACH payment methods will be available on the standard checkout flow of SuiteCommerce and SuiteCommerce Advanced websites. Commerce website users will be able to: Add an ACH payment method. Save an ACH payment method added during checkout. Save an ACH payment method added during make a payment. Merchants can use this… Continue reading ACH Available in the Checkout Flow – 2023.1.0
Disable customer attribute in the Magento admin form
You need to create Namespace/Module/view/base/ui_component/customer_form.xml and add the following code <?xml version=”1.0″ encoding=”UTF-8″?> <form xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Ui:etc/ui_configuration.xsd”> <fieldset name=”customer”> <field name=”attribute name”> <argument name=”data” xsi:type=”array”> <item name=”config” xsi:type=”array”> <item name=”disabled” xsi:type=”boolean”>true</item> </item> </argument> </field> </fieldset> </form>
Hide Custom Customer Attribute in Customer Account Information Section from Admin Panel
Step 1: Create customer_form.xml in the below path app\code\Vendor\Extension\view\base\ui_component\ And add the below code <?xml version=”1.0″ encoding=”UTF-8″?> <form xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Ui:etc/ui_configuration.xsd”> <fieldset name=”customer”> <field name=”your_attribute_name”> <settings> <visible>false</visible> </settings> </field> </fieldset> </form>