cancel
Showing results for 
Search instead for 
Did you mean: 

Updating Custom Field value to backend - MyOpportunity Fiori App

Former Member
0 Kudos

Hi Team,

I am working on MyOpportunity App Customization. I have some custom fields on Edit Page.

I want to update it to the backend.

I am referring this blog.

http://scn.sap.com/community/fiori/blog/2015/06/24/an-example-of-end-to-end-extension-on-crm-fiori-a...

In S4 Controller, i have added this code

extHookAddCustomHeaderFields: function(e)

{

// Place your hook implementation code here

   var oExtensionControl = this.byId("ZEditMachinePrice_Input");

   var extensionValue = oExtensionControl.getValue();

   e.ZMachprice = extensionValue;

},

But on Click of Edit Save the custom field value is not going to backend.

Please help. Is there any other change that needs to be done

Thanks,

Divya

Accepted Solutions (0)

Answers (2)

Answers (2)

karthikarjun
Active Contributor
0 Kudos

Hi Divya,

Could you please share Network tab screen shots and

How you are passing your values to service?

Thanks,

KArthik A

Former Member
0 Kudos

Issue resolved.

Did replace controller and added code inside.

Thanks,

Divya