2008 Jun 02 1:44 PM
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
2008 Jun 02 1:47 PM
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
2008 Jun 02 1:47 PM
hi,
u can specify line-size in ur program. The maximum line width is 1,023 characters.
regards,
madhu
2008 Jun 02 1:48 PM
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.
2008 Jun 02 1:49 PM
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.
2008 Jun 02 1:50 PM
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
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |