cancel
Showing results for 
Search instead for 
Did you mean: 

reg: personalinformation workset of ess

Former Member
0 Kudos

hi all

i am working with personal information work set of ess role .Here my requirement is when i select bank information subfolder and open it we will get a page with payee and bank name but here along with these two fields i want bank account number field to be displayed here in this first page.

According to the standard application that field is available on the second page i want to it to be available on the first page as said above.

can you please share your experience how to proceed further .

Is there any option to make it available in existing BAPI.Can you please let me know what is the BAPI name for bank information and how to work with it.

Thanks in advance

Deepika

Edited by: deepika_indian on Dec 28, 2010 9:30 AM

Edited by: deepika_indian on Dec 28, 2010 12:14 PM

Accepted Solutions (1)

Accepted Solutions (1)

former_member218672
Active Contributor
0 Kudos

Hi Deepika,

As already told, you need NWDI for any customization in ESS. Also, check this wiki for your help - /people/vinoth.murugaiyan/blog/2007/08/24/essmss-customization-150-make-it-simple

Regards,

Sen

Answers (1)

Answers (1)

pramod_gopisetty1
Active Contributor
0 Kudos

Hi,

Here are the steps to have Account Number to show in Bizcard View.

1. In NWDS create Project for the component - ess/us/bank (just for example)

2. In Web Dynpro Perspective - expand Web Dynpro Components - expand VcPerBankUSOverview

3. In Message Pool - Add the field as below :

Message Key Message Type Message Text

BizcardField3 text Account Number

4. Now open the View - BizCardsView - wdDoModifyView add the below code:

String bizcardField3 = wdThis.wdGetAPI().getComponent().getTextAccessor().getText("BizcardField3");

fieldInfo = new BizcardFieldInfo[] { new BizcardFieldInfo(bizcardField1, "Emftx"), new BizcardFieldInfo(bizcardField2, "Banka"), new BizcardFieldInfo(bizcardField3, "Bankn")};

5. Save the changes and Rebuild the project and check in the activity.

This will get the details you are looking for on the BizCard View.

Hope this helps.

Cheers-

Pramod

Former Member
0 Kudos

Hi Pramod

i am not having here NW DI environment .Is it possible to develop that in locally in nwds, if i tried to develop in NWDS also how this will be effect the Standard application in Portal.

can you please clarify this whether the approach what i am following is correct or not.

Thanks & Regards

Deepika

Edited by: deepika_indian on Dec 29, 2010 7:34 AM

Edited by: deepika_indian on Dec 29, 2010 8:29 AM

Edited by: deepika_indian on Dec 29, 2010 11:14 AM

pramod_gopisetty1
Active Contributor
0 Kudos

Hi,

I doubt you can modify ESS Components in NWDS without the use of NWDI.

Check the note 872892 JDI Cookbook.

It might give you some insight on how to do.

Cheers-

Pramod