‎2006 Nov 28 2:52 PM
Hi all,
How to make fields <b>editable</b> in an <b>classical report</b>( not ALV ).
With Thanks
Chinmay.
‎2006 Nov 28 2:56 PM
write itab-vbeln input on.using INPUT addition you can make it editable.
Regards
vijay
‎2006 Nov 28 2:55 PM
write:/ v_field input.
Message was edited by:
Manoharsairam Kavuri
‎2006 Nov 28 2:56 PM
write itab-vbeln input on.using INPUT addition you can make it editable.
Regards
vijay
‎2006 Nov 28 2:56 PM
Try this
REPORT YABAPOBJ1 NO STANDARD PAGE HEADING.
write:/ 'test' input.
‎2006 Nov 28 2:57 PM
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
‎2006 Nov 28 2:57 PM
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.
‎2006 Nov 28 3:02 PM
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