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 Explanations

Former Member
0 Likes
599

Hi,

Please explain me the following terms. What are they used for?

PERFORM open_group.

PERFORM bdc_dynpro USING 'SAPMP50A' '2000'.

PERFORM bdc_field USING 'BDC_CURSOR'

'T529T-MNTXT(03)'.

PERFORM bdc_transaction USING 'PA40'.

PERFORM close_group.

Best Regards

Renjan

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
560

Hello,

Check your email ID.

Regs,

Venkat

Hi,

Please explain me the following terms. What are they used for?

PERFORM open_group.

PERFORM bdc_dynpro USING 'SAPMP50A' '2000'.

PERFORM bdc_field USING 'BDC_CURSOR'

'T529T-MNTXT(03)'.

PERFORM bdc_transaction USING 'PA40'.

PERFORM close_group.

Best Regards

Renjan

3 REPLIES 3
Read only

Former Member
0 Likes
560

Hi

Whenever you write a BDC program there is always an Include which is there in your progarm <b>BDCRECX1</b>.This is an Include program,Go and check this Include program you will find all the form written for all these perform.

Read only

dani_mn
Active Contributor
0 Likes
560

HI,

<b>PERFORM open_group.  
"Creates and opens a batch input session by calling FM CALL FUNCTION 'BDC_OPEN_GROUP'"

PERFORM bdc_dynpro USING 'SAPMP50A' '2000'.
"Insert a entry for screen in BDC table BDCDATA"

PERFORM bdc_field USING 'BDC_CURSOR'
'T529T-MNTXT(03)'.
"Insert a entry for field in BDC table BDCDATA"

PERFORM bdc_transaction USING 'PA40'.
"Insert a entry for transaction code in BDC table BDCDATA"

PERFORM close_group.
"close bdc session"</b>

REgards,

Read only

Former Member
0 Likes
561

Hello,

Check your email ID.

Regs,

Venkat