excel2013自定义序列:Table Events

来源:百度文库 编辑:中财网 时间:2024/05/06 01:32:28
Table Events

Table Events:
 
Table Events are used to incorporate actions of table like validating the fields while creating a new entry or saving the data. Table events basically provide the control on table maintenance. For Creating the table events first goto transaction se11. Open a table and goto Utilities->Table Maintenance Generator. 

 

Table Maintenance Generator

Table Maintenance Generator is used to create table maintenance program to add, modify or delete records in the database table. This can be accessed using transaction SE54 or in SE11 using the menu Utilities->Table Maintenance Generator. This Table maintenance generator is responsible for handling the events. Events of table only can be table triggered if table maintenance generator of a table is generated.
 
Now Goto Environment->Modification->Events.


 
 

On Pressing F4 help you will find the list of table events.

 

Now as per our requirement we can select any of the event code. Suppose we want to validate the entries of table then we go for table event before saving the data. Select code 01 and write the name of perform where we will write the code for table event.

 

Now Goto Transaction se80 and open the function group of corresponding table for which we have made the events.

 

Under this perform we can write our code for table events.

Table Events:
 
Table Events are used to incorporate actions of table like validating the fields while creating a new entry or saving the data. Table events basically provide the control on table maintenance. For Creating the table events first goto transaction se11. Open a table and goto Utilities->Table Maintenance Generator. 

 

Table Maintenance Generator

Table Maintenance Generator is used to create table maintenance program to add, modify or delete records in the database table. This can be accessed using transaction SE54 or in SE11 using the menu Utilities->Table Maintenance Generator. This Table maintenance generator is responsible for handling the events. Events of table only can be table triggered if table maintenance generator of a table is generated.
 
Now Goto Environment->Modification->Events.


 
 

On Pressing F4 help you will find the list of table events.

 

Now as per our requirement we can select any of the event code. Suppose we want to validate the entries of table then we go for table event before saving the data. Select code 01 and write the name of perform where we will write the code for table event.

 

Now Goto Transaction se80 and open the function group of corresponding table for which we have made the events.

 

Under this perform we can write our code for table events.