cancel
Showing results for 
Search instead for 
Did you mean: 

Select Query in the receiver JDBC

Former Member
0 Kudos

Hello all,

Is it Possible to use the select query in eceiver JDBC.

Thanks,

Srinivasa

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

After selecting what you will do with the message?

If you ask incomplete question or if you dont give much information you will not get exact reply as your expecting. So please give as much information as you can.

Cheers,

---Satish

Former Member
0 Kudos

Hi Satish,

What I meant was ,a part from providing the Message structure at the receiver side which builts internally a Select statement,is there any other way to write a Select Query some where .

Thanks,

Srinivasa

Former Member
0 Kudos

Hi Srinivas,

You can either create the structure or can directly write the SQL_QUERY or| SQL_DML statement where you will specifty the action SQL_QUERY | SQL_DML .

So you can use either XML SQL Format or Native SQL Format. Please see this help srini:

http://help.sap.com/saphelp_nw04/helpdata/en/2e/96fd3f2d14e869e10000000a155106/content.htm

Regards,

---Satish

Answers (2)

Answers (2)

former_member200962
Active Contributor
0 Kudos

SELECT is very much possible in receiver JDBC scenario....we normaly use the SELECT when there is a SYNC communication involved in the JDBC scenario....so that you make a request to the DB using the SELECT statement and in return the DB responds with the columns you selected.

Regards,

Abhishek.

Former Member
0 Kudos

HI Srinivasa,

No, Select query is not pos for receiver JDBC....its only for sender JDBC....you can use insert,update or delete for receiver JDBC....

Regds,

Pinangshuk.

former_member181985
Active Contributor
0 Kudos

>No, Select query is not pos for receiver JDBC....its only for sender JDBC....you can use insert,update or delete for receiver JDBC....

Pinangshuk, are you sure?