‎2007 Mar 05 6:35 AM
Hi Guys,
I can achieve to capture user input from the classical report by using CHECKBOX, that's with command
WRITE:/ xxxx AS CHECKBOX.
But im wondering is there a way to keep a field available for input, for eg. Plant?
Please comment.
‎2007 Mar 05 6:44 AM
Hi fschu,
1. simple
2. we have to use WRITE WERKS INPUT ON.
3. just copy paste.
4. Important is that the field should not be initial.
It may contain zeroes atleast.
report abc.
data : WERKS like t001w-werks.
<b>werks = '0000'.</b>
<b>write 😕 werks input on.</b>
regards,
amit m.
‎2007 Mar 05 6:41 AM
Hi ,,
Use of the check box is user manual. based on that check you can make coding.
its depends upon you, for which purpose you want check box.
regards
shardul shah
‎2007 Mar 05 6:42 AM
‎2007 Mar 05 6:42 AM
‎2007 Mar 05 6:44 AM
Hi fschu,
1. simple
2. we have to use WRITE WERKS INPUT ON.
3. just copy paste.
4. Important is that the field should not be initial.
It may contain zeroes atleast.
report abc.
data : WERKS like t001w-werks.
<b>werks = '0000'.</b>
<b>write 😕 werks input on.</b>
regards,
amit m.
‎2007 Mar 05 6:45 AM
Yes u can use following statement.
WRITE 'You can overwrite the following line:'.
FORMAT INPUT ON INTENSIFIED OFF.
ULINE.
FORMAT INPUT OFF INTENSIFIED ON.
DARSHAN PATEL.