User Acceptance Testing (UAT) is a type of testing performed by the end user or the client to verify/accept the software system before moving the software application to the production environment. UAT is done in the final phase of testing after functional, integration and system testing is done. Purpose of UAT The main Purpose of UAT is to… Continue reading What is UAT?
Month: April 2022
Intercompany bill automation
Proposal summary QIMA group would like to automate the bill creation from invoice in the Intercompany Process Requirement QIMA group would like to eliminate the PO and SO creation and other manual process on Intercompany transaction. They need to directly create Invoice and, on a trigger, the bill should be created automatically. Our Solution As… Continue reading Intercompany bill automation
How to Add Product Attribute in Magento 2?
1. Go to Admin Panel > Stores > Attributes > Product. Press the Add New Attribute button. 3. Fill out the Attribute Properties section. Enter a Default Label of an attribute. It will be displayed on the admin panel. Choose a type of an attribute in the Catalog Input Type for Store Owner field. There are such available values here as: Text Field, Text Area, Date, Yes/No, Mutliple Select, Dropdown, Price, Media Image,… Continue reading How to Add Product Attribute in Magento 2?
SRX-255 Proposal For AWP Customization
Test Scenarios For Links
Check whether the link added on the page is clickable or not by clicking on the link. Verify whether the text is added to the link or not. Verify correct URL/link address should be added to the text or not. Verify on clicking on the link redirects to the correct URL or not. Verify that… Continue reading Test Scenarios For Links
Any changes made inside the record can be reflected (Bolded) in PDF template.
1. Create a custom field inside the record.2. write the script to find the changes made inside the record.3. Store that changes inside the custom field.4. Similarly create the code given below in the style part of the PDF template.<#if record.custbody_jj_store_value?length != 0>${record.custbody_jj_store_value}{font-weight: bold;}</#if>// custbody_jj_store_value is the custom field created inside the record.5. Call it… Continue reading Any changes made inside the record can be reflected (Bolded) in PDF template.
Custom List Edit Possibility
We can edit the values inside a Custom list using script. But to create a new custom list is not possible. Script:var parentOption = record.load({type: ‘customlist’,id: optionDetaildarr[0][“optionInternalID”],isDynamic: false,}); var numLines = parentOption.getLineCount({sublistId: ‘customvalue’}); parentOption.setSublistValue({sublistId: “customvalue”,fieldId: “value”,value: optionalListValue,line: numLines});parentOption.setSublistValue({sublistId: “customvalue”,fieldId: “abbreviation”,value: optionalListValue,line: numLines});var id = parentOption.save();
appending country code to phone numbers based on location
Sript 2.0 Code used to obtain the values from contact record and update the phone number field by appending the country code at beginning based on the location then add it in to the contact record. Using this field we also sending email
Custom List Search Possibility
We can search a custom list in netsuite and get the values from the custom list using saved search. For that: NavigateCustomization> Lists> Click on the “List” link on the respective lists that to be searched> search. Script:var customlist92SearchObj = search.create({type: listID,filters:[[“name”, “is”, option]],columns:[search.createColumn({name: “name”,sort: search.Sort.ASC,label: “Name”}),search.createColumn({ name: “internalid”, label: “Internal ID” })]});
How to Add EAV Attribute in Magento 2
Magento supports two types of attributes including EAV attributes and extension attributes that provide extra functionalities for your stores. In this post, you will get an overview about EAV attributes and detailed instruction in how to add EAV attribute in Magento 2. Construct function is must for EAV attribute add to controller Setting EAV attribute… Continue reading How to Add EAV Attribute in Magento 2