‎2007 Mar 16 7:13 AM
Hi Friends,
I would like to ask one question regarding BDC.
Suppose I have 2 transaction X & Y.
Now in X transaction having output table T1. The table T1 having field F1, F2, F3 , F4.
Now I need to call Y transaction & the Y transaction having screen fields F2, F3 & F4.
My requirement is to call the Y transaction & populate some fields dynamically in Y transaction's screen.
Could you pls suggest me how to do this?
‎2007 Mar 16 7:20 AM
Hi Neha,
This is possible with the Field-Symbols,
FIELD-SYMBOLS <FS> type any.
assign (Field1) to <FS>. " here the Field1 should have the value F1 or F2
" F3 or F4. the the <FS> wil contain that value and pass
" this to Y transaction codeRegards
Sudheer