cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi all,

I would like insert a Search Help on a field containing a UZEIT type, I try to set Input Help Mode "Automatic" in Dictionary search help appear "CLOCK" but it doesn't work, into the web dynpro It doesn't appear, then I try to set Input Help Mode "Dictionary Search Help" and fill relative field with elemenatary search help "SRM_F4_UZEIT", it appears but if I click on it I have a dump...

Are you able to help me???

Thanks

GN

0 Likes
View Entire Topic
thomas_jung
Developer Advocate
Developer Advocate
0 Likes

The automatic determination of Clock for the time value help is not implemented yet. Hopefully someday we will get that. I'm not familiar with the SRM_F4_UZEIT value help, but I would have to guess that it has some SAPGUI or screen calls within it (perhaps via a search help exit) that make it incompatible with Web Dynpro. Personally I just created my own time value help as a custom value help. Its really not that difficult. You create a component that implements the interface IWD_VALUE_HELP. This interface gives you the SET_VALUE_HELP_LISTENER method which is called by the Value Help framework. You can use the value_help_listener (IF_WD_VALUE_HELP_LISTENER) to query information about the triggering context attribute and to copy values back. Here is a screen shot of what my time value help looks like (I modeled it off of the SAPGUI time value help):

http://www.flickr.com/photos/tjung/2923859999/

Its not visually very exciting, but has some nice logic for switching between AM/PM and 24 hour clock input modes.