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

DATA TRANSFER TO FORM

Former Member
0 Likes
487

hi friends i have 1 variable having some value in this ex count. how should i have to do to replace the count with its value while sending to form.

ex

perform 'BSET-FWSTE( V_TCOUNT )' WA_DATA-FWSTE,

thanks in advance....

3 REPLIES 3
Read only

deepak_dhamat
Active Contributor
0 Likes
458

hi,

which form be clear when you explain .

Regards

Deepak .

Read only

Former Member
0 Likes
458

PERFORM BDC_FIELD USING 'BSET-FWSTE( V_TCOUNT )' WA_DATA-FWSTE,

Read only

Former Member
0 Likes
458

try this-- I had done it for a similar requirement. Hope it helps..

concatenate all the variables you wish to pass in a string variable. Then use perform statement on this variable.

CONCATENATE 'RSTXT-TXPARGRAPH(' CTR_STRING ')' INTO CTR_STRING.
        CONCATENATE 'RSTXT-TXLINE(' CTR_STRING_LINE ')' INTO CTR_STRING_LINE.



        PERFORM BDC_FIELD       USING CTR_STRING                   
                                '*'.
        PERFORM BDC_FIELD       USING CTR_STRING_LINE

Regards,

Sumit Nene.

Edited by: Sumit Nene on Jul 17, 2009 7:58 AM

Edited by: Sumit Nene on Jul 17, 2009 7:58 AM

Edited by: Sumit Nene on Jul 17, 2009 8:01 AM