0% found this document useful (0 votes)
644 views

Commands To Mask Fields or Values in Sage X3

The document discusses commands in Sage X3 that can mask fields or values on screens by greying them out, enabling/disabling them, refreshing values, or deleting values. The commands are Diszo to grey out fields, Actzo to enable fields, Affzo to refresh values, Effzo to delete values, and Raz to clear fields or entire masks. Code examples are provided to demonstrate using the commands on a specific field called "TEST" on the mask "MTEST".

Uploaded by

ruzha
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
644 views

Commands To Mask Fields or Values in Sage X3

The document discusses commands in Sage X3 that can mask fields or values on screens by greying them out, enabling/disabling them, refreshing values, or deleting values. The commands are Diszo to grey out fields, Actzo to enable fields, Affzo to refresh values, Effzo to delete values, and Raz to clear fields or entire masks. Code examples are provided to demonstrate using the commands on a specific field called "TEST" on the mask "MTEST".

Uploaded by

ruzha
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Commands to Mask fields or values in

Sage X3
BY G R E Y T R I X ON F E B R U A R Y 2 7 , 2 0 1 3

While we are doing some customization or any add-on development there are
requirements where we need to Enable/Grey out or Refresh or Delete the values of the
fields on the screen.

To achieve this Sage X3 provides some keywords which are the topics of discussion
within this blog.

1) Diszo: Diszo is used to grey out or disable the fields within the mask.
2) Actzo: Actzo is used to make the fields enable or enable the entire mask.
3) Affzo: Affzo is used to refresh the values within some or all of the zones in a mask.
4) Effzo: Effzo is used to delete the values of the fields in the mask.
5) Raz: Raz will clear the mask or a single field/section within the Mask.
For e.g we want to execute the Commands mentioned above on the field TEST
available on the screen MTEST, please check the code samples mentioned below:

Code:
Disable the field:
If <Condition>
Diszo [M: MTEST] TEST
Endif

Enable the field:


If <Condition>
Actzo [M: MTEST] TEST
Endif
Refresh the field/mask:
Affzo [M: MTEST] TEST
Affzo [M:MTEST]

Delete the Field:


Effzo [M: MTEST] TEST
Clear the Field/Mask:
Raz [M: MTEST] TEST
Raz [M:MTEST]

You might also like