In Table Maintaince Generator for a table i need some fields
to be filled default,like date from sy-datum.........when the
displays initailly....HOw
Answer Posted / balamurugan
1.Create table maintenance generator for your table.
2.In table maintenance screen,go to
Environment-->Modification-->Events.
3.In T column ---> 05(create new entries)
Form column---> Form name(like user_date).
4.Then click on the Editor column,now you will get editor
screen.Then write the code within the form.
Eg:
zaa-date1 = sy-datum.
5.Save and activate.Now try the table entry without filling
this field.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
How to call a subroutine in sapscript?
What are the page windows?
What are the data classes in abap?
What is the use of table maintenance allowed?
How does the interection between the dynpro and the abap/4 modules takes place?
What is logical database? : abap hr
What are the two different ways of building a match code object?
how to update the filed value in SAP in ZAWSYS and create time and date? please tell me the answer
What is the difference between field-group header and other field groups? : abap modularization
Explain the properties of selection screen?
How is the command suppress-dialog useful?
How many ways you can create table? : abap data dictionary
What is sap abap tables?
What is the collect statement? How is it different from append?
Can you give the Example for the structure of an ABAP program? REPORT... NODES: SPFLI, SFLIGHT. DATA:... INITIALIZATION. AT SELECTION-SCREEN. START-OF-SELECTION. GET SPFLI... GET SFLIGHT... GET SPFLI LATE. END-OF-SELECTION. FORM... ENDFORM.