User has given the specification to display the Check boxes
on the list, how
will you handle this situation.?
Answer / bhushan
WRITE - Output as checkbox
Effect
Outputs the field <f> as a checkbox. The contents of the
first character of f is interpreted as the "status":
' ' = not selected
'X' = selected
The user can change this as required.
DATA: chkbox(1) TYPE C VALUE 'X'.
...
WRITE chkbox AS CHECKBOX. "checkbox selected
chkbox = SPACE.
WRITE chkbox AS CHECKBOX. "deselected
WRITE chkbox AS CHECKBOX INPUT OFF. "deselected, protected
Is This Answer Correct ? | 10 Yes | 0 No |
what is sap scriptview ?
Differentiate between static and dynamic step loops?
18) Difeerence between various BDC method.Which is the best one?
i want 2 join as a abap consultant what is most important
Processing data from data base?
What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?
Explain the difference between a dialog program and a report?
HOW DO YOU CONFIGURE ALE BETWEEN TWO DIFFERENT VERSIONS OF SAP ?
how do you send the BDCDATA table in a Call Transaction statement
What is repository info. Systems? : abap data dictionary
what is Work flow?
Internal table itab contains some records. If the code is like this : LOOP AT ITAB. APPEND ITAB. ENDLOOP. What ill be the result??