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

You are given functional specs for a BDC program

Former Member
0 Likes
547

You are given functional specs for a BDC program

and you need to decide whether to write a method

call transaction or a session. How u will decide?

plz explain clearly

You are given functional specs for a BDC program

and you need to decide whether to write a method

call transaction or a session. How u will decide?

plz explain clearly

3 REPLIES 3
Read only

andreas_mann3
Active Contributor
0 Likes
497

Hi,

important is the error handling:

1) bdc - user must analyse and clarify errors

2) call transaction - you must implement an error-processs in your prg.

A.

Read only

0 Likes
497

yes

Read only

Former Member
0 Likes
497

depends of type of erro handling required and amount of data to be transfered, we can decide which is best method.

call transaction - no errorhandling, we have to write a code to show errors

sessin method - errohandling is there, locking mechanism is there.

for large amount of data , we should go for session method. for faster data transfer we can go for call transaction