Quantcast
Channel: SCN: Message List - How to read the input FORMAT of a Checkbox in list.
Browsing latest articles
Browse All 8 View Live

How to read the input FORMAT of a Checkbox in list.

hi,suppose i have,WRITE CHK1 AS CHECKBOX INPUT OFF.Now i have, grayed check box, Problem. how to read from program, whether the checkbox is input off or on.  pls reply

View Article



Re: How to read the input FORMAT of a Checkbox in list.

Hi, Check this example of how to use the Checkbox in a list.. REPORT ztest NO STANDARD PAGE HEADING. DATA: BEGIN OF itab OCCURS 0,            check,            value(20),          END OF itab.  SET...

View Article

Re: How to read the input FORMAT of a Checkbox in list.

When you put it off:WRITE CHK1 AS CHECKBOX INPUT OFF.WC_OFF_ON = 'OF'. When you put it on:WRITE CHK1 AS CHECKBOX INPUT ON.WC_OFF_ON = 'ON'. Later just check value on WC_OFF_ON.Regards.

View Article

Re: How to read the input FORMAT of a Checkbox in list.

Hi I don't know if there's a statament to get the chararcteristics of a line in a list, but you should know how a field was written, because you wrote it, didn't you? U can use READ LINE statament to...

View Article

Re: How to read the input FORMAT of a Checkbox in list.

I don't think you can do this directly. But when you write the checkbox, you can hide a variable whose value depends on whether input is on or off. Then when you read in the report, you can check that...

View Article


Re: How to read the input FORMAT of a Checkbox in list.

thank u all,But i want to check it at runtime.ie i have a 5 lines with each line starting with check box.in htis, based on some condition, i have INPUT OFFed some check boxes using MODIFY LINE. But now...

View Article

Re: How to read the input FORMAT of a Checkbox in list.

My suggestion does what you want. Try: REPORT ztest LINE-SIZE 80 LINE-COUNT 64 MESSAGE-ID 00. DATA: on_off(3),       chk1 VALUE 'X',      test. WRITE: /001 chk1 AS CHECKBOX INPUT OFF. on_off = 'OFF'....

View Article

Re: How to read the input FORMAT of a Checkbox in list.

Hi U can also store the characteristics of the line in an internal table and so read this table to know if the checkbox is input or output only field: PARAMETERS: P_TIME TYPE I. DATA: BEGIN OF ITAB...

View Article

Browsing latest articles
Browse All 8 View Live




Latest Images