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

Classical report

Former Member
0 Likes
660

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
637

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.

5 REPLIES 5
Read only

Former Member
0 Likes
637

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

Read only

Former Member
0 Likes
637

Hi,

You can write:/ field INPUT ON .

Regards,

Anji

Read only

Former Member
0 Likes
637

<b>number = 'Test'.

write:/ number INPUT ON.</b>

Read only

Former Member
0 Likes
638

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.

Read only

Former Member
0 Likes
637

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.