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

Direct Input :Error when oprning the error file on app. server

Former Member
0 Likes
1,276

Hi ,

I using the program RCCLBI03 an error file is being generated. When I try to open the error file generated it displays a message that " Unable to display this file

..."

I am opening the file from the app. server.

Thanks and reagrds,

Hi ,

I using the program RCCLBI03 an error file is being generated. When I try to open the error file generated it displays a message that " Unable to display this file

..."

I am opening the file from the app. server.

Thanks and reagrds,

7 REPLIES 7
Read only

Former Member
0 Likes
1,124

Hi avinash,

1. CASE-SENSITIVE

2. The file name (along with full path name)

are case-sensitive.

3. Make sure u enter the correct full path and name.

4. To verify,

use the tcode AL11,

to browse the application server directories and files.

regards,

amit m.

Read only

0 Likes
1,124

Hi Amit

The file is being created on the App. server.

But when i try opening the file from there it displays the message " Unable to open..."

Thanks and reagrds,

Avinash.

Read only

0 Likes
1,124

Avinash,

Possibliy first you need to get authorization for the server folder you need to access.

Cheers,

Thomas.

Read only

0 Likes
1,124

Hi again,

1. Thru tcode AL11

2. just check whether the file

has been really created

or not in the specified folder and path.

regards,

amit m.

Read only

0 Likes
1,124

The File is created , but when i try clicking on the file name it opens the file and displays unable to display the file contents..

Thanks,

Av.

Read only

0 Likes
1,124

Hi again,

1. just debug

and check whether the file name

in the variable inside the program,

is correct or not

2. we can check at this point of code.

start-of-selection.

if not data_app is initial.

  • application server

<b> open dataset ds_name for input in text mode

encoding default.</b>

if sy-subrc > 0.

message e105(lx) with ds_name.

endif.

regards,

amit m.

Read only

0 Likes
1,124

Hi Avinash,

Just checked the program.

1)If there are no error records(the application server file size is 0), then you will no be able to open.

2)If application server file has data, then it can be viewed.

Can check this by putting some data in debugging mode.

Regards,

AS