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 |
how can you display data say "your name"in smart forms without print program or driver program??
what is meant by enhancement category?
Does the call transaction method allow multiple transactions to be processed by sap? : abap bdc
WHAT IS THE DIFFERENCE BETWEEN FILE PORT AND TRFC PORT ?
what are parameters of DDCinsert fun module ?
Hi everyone! i m pursuing ABAP so still in learning phase i want to know abt. IDOCs and ALE like what's the role of messege type in IDOCs and how things goes on in background i know i sound absurd but as i m not clear abt. the same Ur advice wud be highly appreciated looking forward for a quick reply with some scenarios if URl for some gud sites that wud b helpful in the initial stage of learning wud b provided it's wud b g8 thanks in advance
HOW TO CREATE INDEXES IN TABLES?
What is the difference between select single and select upto 1 rows?
What is the use of the raising exception?
what is the status code when IDOC is created?
What is the difference of update types in call transaction method ? : abap bdc
What is an internal table?