Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member185881
Active Participant

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 Statement1 in 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

3 Comments