This one i tried my previous task its working properly. When we have links on your page but you want to open them in a new tab (when visitors are navigating to another website).Do we need the class to be evaluated at the time of the click, or can the the link be flagged to… Continue reading Get an element by class and make it open in a new tab
Month: March 2023
CyberSource bundle – Enhancement
Case: Why User-Event Scripts deployed in Payment Card Token is not triggered, on its Creation event?Note: CyberSouce Bundle is handling payment card token generation. Enhancement: case number 5033375 SCMA > Invoices > Make Payment using Payment Card Token > User Event Script or Workflow not triggered that is currently attached to Enhancement # 638357.
Edit a Reversal Journal Entry.
User need to identify the original Journal Entry reference number first. The number indicated on the Reversal No. field of a Reversal Journal Entry is the reference number for the original Journal Entry. Steps: Navigate to Transactions > Financial > Make Journal Entries > List. Click Edit next to the original Journal Entry. Do necessary… Continue reading Edit a Reversal Journal Entry.
Customise a saved search which automatically sends email alert to sales reps when new sales order are entered
–Go to list>search>saved search>new>transaction -Under criteria tab> standard subtab type= sales order main line= True Date is within today -Under Results tab>column subtab number, name ,amount,sales rep fields are added -Under Email tab mark send email alert when records are created/updated -Go to specific recipients tab add an employee name –Receipts from results tab add… Continue reading Customise a saved search which automatically sends email alert to sales reps when new sales order are entered
Cash Sale Print PDF Customization
Print shipping cost on cash sale print. The shipping cost is under the shipping tab of Cashsale. Need to print the shipping cost when it has value. If it is empty, shipping cost field shouldn’t be printed. <tr><#if record.shipmethod?has_content> <td align=”right”><b>${record.shippingcost@label}</b></td> <td align=”right”>${record.shippingcost}</td></#if> </tr>
How to Resolve the Error “Invalid item reference key XXXX when Approving Inventory Count”
Scenario : How to resolve the Invalid item reference key XXXX when Approving Inventory Count Solution: When error “Invalid item reference key XXXX” is encountered upon approving Inventory Count, do the following: Identify the item with internal ID. This is the reference key on the error. Try to manually create an Inventory Adjustment (Transactions >… Continue reading How to Resolve the Error “Invalid item reference key XXXX when Approving Inventory Count”
Setting Default India HSN and SAC Codes on Shipping Item Records
To assign a default India HSN or SAC code on a shipping item record: Go to Lists > Accounting > Shipping. Click Edit next to the shipping record. In the India Tax HSN or SAC Code field, select the default HSN or SAC code for this shipping item record. Depending on your shipping preference, this code applies to both shipping… Continue reading Setting Default India HSN and SAC Codes on Shipping Item Records
Creating Intercompany Sales order
Jira Task : BGGN-915 To generate an intercompany sales order: Go to Transactions > Sales > Manage Intercompany Sales Orders. Select a customer and a currency to display the unlinked intercompany purchase orders that can be paired with sales orders for this customer.The Subsidiary field for the vendor on these purchase orders matches the Represents… Continue reading Creating Intercompany Sales order
How to use Checkbox inside Select Option using JavaScript
We can add the Checkbox inside select option using JavaScript. First we have to select element that shows “Select options” and also create a div that contains CheckBoxes. And according to it add javaScript functionality which is called when the user clicks. For eg: In script part added javaScript functionality which is called when the… Continue reading How to use Checkbox inside Select Option using JavaScript
JavaScript pattern matching using Regular Expression(RegEx)
If we want to match special character, meta character or using quantifers , we can do that by regular expression. For eg. If we want to match date , time or any particular pattern or complex things we can use it. Regular expressions allow you to check a string of characters like an e-mail address… Continue reading JavaScript pattern matching using Regular Expression(RegEx)