2006 Jun 26 6:48 PM
Hello,
May I know how can I load an infotype table at the initialization stage and read it later on using the READ TABLE statement? I would appreciate if someone could offer me an example on this. Thanks!
Anyi
2006 Jun 26 6:51 PM
Sure, you can just do a fetch.
data: ipa0001 type table of pa0001 with header line.
initialization.
select * into table ipa0001 from pa0001.Then you can read it later....
read table ipa0001 with key pernr = p_pernr.
Regards,
Rich Heilman
2006 Jun 26 6:51 PM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |