Purpose:
There can be situation when you have to delete records (delete all records from table) and then Insert records, this is possible and easy and there are many Blogs and discussions on this.
Now if a situation comes and you have to delete only particular records with where clause and then Insert records in table, then is it possible? Can you write DELETE query in Message Mapping with where clause? Let’s see the solution below.
Following design needs to be done to make this happen.
Create JDBC Receiver Data Type Structure like below-
Explanation for Message Mapping:
Statement1 is for DELETE Query
Key1 --> LastName will be used for WHERE condition
The corresponding SQL statement for Statement1in the example above is as follows:
DELETE FROM dbTableName WHERE (LastName = ‘Kumar’)
Using above design, particulars rows in table dbTableName will be deleted where LastName is Kumar.
Note:
We cannot write DELETE query with where condition in action that is the reason Key1 is used.
Statement2 is for INSERT Query
References:
http://help.sap.com/saphelp_srm40/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.html
Regards
Dheeraj Kumar