cancel
Showing results for 
Search instead for 
Did you mean: 

RFC FunctionModule at the backend has been changed

Former Member
0 Kudos

Hi Friends!

Pls can somebody quide me to do the following:

We have changed an RFC FunctionModule at the backend. We have passed him

a new Import Parameter.

Already done

reimported model

added input field to search view.

Restarted J2EE Server

Adding an additional Node into Custom Controller's Context (because of the new Importparameter)

with rightklick (Edit Modelbinding)

and bind with Model

Adding an additional Node into View's Context (because of the new Importparameter)

with rightklick (Edit Context Mapping )

and bind with Controller

And now...

The Input Field which has been created newly is always disabled

when the application runs.

Views property "enabled" has been set to true,

Visibel has been set to visible.

Value property has an attribute from the new Import parameter.

But this InputField is always disabled.

What can cause this circumstance ?

Do I have to restart the J2EE Server one more or whats wrong ?

I assume the new added Node didn't take effect or there is

any other synchronisation problem

Reagrds

sas

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

i also got the same problem .

i created separate context parameter and assigned the values from the model and bind to the input field

with regards

shanto aloor

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

I am sorry but it is still the same.

Problem not solved

bye

sas

Former Member
0 Kudos

If you have added a new Import Parameter ....then you need to set a value for it before executing the Model in the Component Controller....

Shikhil

Former Member
0 Kudos

Hi,

can you give me a sample of code?

Former Member
0 Kudos

You first have to create an object of the Input Model as:

in = new InputModelClass();

in.set<ImportParameter>(new <Structure Name>);

Structure Name is the Structure mapped to the Input Object.

Former Member
0 Kudos

hello,

in the custom controller or view