Posts

Showing posts from December, 2019

BAPI for material storage location Add

 We can add material storage location plant wise using third party app or web. BAPI names : BAPI_MATERIAL_MAINTAINDATA_RT Import parameters: HEADDATA: Material Tables: STORAGELOCATIONDATA: Material: Plant: STGE_LOC:   STORAGELOCATIONDATAX: Material: Plant: STGE_LOC:   use below code after completing steps. CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.        

Modularization in SAP ABAP

In SAP ABAP environment, modularization involves the organization of programs into modular units, also known as logical blocks. It reduce redundancy and increases program readability even as you are creating it and subsequently during the maintenance cycle.Modularization also enables reusability of the same code again.ABAP has made it necessary for developers to modularize, organizing the programs relatively more than in the OOPS based language that have relatively more built in modular feature. Modularization techniques: Subroutines function module Include Field-symbol. Subroutine: It is a mini program and can be called within program and from outside of the program. Using Subroutines we can perform calculations, write statement, call function Module etc. Types of Subroutine : Internal subroutine.  External subroutine. Passing parameters in Subroutine: Pass by Value Pass by reference Pass by Value: DATA X TYPE C VALUE 'APPLE'. PERFORM SUB USING X. ...