Posts

Showing posts with the label Select into corresponding fields in SAP ABAP

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'.        

Select into corresponding fields in SAP ABAP

Select into corresponding fields in SAP ABAP: Select into corresponding fields is used to get data from database table  into a user define internal table or work area without define list of field. Syntax: Select * from DatabaseTable into corresponding fields of table <internalTable> It has compare each of the database field,Sap doesn't advisable to use this.