What is UAT?

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?

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?

Published
Categorized as Magento

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();

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