cancel
Showing results for 
Search instead for 
Did you mean: 

Data is not saving in backend?

Former Member
0 Kudos

Hi all,

My WD appl, shud insert data to backend(R/3), but its getting saved, its working finen in backend?

Help me plz

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Datta,

have you bind them correctly it shud be like this in wdDoInit()

wdThis.wd<customcontrollername>().execute<Methodname();

and also check whether you are calling the action or not?

plz reward points if ur requirement is met.

regards,

Ganesh

Former Member
0 Kudos

Hi Ganesh,

Thanks for quick reply, its working i have not called and also my binding is wrong. Its working now

Former Member
0 Kudos

Hi Ganesh,

In my appl, there is some modification, the order number has to be selected from drop down list, and the selected value shud be saved? how to do this?

Former Member
0 Kudos

Hi

get the value from the dropdown

String value=wdContext.current<node>Element().get<Param>();

and set the value to the BAPI input node

Kind Regards

Mukesh

Former Member
0 Kudos

HI,

Get the currentDropdownelement and assigned as input parameter

As

String val=wdContext.current<DropdownNode>Element.get<Attribute>();

Assign this as input parameter

Regards

Saravanan K

Former Member
0 Kudos

Hi Datta,

create parameters in View for the method you create in CustomController, and do the binding accordingly to the dropdown list, then in your Action method pass these params to the Method like:

wdThis.wdGet<Controller name>().execute<methodName>(wdContext.currentContextElement().get<parametername>());

Hope this works

Regards,

Ganesh

Former Member
0 Kudos

Hi Ganesh&saravanan,

Thanks for all your quick replies. Its working now.

Ganesh you really helped a lot

Answers (1)

Answers (1)

Former Member
0 Kudos

HI,

Can you explain your problem elaborately?

Reagrds

Saravanan K