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: 

Regarding Output

Former Member
0 Kudos

Hi folks,

I need to enter the data in Output of report.

Means in report output can we enter the data....if it is ...how.

Thanks in advance.

Subbbu

1 ACCEPTED SOLUTION

Former Member
0 Kudos

if you want to allow user to change the value of the result, you can do so, by using

WRITE : v_char INPUT on.

and you also can do that using ALV's.

4 REPLIES 4

Former Member
0 Kudos

if you want to allow user to change the value of the result, you can do so, by using

WRITE : v_char INPUT on.

and you also can do that using ALV's.

anversha_s
Active Contributor
0 Kudos

hi,

i think its better to use EDITABLE ALV.

chk this.

http://www.sapdevelopment.co.uk/reporting/reportinghome.htm

Regards

Anver

Former Member
0 Kudos

No I want in classical report only.

former_member188827
Active Contributor
0 Kudos

hi

PARAMETERS v_char(10) type c.

WRITE / v_char input on.

it works....