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 subroutines ?

Former Member
0 Likes
604

Hi team,

I have a simple doubt in BDC , after recording the transaction i am copying all the perform statements into a seperate

program , now my doubt is how to get or create a ' FORM' statement in the BDC for the corresponding perform

statement ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
456

Hi,

If u double click on subroutine it create a form <form name>

then u add u r code.

ex :

FORM bdc_dynpro USING program dynpro.

CLEAR t_bdcdata.

t_bdcdata-program = program.

t_bdcdata-dynpro = dynpro.

t_bdcdata-dynbegin = 'X'.

APPEND t_bdcdata.

ENDFORM.

Regards,

Narasimha

Hi team,

I have a simple doubt in BDC , after recording the transaction i am copying all the perform statements into a seperate

program , now my doubt is how to get or create a ' FORM' statement in the BDC for the corresponding perform

statement ?

1 REPLY 1
Read only

Former Member
0 Likes
457

Hi,

If u double click on subroutine it create a form <form name>

then u add u r code.

ex :

FORM bdc_dynpro USING program dynpro.

CLEAR t_bdcdata.

t_bdcdata-program = program.

t_bdcdata-dynpro = dynpro.

t_bdcdata-dynbegin = 'X'.

APPEND t_bdcdata.

ENDFORM.

Regards,

Narasimha