Category Archives: Uncategorized

Sage X3 V 11 – Verify stock multi-counting (Part 2)

As seen in the previous blog, once the counting process is complete, you can print the report, Sage EM V11 has added a new report for printing the multi-counts. Select INVBORA Go to stock line selection criteria You will find different options here to print the report These options lets you print report for the… Read More »

How to get the size of the keys

You may come across where you need to check the size of the keys. keylen determines the size of the keys (in number of bytes) for an open table. Keylen is a variable table of the [G] class associated with a table declared by a File command. The dimension of keylen is given by the [G]nbind… Read More »

Sage Summit Toronto 2017 – Flaring up the Ignited Passion for your business

Sage Summit 2016 indeed did justice to the theme “Ignite your Passion” with over 15,000 entrepreneurs attended the world’s largest event to grow their business. The event was graced with noteworthy entrepreneurs like Sir Richard Branson, Ashton Kutcher, Gwyneth Paltrow, Zooey Deschanel, Robert Herjavec and Daymond John who gave away key business mantras. Entrepreneurs explored… Read More »

Getting the List of Accessible Classes in the Current Application

We may encounter a scenario where we want to know the names of the classes that are accessible in a current application. For this, CLANAM function can be used. The CLANAM function is basically used for acquiring the list of classes accessible to the current application.CLANAM function returns the Char type. Syntax : clanam(< Class… Read More »

How to Change the Title of a Tab Dynamically?

Sage X3 provides an inbuilt function to rename the title of a tab at runtime. We can change the tab title dynamically using following function: Chgtfd [class] expr_c Where, class: describes an open mask. In the absence of this parameter, the default mask is used. expr_c: describes expression of the type Char containing a valid… Read More »

Steps to assign Conditional style to screen in Sage X3

Step 1: Navigate to Setup >> General Parameters >>Conditional Style assignment. Step 2: Enter screen code “YWMCSPSTD” and assign conditional style “YSTL1” for all columns except “scheduled date” set conditional style “YSTL2” (Refer to below screen shot) . Step 3: Click on save. Step 4: Put screen code “ZCONSCSO2” and put conditional style “YSTL” for… 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 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 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 »