Category Archives: Sage ERP X3

How to Setup packaging in Version 8 of Sage X3

If we come across a scenario where we want to setup packaging in version 8 of Sage X3 then It provides a standard functionality ‘Packaging’. To set up this functionality: Navigation: Common Data – Products – Product Categories

Handling the Customized Fields Using Entry Transaction in Sage X3

In Sage X3, whenever we do any change on transaction screens like order, shipment, receipts or any other screens, we need to validate Entry Transaction. But, we may come across a scenario where user wants the modifications to behave differently depending on the transaction selections. For e.g., A customized field on Sales Order is to… Read More »

How to give space between string by coding in Sage X3?

How to give space between string by coding You may come across a scenario were you need to provide the space  between string.X3 has a function “space$(n)” which  returns a string with n spaces, Syntax as below. Syntax: space$(nb_esp) space$(nb_esp) returns a string comprising nb_esp spaces(ascii code 32). This function is thus equivalent to string$(nb_esp,… Read More »

How to extract a substring from the leftmost end in Sage X3?

Sage X3 has a function, which helps us to extract a substring from the leftmost end of a string. The function used to extract the substring is Left$(). Syntax: Left$(String, nb_string) Refer the following example for the same: In the above exmaple we use left$() for the extraction from the string, upto 16 characters.  

How to enable new added dimension in Sage X3?

Earlier we have explained how to enable the dimension on header and line level and also explained how to populate it with default value. Now here we are explaining how to enable the new added dimension. See below example- Navigate to entry transaction and add enter new dimension. Navigate to Setup >Organizational structure>Default dimension types. And… Read More »

“GTE Error in Field Evaluation” error while running accounting interface

Go to Set up →General Parameters →Formulas Expand Automatic Journal Search “SKG” and cross check if formula for SKG has been defined or not, if formula is not present, kindly copy the same from SEED Folder and paste the same. <imgtarget=”_blank” rel=”noopener noreferrer”></imgtarget=”_blank”> If there folder is multi-legislation, one needs to define legislation wise formula –… Read More »

How to Find a Factorial of Any Integer Number in Sage X3?

We may come across a situation, where we need to calculate a factorial of any integer. Sage X3 provides built-in function ‘fac’ to calculate the same. Fac: It calculates a factorial of any integer value. Syntax: fac(integer) To better understand this, refer the below snippet of code:

How to enable or disable new button in window?

We may come across the situation, where we want to enable or disable NEW button in window. Sage X3 has a special function to enable or disable new button in window. To enable new button, use the below syntax. Syntax: Enable GSTACRE Parameter details: Enable: Enable is the function that is used to enable the… Read More »

How to assign the technical sheet for each operation of work order in Sage X3?

You may come across a situation where you want to attach the Technical sheet to every operation of work order? Sage x3 has standard feature where you can attach the technical sheet. Follow the below steps to attach the technical sheet entry Navigate: Manufacturing ->Planning->Work order->Operations tab In management tab attach the technical sheet.

How to add a string in a new Line in Sage X3?

We may come across a scenario where we want to display message in new line, X3 has a function to achieve this.”chr$” function converts a numerical value in an ascii character, syntax as below. Syntax: chr$( exp_ent ). “chr$” returns a character whose ascii code corresponds to the argument (if there is a corresponding ascii… Read More »