cancel
Showing results for 
Search instead for 
Did you mean: 

A field has been added to CRMST_LEADH_BTIL using append structure and field has been added to configuration to show in UI. Now in EH_ONSUBMITONENTER I'm not able to get that value for further processing.

Former Member
0 Kudos

Hi Experts,

A field has been added to CRMST_LEADH_BTIL using append structure and field has been added to configuration to show in UI.

If any user put a value in that field and press "Enter" the value is not getting stored to "EH_ONSUBMITONENTER".

How can I get that field value to EH_ONSUBMITONENTER I'm not able to get that value for further processing.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Swarup,

You will have to write code in getter method to get some value and show it on web UI. You will not be able to write anything in any database field using this approach.

If you want this field to be mapped to some database field then I recommend either of the following two approaches:

1. If it is a custom field then you should be using AET to add the field which would take care of everything.

2. If it is a standard field then you should be adding a model attribute to a custom context node

kapilpatil
Active Contributor
0 Kudos

Please implement getter setter methods for the new attribute.

Thanks,

Kapil