2008 Aug 29 8:30 AM
Hi all,
In ecc6.0 i have been trying to use tables parameters while designing function modules and it says tables parameters are obsolete, what should be used here and how?
Regards,
C.A
2008 Aug 29 8:33 AM
Hi all,
In ecc6.0 i have been trying to use tables parameters while designing function modules and it says tables parameters are obsolete, what should be used here and how?
Regards,
C.A
2008 Aug 29 8:33 AM
2008 Aug 29 8:47 AM
Hi,
I have used changing parameters.
demo type table
now in my source code i have written
loop at demo.
endloop.
during syntax check it says
demo is neither specified under "TABLES" nor defined as an internal table.
what should be done here
2008 Aug 29 8:58 AM
You need to define your table type AS a table type in SE11.
Or type it as ANY TABLE might work. But properly defining it in SE11 is better.
2008 Aug 29 8:58 AM
Hi,
Create a table type in Se11 of the type internal table.
Now when you are decalring the internal table in Changing parameter give the reference of that table type.
Create another work area in the source code of function module.
now loop the Internal table sa usual.
regards,
Sujit
2008 Aug 29 8:41 AM
Hi,
I think in table parameters of FM.
You are trying to declare a table parameter like
ITAB_NAME TYPE <TABLE_TYPE>
it should be ITAB_NAME TYPE <Structure name>
Check out for this case.
With Regards,
Dwarakanath.S
2008 Aug 29 8:45 AM
Hi
U can declare table parameters using LIKE.
With Regards,
Dwarakanath.S
2008 Aug 29 8:41 AM
Hi Abhinay,
Tables options has been made obsolete, so you can use changing in place of table.
With luck,
Pritam.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |