2009 Feb 16 9:19 AM
Hi Experts,
I have a requirement whereas if we change the table/structure ( by adding new fields or deleting) in se11 the changes should automatically trigger in the screen which is using those tables/structure.
Is there any programming/logic involved , any suggestions appreciated.
Thanks in Advance ,
Kumar.
Hi Experts,
I have a requirement whereas if we change the table/structure ( by adding new fields or deleting) in se11 the changes should automatically trigger in the screen which is using those tables/structure.
Is there any programming/logic involved , any suggestions appreciated.
Thanks in Advance ,
Kumar.
2009 Feb 16 9:23 AM
you have to regenate the table mentainance generator again ..ie delete the existing table mainatainane and create again
2009 Feb 16 9:32 AM
HI ,
But how will the changes be updated in the screen without any programming logic .
I would make my requirment more clear.
i have a module pool program where i am using a table with few fileds .
in the layout editior i have designed the table with those fields .
Now in future if i add new fields to the same table .
Is there any possibility to trigger the changes in table, in the screen also.
Thanks.
Kumar
2009 Feb 16 9:27 AM
Hi,
Check with the following code.
SELECTION-SCREEN BEGIN OF SCREEN 300 AS SUBSCREEN.
PARAMETERS : p_bukrs TYPE ekko-bukrs OBLIGATORY DEFAULT '1000'.
SELECT-OPTIONS : s_ebeln FOR ekko-ebeln ,
s_ebelp FOR ekpo-ebelp .
SELECTION-SCREEN END OF SCREEN 300 .
START-OF-SELECTION .
CALL SCREEN 100 .
MODULE status_0100 OUTPUT.
SET PF-STATUS 'ZPF01' .
SET TITLEBAR 'ZTITLE01' .
ENDMODULE. " status_0100 OUTPUT
MODULE user_command_0100 INPUT.
IF sy-ucomm = 'BACK' OR sy-ucomm = 'EXIT' .
LEAVE TO SCREEN 0 .
ENDIF.
ENDMODULE. " user_command_0100 INPUT
Thanks,
Neelima.
2009 Feb 16 9:46 AM
HI ,
But how will the changes be updated in the screen without any programming logic .
I would make my requirment more clear.
i have a module pool program where i am using a table with few fileds .
in the layout editior i have designed the table with those fields .
Now in future if i add new fields to the same table .
Is there any possibility to trigger the changes in table, in the screen also.
Thanks.
Kumar
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |