How to find current user in Sage ERP X3

In Sage X3, you may come across a scenario where you want to find the logged-in details of a current user. In that case, Sage X3 has the function called “Adxusr” through which users can achieve this feature. Description: “Adxusr” contains the connection user. Syntax: [S]Adxusr(12) Char Kindly refer to the below snippet of code… Read More: How to find current user in Sage ERP X3 »

How to print “Stock Valuation Report” in Sage X3

We may come across a scenario where we want a stock Valuation report by different Valuation methods (Such as Average, FIFO, LIFO etc). This can be achieved by using the “Stock Valuation report”. To achieve this functionality, Navigate:- Inventory >  Periodic processing >  Valuation >  Stock valuation report Depending on the selected Costing mode respective values… Read More: How to print “Stock Valuation Report” in Sage X3 »

How to determine the characters of the user entry types in sage ERP X3?

Adxtuc determines the characters of the user entry types. You may define types of entry that will be added to – or even substituted by –  standard types within an Adonix application. These extra types are described by one letter: their “code.” Syntax: [S]adxtuc (33) (32) Char Example: Output: Description : You may parameterize 32… Read More: How to determine the characters of the user entry types… »

How to Open a Word Document from an Adonix Process

If we want to open particular word document from an adonix process. We can use “System” command, which makes possible the execution of system commands by recovering where possible the standard exit in an Adonix variable. Syntax: System [ variable ‘=’ ] [ ! | !! ] [ [ server ] @ ] expr_c Where… Read More: How to Open a Word Document from an Adonix Process »

Sales Price Inquiry on the Sales Order Screen

You may have come across a situation where you would like to know from where the price is coming on sales order. Sage X3 has standard functionality where user can do the price inquiry by using the “sales price inquiry” (Refer the below screen shot) Navigate To: Sales>Sales>Orders>Lines tab Note: The Sales price inquiry screen can… Read More: Sales Price Inquiry on the Sales Order Screen »

How to Execute Recurring Batch Task Only Once

Sage X3 provides the recurring batch task functionality to execute a particular task after certain time period. Like if a user wants to schedule a task to be executed weekly or monthly, user can schedule his task. A user can define properties of recurring task such as starting time and ending time, frequency etc. It… Read More: How to Execute Recurring Batch Task Only Once »

How to Delete a Record in Sage X3 by using Table Index (Key)

There is multiple way of deleting a record in Sage X3. If we do not delete the record using the index the database must read the full table to find the rows to be deleted. That means deleting the row would be fast but finding would be very slow. ‘DeleteByKey’ instruction deletes a record at… Read More: How to Delete a Record in Sage X3 by using… »