2009 Nov 25 6:02 AM
Hi all,
i need to read data from deep structure. I am getting data from importing parameter of a function module 'WA_JOB' which is of SSFCRESCL structure. SSFCRESCL contains SPOOLIDS which is table type TSFSPOOLID. TSFSPOOLID is of a line type RSPOID and i am getting my data (spool request number) in this. How to read this data. please help.
Thanks in advance.
2009 Nov 25 9:32 AM
you read like this:
data: w_RSPOID type RSPOID.
loop at SSFCRESCL-SPOOLIDS into w_respoid.
the spool id will be w_respoid.
endloop.
venkat
you read like this:
data: w_RSPOID type RSPOID.
loop at SSFCRESCL-SPOOLIDS into w_respoid.
the spool id will be w_respoid.
endloop.
venkat
2009 Nov 25 6:09 AM
Hi Aswin
Create a internal table of type RSPOID and then assign itab[ ] = SSFCRESCL-SPOOLIDS[ ] .
Regards
Bala
2009 Nov 25 6:30 AM
2009 Nov 25 9:32 AM
you read like this:
data: w_RSPOID type RSPOID.
loop at SSFCRESCL-SPOOLIDS into w_respoid.
the spool id will be w_respoid.
endloop.
venkat
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |