‎2010 Dec 15 12:28 PM
Hi people,
I'm using the command bellow to get the value of the field EKPO-ebeln.
v_ebeln = '(SAPMM06E)EKPO-ebeln'.
ASSIGN (v_ebeln) TO <ekpo>.
it_ekpo-ebeln = <ekpo>.
how to use the same command to get the value of all fields from Ekpo ?
tks
Flavio
‎2010 Dec 15 12:43 PM
‎2010 Dec 15 12:39 PM
Hi,
Try
field-symbols : <fs> type table, <fs1>.
v_ebeln = '(SAPMM06E)EKPO[].
ASSIGN (v_ebeln) TO <fs>.
loop at <fs> assigning <fs1>.
...
endloop.
‎2010 Dec 15 12:43 PM
‎2010 Dec 17 10:56 AM
Hi,
In order tp pass the data from field symbol to workarea . you must have the workarea and field symbol same structure .
Then u can pass all the row data from field symbol to workarea.
Regards,
Phani Sista.