In Dialog Programming Table Control,how to make only one row
editable?
Answers were Sorted based on User's Feedback
Answer / rinzy deena mathews
DATA : ok_code TYPE sy-ucomm,
lines TYPE i.
DATA : t_sflight TYPE STANDARD TABLE OF sflight.
DATA : x_sflight TYPE sflight.
CONTROLS : tbl_sflight TYPE TABLEVIEW USING SCREEN 9000.
START-OF-SELECTION.
CALL SCREEN 9000.
*&--------------------------------------------------------*
*& Module STATUS_9000 OUTPUT
*&--------------------------------------------------------*
* text
*---------------------------------------------------------*
MODULE status_9000 OUTPUT.
* SET PF-STATUS 'xxxxxxxx'.
* SET TITLEBAR 'xxx'.
IF t_sflight IS INITIAL.
APPEND INITIAL LINE TO t_sflight.
MODIFY t_sflight FROM x_sflight INDEX 1.
DESCRIBE TABLE t_sflight LINES lines.
tbl_sflight-lines = lines.
ENDIF.
ENDMODULE. " STATUS_9000 OUTPUT
*&------------------------------------------------------*
*& Module USER_COMMAND_9000 INPUT
*&------------------------------------------------------*
* text
*-------------------------------------------------------*
MODULE user_command_9000 INPUT.
IF ok_code EQ 'INSERT' AND ok_code NE ' '.
v_code = 'INSERT'.
INSERT INITIAL LINE INTO t_sflight INDEX lines.
tbl_sflight-lines = tbl_sflight-lines + 1.
ENDIF.
CLEAR ok_code.
ENDMODULE. " USER_COMMAND_9000 INPUT
*&-----------------------------------------------------*
*& Module MODIFY INPUT
*&-----------------------------------------------------*
* text
*------------------------------------------------------*
MODULE modify INPUT.
MODIFY t_sflight FROM x_sflight INDEX tbl_sflight-
current_line.
DESCRIBE TABLE t_sflight LINES lines.
ENDMODULE. " MODIFY INPUT.
Is This Answer Correct ? | 5 Yes | 2 No |
Double click on the field which u want to edit a properties
window is displayed on the right side of the screen, in that
window look for Attributes portion -> goto Programs tab->
and select the input as input possible. and if u want the
field to be greyed out. select not possible.
Is This Answer Correct ? | 3 Yes | 14 No |
Can we add a field to the sap standard screen? If so, how?
What are the functional areas? User groups? And how does abap/4 query work in relation to these?
you've to run some program in back ground. how to display the last month info from 1st to 31st?
Does sap handle multiple currencies?
What is COMMIT concept in BAPI?
What are the functional modules used in sequence in bdc? : abap bdc
D/b view?
Hi All, I have a scenario in Script. I want to display the data both side in a page. How can get it?
Can you do enhancement in a table?
The max number of calling modes stacked at one time is?
How to select valid lines for secondary list?
For a package or transaction we will be having multiple no of user exits .Out of these exits how we will find out that the particular exit is the exit which we have to code