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

bdc call transaction

Former Member
0 Likes
562

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
Read only

Former Member
0 Likes
528

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

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

3 REPLIES 3
Read only

Former Member
0 Likes
529

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

Read only

0 Likes
528

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

Read only

0 Likes
528

You can validate the length of string read from excel using

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