‎2009 May 02 1:43 PM
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
‎2009 May 02 1:48 PM
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
‎2009 May 02 1:48 PM
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
‎2009 May 02 3:08 PM
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
‎2009 May 02 5:09 PM
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
‎2009 May 02 6:19 PM
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
‎2009 May 02 7:38 PM
‎2009 May 05 1:40 PM