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

errors in bdc and call transaction

Former Member
0 Likes
318

hi,

can anyone tell in brief about the different errors occured in both session and call transaction methods and how to handle them ?

thanks in advance,

srinu.

hi,

can anyone tell in brief about the different errors occured in both session and call transaction methods and how to handle them ?

thanks in advance,

srinu.

1 REPLY 1
Read only

Former Member
0 Likes
301

There are so many errors will come while using BDC Both session method and call transaction ..

1. Screen Resolution .. In your system screen size would be big i mean table controls shows 15 line items,when you see other system it shows only 10 line items.

when you upload the data you get problem..

Solution : you need to use structure ctu_params and see the below sample code

data: f_option type ctu_params,

f_option-updmode = 'S'.

f_option-defsize = 'X'.

f_option-dismode = 'N'.

call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.

2.Quantity and currency conversion ..

solution is neeed to convert from currency format to char format then upload..

3.Data not updating properly in call transaction ..

sometimes data is not updating properly in call transaction ,then you need to use Update mode is 'S'.

Reward Points if it is helpful

Thanks

Seshu