Hello everybody,
Imagine following scenario. You have some code in base class, which you need to change. How to do it. For this purpose you can use PXOverride attribute.
See the following code:
public class YourExtension : PXGraphExtension<SomeBasicGraph>
{
[PXOverride]
public v...