2007 Jun 02 3:01 PM
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.
2007 Jun 02 4:17 PM
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