Hi all,
I used following code long back to fetch marc value n my user exit.
But i am not able to recollect how i found imarc for call ZRICH_0006.
In other words please guide me how to find the various variables,tables and sructure available for a particular stack call(STACK CALLS AVAILABLE WHILE DEBUGGING IN DEBUGGER)
available in user exit.
data: field(50) type c.
data: xmarc type marc.
field-symbols: <imarc> type marc_upl_tt.
Assign an internal table
field = '(ZRICH_0006)IMARC[]'.
how do we get to know IMARC[] and various variables,tables and sructure available
assign (field) to <imarc>.
You can now access IMARC from other program
loop at <imarc> into xmarc.
write: / xmarc-werks.
endloop.
Edited by: Sanjay_lnt on Apr 19, 2010 9:45 AM