Jogeswara Rao K
Yes - it certainly overcomes some of the limitations of the standard user-exit import restrictions - it also works with BADIs too.
In ABAP memory you've obviously found that the data was held in (SAPLCOBC)RESB_BT[], and there's loads more data available.
There's a trick that I use that sometimes works..
What I do is search for function modules using *CO*BT* and try these in my code first. If I can't find anything suitable, then as a last option I use the field-symbol solution you describe above.
But be warned, there are issues when using the field-symbol approach that you should be aware of:
- SAP don't recommend this approach (though they do sometimes use it themselves!!)
- There can often be multiple tables in memory with similar data (e.g. old/new data)
- Remember to unassign the field-symbols. This is especially important if you are preforming mass updates on multiple objects
PeteA