‎2008 Aug 28 11:08 AM
hi all,
i attached the search help in the infotype enhancement...
i call the function module( F4IF_INT_TABLE_VALUE_REQUEST ) in Process on value Request and i use DYNP_VALUES_UPDATE to update the text field corresponding to the search help value both are working fine..
but when i open the infotype in display mode.. when i select any value in the search help..... the corresponding value get update in text field..and when i press enter the search field also get updated..
how to avoid it in display mode..
pls help..
‎2008 Aug 28 11:46 AM
Hi ,
Check the Transaction type of the Transaction of infortype .
some field like trtyp.
‎2008 Aug 28 11:15 AM
Don't update the screen fields when you are in Display mode. I hope you might be using some indicator to Check Display and Change option. If not you need to handle the Display and change option and accordingly you need to code.
‎2008 Aug 28 11:46 AM
Hi ,
Check the Transaction type of the Transaction of infortype .
some field like trtyp.
‎2008 Aug 28 11:50 AM
Hi
Try this..
In PBO of the flow logig...
If sy-ucomm eq 'DIS'. " Func code for display mode in PA30
Loop at screen.
if screen-group1 = 'TST'. " Screen group of ur text field
screen-input = 0.
endif.
modify screen.
endif.
‎2008 Sep 03 10:21 AM