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 program.

Former Member
0 Likes
676

Please use a more informative subject in future

hi all,

i have one problem,i.e how can i findout which tables are update by bdc program . can i findout tables though the recoding. please give details.

thanks.

Edited by: Matt on May 2, 2009 8:37 PM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
651

hi ,

yes you can find out which table is getting updated by the BDC recording .

you can easily find the table name and field name

ex: perform bdc_field using 'LFA1-ANRED'

regards

chinnaiya P

6 REPLIES 6
Read only

Former Member
0 Likes
652

hi ,

yes you can find out which table is getting updated by the BDC recording .

you can easily find the table name and field name

ex: perform bdc_field using 'LFA1-ANRED'

regards

chinnaiya P

Read only

Former Member
0 Likes
651

Hi Dasaradha ,

In the bdc program you will get several statements like ---

PERFORM  bdc_field  using 'BDC_CURSOR'
                              'MAKT-MAKTX'.

In this statement you can see the table name and the field name.In the

abve example the table is MAKT and field name is MAKTX.

So if you search a bit you can get all the fields and the tables that are updated

by the bdc program.

From the recording also you can get it in the same way.

Regards

Pinaki

Read only

Former Member
0 Likes
651

Hi,

It is not necessarily the tables that are mentioned with the statement (Ex. PERFORM bdc_field using 'BDC_CURSOR' 'MAKT-MAKTX'.). they may be structures also.

Instead if you explain your problem why you want and for which transaction then we can surely help you.

cheers

Suvi

Read only

former_member585060
Active Contributor
0 Likes
651

Hi,

The best way is use SQL trace(Transaction:-ST05) for the Transaction which you want to get the Tables details.

Open ST05 in one session, click on Activate trace with filters

Give the Transaction for which u want trace.

In other session open the Transaction and insert one record.

When the deactivate and display trace watch out for table names given.

Regards

Bala Krishna

Read only

matt
Active Contributor
0 Likes
651

Please use a more informative subject in future

Read only

Former Member
0 Likes
651

ok