What is the functioning of on-change event

Showing Answers 1 - 8 of 8 Answers

Sudhar

  • May 1st, 2006
 

The onchange of is a control break statement. It is used within loop -end loop statement which is used for selecting multiple records from an internal table. We can use the on-change of statement to perform any operation in the internal table when there is any change in the value in the specified field.Before using the on change statement the internal table should be sorted.Syntax: loop at itab.on change of ( field name)............endon.

  Was this answer useful?  Yes

sandeep reddy

  • Nov 19th, 2006
 

the sum operation will  be performed for the 1st field of the internal table

if the field is in the second column then we shld use ON CHANGE OF EVENT

  Was this answer useful?  Yes

raj_trojan

  • Aug 13th, 2007
 

On Change is a Control Break statement which can be used inside a loop as well as outside the loop. This is similar to At-New control break statement in function.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions