cancel
Showing results for 
Search instead for 
Did you mean: 

Change the button(SAVE) name in Bank information in ESS

Former Member
0 Kudos

Dear experts,

I want to change the button name in Bank information in ESS like SAVE to SUBMIT.

This where i can do it in NWDS? In the message pool i'm able to change ROAD MAP text, but i'm unable to change the text button under labels in bank information in ESS.

We are into ERP 2004 so personalization editor won't come, additionally we have to do it through NWDS.

So in NWDS where can i change this button text?

Regards,

Devi.

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

Done. Thanks.

Former Member
0 Kudos

Hi Devi,

In ESS applications, the buttons are present in the DC ess/per. The Text of 'Save' button is mapped to context attribute Text.ReviewButton. The node 'Text' present in FcPersInfoInterface can be mapped to the view and the text of button can be changed as

wdContext.currentTextElement().setReviewButton("Submit");

The text 'Submit' should appear only while creating or editing records.

While deleting a record, the text of the button should be 'Delete'.

Regards,

Anushree

Former Member
0 Kudos

Edited by: arahagude on Nov 9, 2011 11:42 AM

Edited by: arahagude on Nov 9, 2011 11:43 AM

Former Member
0 Kudos

Hi Devi,

You need to rename the name of the button from the xlf file of the view.

Regards,

Vivek

Former Member
0 Kudos

At the end of the doModify method add the custom code

IWDButton but = (IWDButton)view.getElement("Submit");

but.setText("Submit");

Edited by: Brian Fernandes on Nov 3, 2011 9:31 PM