I had implemented autosuggest on an input text field and it was all working so I moved it into our template to make it available application wide. The component stopped working (bind problem first then it would not return the value I needed into the text box). Here are the fixes. The component is quick go button functionality with a suggest lookup to any menu link. Bind problems solution: I needed to lookup the template binding using the current bind did not have my VO: BindingContext bctx = BindingContext.getCurrent(); DCBindingContainer bindings = bctx.findBindingContainer( "package_formTemplatePageDef"); Not returning the value solution: I had a uppercase conveter on my input text field - this was messing with my return value on the autosuggest. I removed it and it worked like magic. The working code (note the query is limited to 5 rows in the VO with a bind variable linked to rownum): J...
The Incident Archive: A blog to store my knowledge on the errors that I fix on a daily basis