Application Development 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: 

WRITE STATEMENT OPTIONS

Former Member
0 Kudos

Hi

my report output is displaying a string but that string too large.. i can able to see only some part of that only.. remaining i can't able to see because of screen restrictins..

how can i change this... i want to see all the data of that string...

thanks

Babu

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Babu,

Mention the line size at the report name as much you want up to 1024 i guess?

Reward if it helps,

Satish

5 REPLIES 5

former_member386202
Active Contributor
0 Kudos

Hi,

Try this.

REPORT z_daily_sales

NO STANDARD PAGE HEADING

LINE-SIZE 1023.

Regards,

Prashant

0 Kudos

ThankQ FOR UR QUICK RESPONSES

IS IT 1024 IS THE MAXIMUM LIMIT ..BECAUSE MY DATA IS VERY HUGE...IF I GAVE THE 1023 ALSO.. SOME OF DATA WAS MISSING.. FOR THAT WHAT CAN I DO...

THANKS

BABU

Former Member
0 Kudos

Hi in REPORT statement increase line size....

Ex:

REPORT zreport NO STANDARD PAGE HEADING

LINE-SIZE 400.

Former Member
0 Kudos

Hi Babu,

Mention the line size at the report name as much you want up to 1024 i guess?

Reward if it helps,

Satish

Former Member
0 Kudos

Hi,

Pls tell me ur output string length.

1. U can increase ur line-size according to ur requirement.

Ex. REPORT Y_test LINE-SIZE xxx LINE-COUNT 60 MESSAGE-ID YY.

If it is not fit in the output screen then u can split ur string text in several lines using

Func Module . Ex. STRING_SPLIT, SWA_STRING_SPLIT etc.

Don't reward if not helpful.

Regards

Srimanta