‎2007 Oct 03 5:50 AM
Hi
if i connect some vb application to SAP via RFC how to check in sap whether these details
‎2007 Oct 03 5:53 AM
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
‎2007 Oct 03 5:57 AM
Hi
i want to know in SAP system whether the connection is established or not?
‎2007 Oct 03 6:04 AM
just click on test bitton
or check SM58
for any logs
regards
Nagesh.Paruchuri
‎2007 Oct 03 6:13 AM
‎2007 Oct 03 6:18 AM
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
‎2007 Oct 03 6:07 AM
hi
good
go through these links
-
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^
‎2007 Oct 03 11:48 AM
any help is there any transaction to findout in sap for checking the external applications that r connected to sap