Category Archives: Sage ERP X3

How to call specific file of an action through code

Sage X3 defines a method through which we can execute a specific file of an action. Generally, when an action is called, the standard code file will be executed. But sometimes, we may need to execute a specific file of an action. New Stuff: How to restrict purchase invoice creation without purchase receipt? We can do… Read More: How to call specific file of an action through code »

How to set folder currency to GCUR global variable

In X3 the folder currency is stored in the GUCR global variable. Many a time it happens that this variable does not get initialized. You can initialize GCUR variable with folder currency by calling standard function through code. New Stuff: How to restrict purchase invoice creation without purchase receipt? There is standard function CHARGE_GCUR written under… Read More: How to set folder currency to GCUR global variable »

How to restrict purchase invoice creation without purchase receipt?

Have you come across a scenario where you want to restrict purchase invoice creation without the creation of purchase receipt. Sage X3 has the standard feature where you can restrict to create the invoice without purchase receipt. New Stuff: How to automatically allocate the work order Navigate: Setup>General Parameters>Parameters values Set the parameter “PBUKA=Load from receipt only”.… Read More: How to restrict purchase invoice creation without purchase receipt? »

How to automatically allocate the work order

Have you ever come across circumstances in Sage X3 where you would like to automatically allocate the work order. New Stuff: How to replace the character in the string? Sage X3 has a feature where we can automatically allocate the work order at the time of creation. To successfully bring this functionality follow below steps. Navigate… Read More: How to automatically allocate the work order »

How to replace the character in the string?

In this blog, we are looking the X3 feature for replacing the specific character in the input string. New Stuff: How to open the object managed screen via code? The ctrans function is very helpful if the user wants to replace the substring as same in SQL with the help of REPLACE(). Syntax: ctrans(“inputstring”,”find character”,”replace character”)… Read More: How to replace the character in the string? »

Open the Object Managed Screen via Code

This blog gives you detailed information about the Nap feature from Sage X3. The Nap feature is very useful for users who want to open the object managed screen without going to Sage X3 Menu. The list below shows objects that can be used in the example – Navigate to: Development > Processes > Objects… Read More: Open the Object Managed Screen via Code »

Manufacturing Project Management (MPM) module features for enhanced Project Management

The Manufacturing Project Management module is aimed at accommodating the needs of manufacturing companies that use Project Management to design and manufacture goods and products. The standard Project Management functionality in Sage X3 has been enhanced in MPM with specific features that make it more specific to manufacturing project management Sage X3. The Project is… Read More: Manufacturing Project Management (MPM) module features for enhanced Project Management »

Test Sage X3 – Salesforce Cloud CRM integration, the easy way

In our last post we read a quick introduction of our Salesforce – Sage X3 integration and how we can get done more in less time. Next step would obviously be to see how is the overall experience of integrating your Sage X3 with Salesforce Cloud CRM. We have been regularly organizing live demos and webinars for… Read More: Test Sage X3 – Salesforce Cloud CRM integration, the easy… »

How to get number of day and name from date

Sage X3 provides you inbuilt function to retrieve the number of day and name of a day from given particular date. You just need to write one line of code as mentioned below. New Stuff: How to auto populate the dimensions on Sales Order detail? Syntax: day(exp_date) :  day extracts the day (number) from a date.… Read More: How to get number of day and name from date »