Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Data Transfer SAP to Oracle

Former Member
0 Likes
537

Dear All ,

I having some queries regarding data transfer.

How to transfer data from SAP To Oracle , Please explain me brief.

Regards ,

GJ

Dear All ,

I having some queries regarding data transfer.

How to transfer data from SAP To Oracle , Please explain me brief.

Regards ,

GJ

2 REPLIES 2
Read only

Former Member
0 Likes
455

hi

Check this link ,May be useful to you

(Transfer Of Data from Sap to Oracle with the help of Enterprise Services)

Thanks

Read only

Former Member
0 Likes
455

same structure we create the sap table and oracle table.

and create the Database Connection in sap and same name create the Oracle .

if that connection available or not check the table 'DBCON' i have some example code give bellow

REPORT zmpq_sap_to_oracle.

TABLES: zmpq_cc_all_job,dbcon.

DATA: BEGIN OF i_job OCCURS 0.

INCLUDE STRUCTURE zmpq_cc_all_job.

DATA: END OF i_job.

DATA sap_web LIKE dbcon-con_name VALUE 'WEBOS'.

BREAK-POINT.

START-OF-SELECTION.

SELECT * FROM zmpq_cc_all_job INTO TABLE i_job.

EXEC SQL.

SET CONNECTION :sap_web

ENDEXEC.

EXEC SQL.

CONNECT TO :sap_web

ENDEXEC.

IF sy-subrc <> 0.

MESSAGE 'NOT Connected..!!' TYPE 'S'.

LEAVE PROGRAM.

ENDIF.

EXEC SQL.

INSERT INTO noti_details (QMNUM) VALUES ('8888888')

ENDEXEC.

whether using the base on your example

by

imuthu