Tag Archives: Sage X3 Technical

Enable Deprec.total field in Fixed Assets master in order to capture accumulated depreciable value

Navigate to: Setup –> Parameter Value –> AAS – FAS – PRVSITUPD Set PRVSITUPD=”Yes “After setting this parameter to “Yes “this will allow the user to enter accumulated depreciable value under the Deprec.total (Refer below image). If an asset was purchased in 1st Jan 2013 and it’s deprecation start date was also same. Asset purchase… Read More »

How to get Name of the Program where the Error occurred

Errp returns the name of the script where an error occurred. It can be used in the error handling routine set by Onerrgo. Syntax : errp  Examples :   # Let’s trigger an error (division by zero) Funprog DIV_BY_ZERO Local Integer ZERO, ONE, RESULT Local Char ERROR_MESSAGE(250) ONE=1 : ZERO=0 Onerrgo ERR_HANDLE RESULT = ONE… Read More »

How to Use a not-usable Component in Work Order

In Sage ERP X3, there is a feature where you can check whether the component used in a product is non-usable or not while creating a work order. This can be achieved by following below steps:- Navigate to Setup → General Parameters → Parameters values Under Module → GPA Manufacturing and Group → Work Order… Read More »

How to define base quantity of Finished goods in Production BOM

Navigate: Common data>>BOMs>> Production BOM Select a Parent product Enter the mandatory fields’ details. Select the entry unit. The base quantity will get updated as per the selected unit. In this example, the COM005 & COM006 will be used to produce Quantity of DIS013 Therefore in a Work order, the FG will be produced on… Read More »

How to set default import parameters in Sage X3

In Sage X3, you may come across a scenario where you may need to set the fixed path for archival and error directories of import files. Generally, in Sage X3, data is imported using template functionality. It behaves in below two ways: If you import proper data file, then it will move to Final directory… Read More »

Folder Validation Using Batch Process

You may have come accross a situation where Folder Validation gets interrupted due to user/browser timeout. For achieving uninterrupted folder validation, batch process can be used. Example: Let us assume that a Folder named “SEED” needs to be validated. Now, to validate the folder using batch process, follow the following Steps: Go to Usage>Batch Server.… Read More »

How to find out any special character is used in a text

You may come across the situation where you have to find out whatever any special character is used in a text or not, parse allows you to analyze an expression contained in a character string syntactically. Parse, returns zero (0) when the expression analyzed is syntactically correct – or, otherwise, a non-null value that corresponds… Read More »

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 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 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 »