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

RFC connection

Former Member
0 Likes
784

Hi

if i connect some vb application to SAP via RFC how to check in sap whether these details

7 REPLIES 7
Read only

Former Member
0 Likes
762

Hi,

Build a logic in RFC to update some ZTABLE(Temporary table) or simply RETURN/EXPORT some value from RFC.

If you recieve the export value in VB after RFC call, then its working fine.

Best regards,

Prashant

Read only

0 Likes
762

Hi

i want to know in SAP system whether the connection is established or not?

Read only

0 Likes
762

just click on test bitton

or check SM58

for any logs

regards

Nagesh.Paruchuri

Read only

0 Likes
762

I WANT TO KNOW IN SAP SYSTEM IS THERE ANY TRANSACTION

Read only

0 Likes
762

You can check the connection in SM59. When you open the RFC there is a button called Test Connection which will test the connection status.

Regards

Gopi

Read only

Former Member
0 Likes
762

hi

good

go through these links

http://download.microsoft.com/download/f/3/7/f371bbba-2341-41bf-822d-2c7dd4174756/UI_CreateWebServic...

-

Use SAP Login control to create connection to R/3. Then use SAP BAPI

control to set the BAPI object, as well as the data object that will

receive the result list. Now use the BAPI object to run the method,

which will be a function in R/3. (Transaction SE38). Pass parameters

like this: LastName:="Jones". Here comes the difficult part: You now

need to loop through the data object, which resembles an internal table

in R/3. You code it like this:

Dim row as object

For Each row In PersonalData.rows

MsgBox row.Value("LAST_NAME") & " " & row.Value("INITIALS")

Next row

Set row = nothing

thanks

mrutyun^

Read only

0 Likes
762

any help is there any transaction to findout in sap for checking the external applications that r connected to sap