PART 3.2 – Vendor/Purchase Transaction GL Impact

Purchase orders are non-posting transactions that are sent to a vendor to keep track of items that are expected to be delivered. They include the associated price and quantity.  2. Item receipts are used to match against an open purchase order when items have been received. The GL impact will show an increase in the asset account… Continue reading PART 3.2 – Vendor/Purchase Transaction GL Impact

PART 3 – General Ledger Impact and Transactions

This section will explain the fields displayed on the GL Impact page and the types of transactions that generate GL Impact. GL Impact Page Fields  Accounting Book: This field will show up only if the Multi-Book accounting feature is enabled and provides the ability to maintain multiple sets of accounting records. For example, a company that… Continue reading PART 3 – General Ledger Impact and Transactions

How To Do API Testing?

An application programme interface (API) is examined during an API test to ensure that it satisfies the requirements for functionality, security, performance, and dependability. Either on the API directly or as a component of integration testing, the tests are run. API testing can be done in two ways : 1) Manual 2) AutomaticIn manual API… Continue reading How To Do API Testing?

Different ways to Concatenate Strings in free Marker

We can achieve this by using + operator OR without operator Without + operator <#assign s = “Hello ${user}!”> ${s} Using + operator <#assign s = “Hello ” + user + “!”> Note : Assume that user is “Big Joe”. In both cases the output will be Hello Big Joe!

To remove all intervening line breaks in a template

Use <@compress single_line=true>…</@compress>  It aggressively removes indentations, empty lines and repeated spaces/tabs . Example: <@compress single_line=true> <#assign users = [{“name”:”Joe”, “hidden”:false}, {“name”:”James Bond”, “hidden”:true}, {“name”:”Julia”, “hidden”:false}]> List of users: <#list users as user> <#if !user.hidden> – ${user.name} </#if> </#list> That’s all. </#compress> OUTPUT List of users: – Joe – Julia That’s all.

Insert another FreeMarker template file into your template.

You can achieve this by using include. Syntax <#include path> or <#include path options> path: The path of the file to include; an expression that evaluates to a string. (With other words, it doesn’t have to be a fixed string, it can also be something like, for example, profile.baseDir + “/menu.ftl”.). Example: Assume /common/copyright.ftl contains: Copyright… Continue reading Insert another FreeMarker template file into your template.

Starting with Item Substitution

Steps of enabling Item Substitution. Enable Multi Inventory Location feature in the account. Install the Supply Chain Management SuiteApp Enable Item substitution feature in the account. Give permissions to roles -> Custom Record–Item Substitution — Full Also check the checkbox Enable Item substitution in the employee record To access Item Substitution for roles – Item… Continue reading Starting with Item Substitution