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

Problem in Dowloading the data in Spreadsheet - ALV Report

Former Member
0 Likes
365

Hi All,

My ALVreport is related to Email Sending.

When i download the output datas in spreadsheet in ALV LIST Display it is showing the Delivery no(1st field total 8 characters) correctly.

When i download the output data in spreadsheet in ALV GRID Display, the Delivery no is showing only first 7 Characters , 8th Character is missing..

fieldcatalog-fieldname = 'VBELN'.

fieldcatalog-seltext_m = 'Delivery'.

fieldcatalog-col_pos = 0.

fieldcatalog-outputlen = 10 .

APPEND fieldcatalog TO fieldcatalog.

CLEAR fieldcatalog.

Pls reply your suggestions to this issue...

Thanks & Regards,

Ramya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
346

Hi,

Please change COLPOS to 1 from 0.

fieldcatalog-fieldname = 'VBELN'.
fieldcatalog-seltext_m = 'Delivery'.
fieldcatalog-col_pos = 1.
fieldcatalog-outputlen = 10 .
APPEND fieldcatalog TO fieldcatalog.
CLEAR fieldcatalog.

Please place the cursor on the field value & check whther the complete number is available.

It could be possible that the entire no. is downloaded but the width of column is less & hence only 7 characters are displayed.

Best regards,

Prashant

Hi,

Please change COLPOS to 1 from 0.

fieldcatalog-fieldname = 'VBELN'.
fieldcatalog-seltext_m = 'Delivery'.
fieldcatalog-col_pos = 1.
fieldcatalog-outputlen = 10 .
APPEND fieldcatalog TO fieldcatalog.
CLEAR fieldcatalog.

Please place the cursor on the field value & check whther the complete number is available.

It could be possible that the entire no. is downloaded but the width of column is less & hence only 7 characters are displayed.

Best regards,

Prashant

2 REPLIES 2
Read only

Former Member
0 Likes
347

Hi,

Please change COLPOS to 1 from 0.

fieldcatalog-fieldname = 'VBELN'.
fieldcatalog-seltext_m = 'Delivery'.
fieldcatalog-col_pos = 1.
fieldcatalog-outputlen = 10 .
APPEND fieldcatalog TO fieldcatalog.
CLEAR fieldcatalog.

Please place the cursor on the field value & check whther the complete number is available.

It could be possible that the entire no. is downloaded but the width of column is less & hence only 7 characters are displayed.

Best regards,

Prashant

Read only

0 Likes
346

Hi Prashant,

This Question has been solved on Friday itself.

Anyway Thanks for your reply.

Thanks & Regards,

Ramya.