Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to validate the table entries without zprogam

vallamuthu_madheswaran2
Active Contributor
0 Kudos

Hi Guru's

I'm having a table in that table have 4 fields ie pernr, name, date and time.

if entered the pernr nand name the remaining 2 fields is automatically populated in SM30.

i added one include in the function group.

Thanks & Regards,

Vallamuthu.M

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi

In table maintenance generator screen

1) Top menu, Environment->Modification->Events - Create new event

2) If you click on the search help of the first field, You can see all the available events

3) Here, you select 05 Create_event, and double click

4) Write below code in it

FORM CREATE_ENTRY.

ZTABLE-ERDAT = SY-DATUM.

****

ENDFORM.

Regards

Deepa

3 REPLIES 3

Former Member
0 Kudos

Hi

In table maintenance generator screen

1) Top menu, Environment->Modification->Events - Create new event

2) If you click on the search help of the first field, You can see all the available events

3) Here, you select 05 Create_event, and double click

4) Write below code in it

FORM CREATE_ENTRY.

ZTABLE-ERDAT = SY-DATUM.

****

ENDFORM.

Regards

Deepa

former_member233090
Active Contributor
0 Kudos

Hi,

After Creation of your table

Step 1 :Click on Utility -> Table Maintenance Generator

Step 2 :Provide authorization group, function group and screen numbers and Save it.

Step 3 :Click on Back button.

Step 4 :Now, click on Environment -> Modification -> Events

Step 6 :Click on New Entries.

Step 7 :Select u201905 u2013 Creating a new entryu2019.

Step 8:Provide a Form routine as u2018CREATE_CUST_INFOu2019 and click on Editor Button.

Step 9 :Write the validation code in the include program. Activate it. Activate your function group as well.

Cheers,

Bhavana

Former Member
0 Kudos

tried searching in SDN its a nice forum to search things... look what i found though searching..

[table maintenance events|http://help.sap.com/saphelp_470/helpdata/en/91/ca9f0ea9d111d1a5690000e82deaaa/frameset.htm]

[wiki one|http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=93454609]

[wiki2|http://wiki.sdn.sap.com/wiki/display/ABAP/ExtendedTableMaintenance+Events]