2007 Jun 25 7:32 AM
hi,
Populate some table name, just i want to know what is the exact meaning for Populate, what we have to do in coding scenario...?
Akshitha.
hi,
Populate some table name, just i want to know what is the exact meaning for Populate, what we have to do in coding scenario...?
Akshitha.
2007 Jun 25 7:33 AM
hi,
populating means just filling the database table with some contents.
regards,
Navneeth K.
2007 Jun 25 7:34 AM
Hi,
Populate mwans filling table contents.
e.g. Append, Insert are few statemetns to populate database or Internal Table.
Reward if useful!
2007 Jun 25 7:35 AM
Hi
Guess your question is populating from a <table>? Am I right?
If yes, it means selecting the data from the <table> based on the conditions into an internal table for processing.
If no, it refers to populating (creating new records) in the <table>, it can be done either thru Trxn SM30 (Table maintenance Generator) or through a program(Interface program).
Regards
Raj
2007 Jun 25 7:39 AM
Hi,
Populating means just Adding Datas in Database Tables using Insert,Append,Etc,.
Regards,
Padmam.
2007 Jun 25 7:39 AM
Akshita Akshita,
data:begin of itab occurs 0,
matnr like makt-matnr,
spras like makt-spras,
maktx like makt-maktx,
end of itab.
select matnr spras maktx from makt into table itab where spras = sy-langu.
The above said select statement will fetch all the records which are corresponding to sy-langu ie EN from MAKT into ITAB.The metho of fetching the records from one table and fillinng up another table is called populating.here we are fetching the records from MAKT and populating ITAB.
K.Kiran.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |