‎2006 Oct 02 11:34 AM
I am given Functional specs for which i need to use BDC,but how shld i decide wether it shld be session method or camm transaction ?
‎2006 Oct 02 11:36 AM
Hi,
You can decide based on the data volume that your BDC is processing. If data volume is high go for session else call transaction will do.The call transaction updates will be instantaneous where as session needs to be processed explictly after creation.
you can do it both manually and by using program RSBDCSUB.
Hope this helps.
‎2006 Oct 02 11:36 AM
If the volume of data is high go for SESSION otherwisw use call transaction.
‎2006 Oct 02 11:36 AM
Hi,
You can decide based on the data volume that your BDC is processing. If data volume is high go for session else call transaction will do.The call transaction updates will be instantaneous where as session needs to be processed explictly after creation.
you can do it both manually and by using program RSBDCSUB.
Hope this helps.
‎2006 Oct 02 11:37 AM
‎2006 Oct 02 11:38 AM
Ask the functional consultant regading the volume of data, if it's high go for Session method, else go for Call transaction method.
Regards,
Prakash.
‎2006 Oct 02 11:47 AM
Hi
A good practice is to use call transaction but use BDC session for when there is an error in the record.
i.e call transaction..
if sy-subrc ne 0.
perform form_bdc_session.
endif.
This method is quicker, you can capture errors and deal with them in a BDC session later.
Hope this helps.
Volume of data also needs to be checked.
sz
‎2006 Oct 02 11:48 AM
hi Geetha,
First use the CALL TRANSACTION. If it errors out then use the BDC session method so that user can execute it online and rectify the errors.
--Santosh