i’m axapta fresher , please give answer
Hi Ajay,
You really want to know the use of super()… call one method before super and call another method after super… Put a breakpoint at the right place i.e at super() and see what happens… You will came to know the need…
thanks and regards,
Kevin
super() used together with inheritance. Calling super() means calling a method with the same name in a parent class. The parent can be a normal class in X++ (then you can navigate to it in editor and debugger), or it can be a kernel call, e.g. when you call super() in insert() method on tables.