Application Development 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: 

bdc call transaction

Former Member
0 Kudos

Dear Abapers,

how to validation check in excel sheets.that means one excel sheet data in one particular field data in 10 digits.some times 9 digits record is updated.the upload timing the bdc will be error displayed.and first three letters started in *ABC* only.suppose start S bdc will be displayed in error message.

thanks&regards

raj.a

Edited by: soosai raj on Oct 6, 2008 3:14 PM

1 ACCEPTED SOLUTION

Former Member
0 Kudos

can you make requirement clear...not able to understand ?

3 REPLIES 3

Former Member
0 Kudos

can you make requirement clear...not able to understand ?

0 Kudos

Dear experts,

i am uploading the data in excel to sap. using bdc.using call transaction method.my requirements excel sheet one particular field record in 10 digits is must .suppose the excel sheet particular field will be 12 digits(manual problem).that record uploading timing is one error message displayed.

thanks&regards

raj.a

0 Kudos

You can validate the length of string read from excel using

if strlen( l_excelfield ) GT 10.
*  do validation error handling
endif.