cancel
Showing results for 
Search instead for 
Did you mean: 

ESS: Add new Bank

former_member557553
Participant
0 Kudos

Hello community,

a customer wants to enable his employees to add missing/new banks.

So the scenario is:

1. Employee opens a WDA ESS (EhP5) scenario to change his bank details

2. He notice that his new bank is not customized in the system

3. He press a button 'Add new bank' and a popup opens with an WDA application

4. He provides the application with all neccessary data to create a new bank on SAP

Is there any FM available to create a bank? I am almost sure it is a bit more difficult.

Do you have any ideas, code snippets, ... how to find a solution?

Thanks and best regards, Christian

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member557553
Participant
0 Kudos

Hello community,

I've just found the solution.

There is a BAPI called: BAPI_BANK_CREATE.

That's what I needed.

Thank you and best regards, Christian

former_member199125
Active Contributor
0 Kudos

there were so many bapi to edit the bank details.

BAPI_BANKDETAIL_APPROVE Unlock bank details

BAPI_BANKDETAIL_CHANGE Change bank details

BAPI_BANKDETAIL_CREATE Create bank details

BAPI_BANKDETAIL_DELETE Delete bank details

BAPI_BANKDETAIL_DELIMIT Delimit bank details

BAPI_BANKDETAIL_GETDETAIL Read bank details

BAPI_BANKDETAIL_GETLIST Read instances

BAPIBANKDETAILSIMULATECREATION Simulation: Create Bank Details

BAPI_BANKDETAILCREATESUCCESSOR Create subsequent bank details record

BAPI_BANKDETAILGETDETAILEDLIST Read instances with data

Regards

Srinivas

former_member557553
Participant
0 Kudos

Hello Sanasrinivas,

thank you for your reply.

My question is more regarding, how can I create a new BANK (Bank Key, ...)

Thanks and BR, Christian

former_member199125
Active Contributor
0 Kudos

First analyze the below fm to create new bank .

BAPI_BANKDETAIL_CREATE

Find out what are the mandatory field values to be passed to above fm to create one bank record.

then create one webdynpro application with inputs fields which accept the above fields, once user entered the all the values,then in some button action call the above fm and pass the above values.

To create a method similar to above fm , u can use service call.

Regards

Srinivas