Posts

Showing posts from 2019

Query build range on AX X++

QueryBuildRange qbr; *   For setting range value we usually use like this qbr.value(“Our Value”); qbr.value(queryValue(“Our Value”)); *   For setting range value using SysQuery qbr.value(SysQuery::value(“Our Value”)); qbr.value(SysQuery::valueLike(“Our Value”)); qbr.value(SysQuery::valueNot(“Our Value”)); *   For logical NOT qbr.value(SysQuery::valueNot(“Our Value”)); *   For retrive all records in usual way we can give like empty (” “) but using sysquery class qbr.value(SysQuery::valueUnlimited()); *   For retrive Null records qbr.value(SysQuery::valueEmptyString()); *   For retrive Not Null records qbr.value(SysQuery::valueNotEmptyString()); *   For giving range usually we add  qbr.value(fromDate,toDate)  but using sysQuery qbr.value(SysQuery::range(fromDate,toDate); The method will add the dots (‘..’)  like this *   For finding total number of records available in the...

Basic Accounting

Image
In this training lesson, we will study what accounting is, what its main principles are, its terminology, and how accounting is used in a company. The accountingcoach.com is a very good site with clear and concise explanation of Accounting. Let’s assume that Taras goes into the pizza business – namely, cooking and selling pizza. The name of the new company is  The Tastiest . Taras will start his business by putting some of his personal savings into it. In effect, he is buying shares of The Tastiest’s common stock. This is the first initial transaction – the company receives cash but at the same time the company has a debt. Try to illustrate this transaction. First Transaction Imagine a circle which represents the whole company, its left side is the Assets and its right side is the Liabilities. Assets are the things that the company owns and are sometimes referred to as the resources of the company. Liabilities are obligations of the company; they are amounts owed to others. ...