Posts

Showing posts with the label bank

Update city and branch from excel file to SAP system by using BAPI in ABAP.

Image
  FM-   BAPI_BANK_CHANGE Step 1: Goto SE11 .Give table as BNKA click on display. Step 2: Goto contents Give  BANKL  as  AJAY2006  TO  AJAY2010 .Execute. Step 3 : Goto SE38 give program name click on create. Write code. TYPES :  BEGIN  OF  ty_bank ,          lv_bc      TYPE  bapi1011_key - bank_ctry ,          lv_bank    TYPE  bapi1011_address - bank_name ,          lv_region  TYPE  bapi1011_address - region ,          lv_street  TYPE  bapi1011_address - street ,          lv_city    TYPE  bapi1011_address - city ,          lv_branch  TYPE  bapi1011_address - bank_branch ,...

Update the bank city & street FI02 in ABAP.

Image
  Step 1 : Goto FI03 give country name and bank key . Press Enter. Step 2 : Goto FI02 give bank country and bank key. Press Enter. Step 3 : Change the bank city and street . In This scenario  addanki city is changed to Inkollu and main road street is changed to cinema hall road . Step 4 :  Click on save.             Step 5:   Goto FI03 give country name and bank key . Press Enter.

Upload the Bank details from excel file to SAP system by using BAPI in ABAP.

Image
FM -  BAPI_BANK_CREATE Excel file Report program. REPORT  zab_bapi_bank_create_excel . TYPES :  BEGIN  OF  ty_bank ,          lv_bc      TYPE  bapi1011_key - bank_ctry ,          lv_bank    TYPE  bapi1011_address - bank_name ,          lv_region  TYPE  bapi1011_address - region ,          lv_street  TYPE  bapi1011_address - street ,          lv_city    TYPE  bapi1011_address - city ,          lv_branch  TYPE  bapi1011_address - bank_branch ,          lv_key     TYPE  bapi1011_key - bank_key ,       ...