on 2007 Mar 15 9:03 AM
Hi SDN's
Can u just give me a the solution for to connect 'RFC through JCO by importing and exporting parameters.
if u give code, it will be helpfull for me.
thanks
Request clarification before answering.
Hi Renushree,
code to call RFC through JCo
http://searchsap.techtarget.com/tip/0,289483,sid21_gci823325,00.html
Regards
Abhimanyu L
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Renushree,
Please Gothrough this link,
http://help.sap.com/saphelp_nw04/helpdata/en/6a/82343ecc7f892ee10000000a114084/frameset.htm
Regards,
Ramganesan K.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Renu Shree,
U can Find the RFC Function Over BAPI and SE37 Transations.
Functional Module Can be used for RFC when
the remote enabled module option button is checked.
You can ensure a Function Module Which support RFC by SE37--> Enter FM -->
Attributes --> see the Remote enabled Function module..
If its checked then it will support For RFC.
But All BAPIs are RFC enabled.
Regards,
Ramganesan K.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Renushree
you can downlaod it from http://service.sap.com/connectors
It contains sample code and is quite easy to implement.
Cheers.
Please reward points for helpful answers:-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Renushree,
following package holds the API to access RFC
import com.sap.mw.jco.*;
JCO.Client mConnection;
JCO.Pool pool;
are classes which are used to connect to SAP R/3
mConnection =
JCO.createClient("210", // SAP client
"DEV07", // userid
"dra", // password
"EN", // language (null for the default language)
"10.111.16.26", // application server host name
"00"); // system number
mConnection.connect();
//will connect to your SAP R/3 system
mRepository = new JCO.Repository("ARAsoft", mConnection);
IFunctionTemplate ft =
mRepository.getFunctionTemplate("RFC FM Name");
JCO.Function function = ft.getFunction();
//this will get the reference to function module
JCO.Structure PO_HDR = function.getImportParameterList()
.getStructure("<Import Parameter Name>");
//to get Import Parameters
You can follow the other things from the URL which i sent u
Regards
Abhimanyu L
Hi Renushree,
All the BAPI's which are created by SAP you can view through
transaction SE37 in your R/3.
You can create your own RFC using the same transaction.
For More Info:
http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/frameset.htm
Regards
Abhimanyu L
Message was edited by:
Abhimanyu Lagishetti
Hi Renushree,
See this link for JCO connection code:
http://help.sap.com/saphelp_erp2004/helpdata/en/6f/1bd5c6a85b11d6b28500508b5d5211/frameset.htm
Regards, Suresh KB
User | Count |
---|---|
81 | |
30 | |
10 | |
8 | |
8 | |
7 | |
6 | |
6 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.