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

pls help me.

Former Member
0 Likes
598

hi,

on selection screen i am entering the dae range i.e 05.01.2008 to 05.30.2008 in mm/dd/yyyy format.

i need to display the output horizantally. means

05.01.2008 05.02.2008 05.03.2008 5.04.2008 ...05.30.2008

but the outptut is coming upto 05.16.2008 remaing date are not coming nad scroller also not available.

is there any SAP limit ?

pls help how to solve this problem

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
576

hi,

u can specify line-size in ur program. The maximum line width is 1,023 characters.

regards,

madhu

hi,

on selection screen i am entering the dae range i.e 05.01.2008 to 05.30.2008 in mm/dd/yyyy format.

i need to display the output horizantally. means

05.01.2008 05.02.2008 05.03.2008 5.04.2008 ...05.30.2008

but the outptut is coming upto 05.16.2008 remaing date are not coming nad scroller also not available.

is there any SAP limit ?

pls help how to solve this problem

4 REPLIES 4
Read only

Former Member
0 Likes
577

hi,

u can specify line-size in ur program. The maximum line width is 1,023 characters.

regards,

madhu

Read only

Former Member
0 Likes
576

report abc line-size 1023.

you can increase the line size.

this is for classical report.

note 1023 is the max width you can use.

Read only

Former Member
0 Likes
576

Hi

you need to specify the length of the list.

In the first line, use as

REPORT ztest line-size 200.

Ayt max u can mention up to 1023.

Read only

prasanth_kasturi
Active Contributor
0 Likes
576

hi,

check this

REPORT zp_example NO STANDARD PAGE HEADING line-size 1000 .

SELECT-OPTIONS : s_date FOR sy-datum.

WHILE ( s_date-low LE s_date-high ).

WRITE : s_date-low.

ADD 1 TO s_date-low.

ENDWHILE.

regards

prasanth