how we insert record in to data base table ? how many ways
are there what are there?
Answer Posted / pm
Following are the ways which I can promptly think of:
1.Using internal table:
INSERT <dbtab> from table <itab>.
where itab (internal table )contains the entries to be
inserted into the database table
2. Using work area:
INSERT <wa> into <dbtab>.
3. Using database views
4. Table maintenance view through SM30
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are the client dependant objects in abap / sap?
What are subroutines? : abap modularization
What are the other modules integrated with om? : sap abap hr
What is output determination?
Explain enhancements
Can matchcode object contain ids with different update types? : abap data dictionary
Difference between Read and Get cursor?
How to write a code in tab control? : abap bdc
What is the function of the transport system and workbench organiser?
What are the data types of the abap/4 layer?
What is a table attribute?
What is structure?
If A is the super class of B. And both the classes have constructor. We create an object of class B. Then which constructor will be called? If both then in which order?
What are two different ways to add fields to sap tables?
A field containing quantity amounts (data type quan) must be assigned to a referencetable and a reference field. Explain?