cancel
Showing results for 
Search instead for 
Did you mean: 

Browse contents through AL11

Former Member
0 Kudos

Hello All -

I tried to browse the contents of my XML output through AL11. I cannot view the contents of the file completely. I can view only the first line that is generated truncated at some point.

But when i view the file through notepad, it has the contents.

I tried to view the file from AL11 through clipboard and other methods but could only view partial contents.

Any clues or ideas?

Thanks,

Tirumal

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Refer to this thread, they have discussed the same problem.

/community [original link is broken]?threadID=59263&messageID=623056

AL11 has limitations, it can not display more than 255 characters in a line.

Thanks,

Prateek

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

AL11 points to program RSWATCH0 which has a limitation of showing maximum 320 characters.

You can copy RSWATCH0 to ZRSWATCH0 and make following changes -

( Max allowed list width is 1023 . I am giving code changes for 1000 ).

PROGRAM rswatch0 MESSAGE-ID s1 NO STANDARD PAGE HEADING LINE-SIZE 320.

PROGRAM rswatch0 MESSAGE-ID s1 NO STANDARD PAGE HEADING LINE-SIZE 1000.

DATA: buffer(255) TYPE c,

DATA: buffer(1000) TYPE c,

WRITE buffer.

WRITE AT (1000) buffer.

You can assign a tcode ZAL11 to this program.

Cheers.

Former Member
0 Kudos

Hi Tirumal,

SAP has maximum character length that it can show. Thats the reason you are seeing the truncated version.

Regards

Vijaya

Former Member
0 Kudos

Awarded points to Prateek.

Thanks to Vijaya.

We can close this thread since the limitation being around 320 characters.

BTW FTP is blocked company wide at my client. So i have to request for a UNIX id.

Thanks,

Tirumal

Former Member
0 Kudos

Hi Tirumal,

You can use the tcode SXDA_TOOLS to download/upload file to/from application server.

Populate some values like this

Object type BUS2012

Task type Load Data

Program type DINP

Program RSTXLITF

and click on copy button..u'll get a pop with various options. You dont need to use FTP.

praveen