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

The error is that

Former Member
0 Likes
760

Excel file FILE://C://Documents and Settings\A_MAN\DESKTOP\BOOK1 cannot be processed...

Why I have encountered with this error?

What is the problem.

Note: Microsoft Office 2007 is installed.

Thanks in advance..

Deniz.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
732

The excel file and the internal table must have the same format or what?

For examle in the excel I have 3 fields and in internal table 4 columns.

Is this a problem or affects something?

Thanks.Deniz

Excel file FILE://C://Documents and Settings\A_MAN\DESKTOP\BOOK1 cannot be processed...

Why I have encountered with this error?

What is the problem.

Note: Microsoft Office 2007 is installed.

Thanks in advance..

Deniz.

5 REPLIES 5
Read only

Former Member
0 Likes
732

HI,

The File name which you have mentioned here is the Wrong file name, the format of the file should be start from <b>C://Documents and Settings/A_MAN/DESKTOP/BOOK1.xls</b>

Regards

Sudheer

Read only

Former Member
0 Likes
732

hi,

GIve it in this format C://Documents and Settings/A_MAN\DESKTOP/BOOK1.xls to avoid that error.

Regareds,

Santosh

Read only

Former Member
0 Likes
732

hi,

check whether the path given by u is correct or not.

for ex: C:/ ADMINISTRATOR/SURESH/...................... or use FM F4_open and declare a string variable in our program and a parameter [ which takes i/p from user] as

parameter: filenam(99) type c.

data: str type s.

str= filenam.

CALL FUNCTION 'F4_FILENAME'

EXPORTING

program_name = sy-repid

dynpro_number = syst-dynnr

field_name = str

IMPORTING

file_name = str.

if helpful reward some points.

with regards,

suresh.a

Read only

Former Member
0 Likes
733

The excel file and the internal table must have the same format or what?

For examle in the excel I have 3 fields and in internal table 4 columns.

Is this a problem or affects something?

Thanks.Deniz

Read only

0 Likes
732

hi,

If you are trying to upload the data from an excel sheet. Then the number of target fields should be greater than or equal to the number of source fields provided the unused field should be the last field in your target internal table.

Regards,

Santosh