Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BDC

Former Member
0 Likes
359

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?

1 REPLY 1
Read only

Former Member
0 Likes
296

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 code

Regards

Sudheer