Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

When i create a Table Maintenance Generator ,which is the event that will Trigger ?

Answer Posted / ravi

While creating the tables, sometimes we may need to update
the table fields in the background.

Lets take an example, if create a table with 10 fields in
those 10 fields there are 2 fields which are User name and
the Date, these 2 fields should update automatically when a
record Inserted/Updated in the table.

For this, we need to create a table maintenance generator
for that table. There in the table maintenance generator we
have an option to create EVENTS.

In the table maintenance generator,
Environment --> Modifications --> Events
then a screen will be appear here,we need to create the
Events, for updating the
fields create 05(Creating a new entry) and 21(Fill hidden
fields) .

In the EVENTS screen, press new Entries, there give 05 and
give a name(This will
become a PERFORM), then click the Editor pushbutton, this
will be there at the right side of the entry, then a popup
will be appear, you can create an include program,there
inside of the include program write the below code

form CREATE_ENTRY.
TABLE-USERNAME = sy-uname.
TABLE-CHANGED_ON = sy-datum.
endform.

Then in the events screen enter 21 and give the form name
as HIDDEN_FIELDS, then
press the editor button, then in the editor

form HIDDEN_FIELDS.
TABLE-USERNAME = sy-uname.
TABLE-CHANGED_ON = sy-datum.
update TABLE.
endform.

This CREATE_ENTRY Perform will be triggered for every new
entry and the
HIDDEN_FIELDS fields will be triggered for every changed
value in the table, so the
Fields USERNAME and the CHANGED_ON fields will be updated
automatically when a
new record inserted into the table or an existed record
changes through the table maintenance generator.

If you want any more functions, and then look at the
events, you can press the F4 and look at the description of
the event, then you come to know how to use and where to
use.
Regards
Ravi Palanivel

Is This Answer Correct ?    13 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How we format the data before before write statement in report ?

965


What are the features of abap/4 dictionary? : abap data dictionary

1059


What is ole?

1130


2)In production what is the user exit?

1966


Explain what is a foreign key relationship? Explain this with the help of an example.

1064


In the abap/4 dictionary tables can be defined independent of the underlying database (t/f). : abap data dictionary

1172


What are the basic objects of the data dictionary?

1013


What is a table pool?

1148


Power is interrupted while transferring data from internal table to application server. How will you determine many records are transferred in session method and call transaction method? : abap bdc

1275


What are the data types of the abap/4 layer?

1204


hi..i hav developed an interactive report in which alv list display in basic list and 1st secondary list in alv grid display.I want to get summation(total) of the columns in the secondary list.I hav used 'do_sum' but i couldnt get.is there any other way to get summation(total) in secondary list which is an alv grid display

2957


What will exactly the hide statement do?

1031


I am uploading 100 records out of which say 59th record has error so what will happen if I am using synchronous or asynchronous method of bdc? Can we update the database using local update mode how? : abap bdc

3434


Reports: Event functionality.

1348


Event handling in oops

1528