cancel
Showing results for 
Search instead for 
Did you mean: 

Input Fields are Not Allowing Input

Former Member
0 Kudos

Hello, I am using an adaptive RFC model for my web dynpro application. For some reason, when I bind my input field element to one of the context model fields, it will not show up on the screen as open for input. But, if I add a simple value node to the context that did not come from the RFC model, and bind it to an input field, it will show the input field as open. Can anyone shed any light as to why this might be happening?

Accepted Solutions (1)

Accepted Solutions (1)

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

Yes, have you done something like this in the wdDoInit method of the custom controller?

public void wdDoInit()

{

//@@Begin wdDoInit()

Bapi_GL_Acc_Getlist_Input input = new Bapi_Gl_Acc_GetList_Input();

wdContext.nodeBapi_Gl_Acc_Getlist_Input().bind(input);

//@@end

}

Welcome to SDN!

Regards,

Rich Heilman

Former Member
0 Kudos

Perfect....Thanks so much for your help! I am new to Web Dynpro, so I am sure I will be frequenting the SDN from now on.

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

I am as well, I've only been working with it for about 8 months. The only way I knew what the problem was is that I had the same thing when trying to do tutorials. It took me a while to figure it out.

Glad to help.

Regards,

Rich Heilman

Answers (0)