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

editable field

Former Member
0 Likes
1,623

Hi all,

How to make fields <b>editable</b> in an <b>classical report</b>( not ALV ).

With Thanks

Chinmay.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
803
write itab-vbeln input on.

using INPUT addition you can make it editable.

Regards

vijay

6 REPLIES 6
Read only

Former Member
0 Likes
803

write:/ v_field input.

Message was edited by:

Manoharsairam Kavuri

Read only

Former Member
0 Likes
804
write itab-vbeln input on.

using INPUT addition you can make it editable.

Regards

vijay

Read only

Former Member
0 Likes
803

Try this

REPORT YABAPOBJ1 NO STANDARD PAGE HEADING.

write:/ 'test' input.

Read only

amit_khare
Active Contributor
0 Likes
803

As an alternative in classical report, you have to generate interactive events.

On double click on the field call a POPUP with a textbox and accept value in it.

On closing which this value should get added to the table and databse and update the output by recalling display subroutines.

Regards,

Amit

Read only

Former Member
0 Likes
803

Hi,

you mean in the outputted list ???? that´s not possible, because you´re probably working with instruction WRITE and you cannot make it editable. If you don´t want to work with an ALV grid, then work with the table control in SAP Dialog Programming (in Screen Painter). In this case, you can make fields editable.

Read only

Former Member
0 Likes
803

hi,

FORMAT .. INPUT [ON]

Effect

Determines whether the user can enter data. You can change the contents of list lines output with the format ... INPUT on the screen. You can also print out the change or process it further by using READ LINE in interactive events.

REGARDS,

DEEPTHI