Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Search help

Former Member
0 Likes
500

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..

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
458

Hi ,

Check the Transaction type of the Transaction of infortype .

some field like trtyp.

4 REPLIES 4
Read only

Former Member
0 Likes
458

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.

Read only

Former Member
0 Likes
459

Hi ,

Check the Transaction type of the Transaction of infortype .

some field like trtyp.

Read only

Former Member
0 Likes
458

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.

Read only

Former Member
0 Likes
458

ya i solved it using PSPAR-ACTIO field..

thanks ..