Needed classes for sap connector framework

Hello,
when i installed sap netweaver developer studio 2.0.5 i become all needed classes for sap connector framework?
Or i have to install the pdk? What are in the pdk for developer studio because the needed wizards are there (portal, sap connector ...)
Thanks,
Frank

Torben, try to use class finder plugin as described here /people/maksim.rashchynski/blog/2006/08/14/the-story-about-how-2-eclipse-plugins-helped-me-to-make-a-lot-of-points-on-sdn-forum
To save you some time:
C:\usr\sap\J2E\JC00\j2ee\cluster\server0\bin\ext\tcconnconnectorframework\*.jar
C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\com.sapportals.connectors.sap\connector\connectors\SAPCFConnector.rar\SAPCFConnector.jar

Similar Messages

  • JCO or SAP Connector Framework

    Hello
    I have seen in these links that JCO is deprecated:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/40/003c41325fa831e10000000a1550b0/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/89/8a185c148e4f6582560a8d809210b4/content.htm
    Developers are supposed to use SAP Connector Framework, but it seems that this is a Framework only useful from a Portal Application. What I want to do is to invoke RFCs in a R3 System from a webapp using struts. I have done this using JCO.
    Should I implement it using another solution?
    Thanks in advance

    Hi Marcos,
    You can, of course, use SAP JCO in simple Java Project by importing needed Jars.
    I provide you a sample of connection class with method that you can use for calling a function.
    You can use method "showFunctionParameters()" to test your connection...
    regards
    package echoFunction;
    import java.io.IOException;
    import java.util.Properties;
    import javax.swing.JOptionPane;
    import com.sap.mw.jco.IFunctionTemplate;
    import com.sap.mw.jco.JCO;
    public class JcoConnection {
         private final String REPO_NAME = "REPO_01";
         private JCO.Repository repository;
         private JCO.Function function;
         private JCO.Client connection;
         private JCO.ParameterList paramImport;
         private JCO.ParameterList paramExport;
         private JCO.ParameterList paramTables;
         public JcoConnection() {
              // constructor
         public void connect(String sapClient, String userId, String passWord,
                   String language, String server, String systemNumber) {
              connection = JCO.createClient(sapClient, userId, passWord, language,
                        server, systemNumber);
              connection.connect();
              repository = new JCO.Repository(REPO_NAME, connection);
         public void connect(Properties properties) {
              connection = JCO.createClient(properties);
              connection.connect();
              repository = new JCO.Repository(REPO_NAME, connection);
         public void disConnect() {
              connection.disconnect();
         public void useFunction(String functionName) {
              IFunctionTemplate ift = repository.getFunctionTemplate(functionName
                        .toUpperCase());
              function = new JCO.Function(ift);
              paramImport = function.getImportParameterList();
              paramExport = function.getExportParameterList();
              paramTables = function.getTableParameterList();
         public void execute() throws JCO.AbapException {
              connection.execute(function);
         public void setInputValue(String paramName, String valueInput) {
              paramImport.setValue(valueInput, paramName);
         public String toString() {
              return connection.getAttributes().toString();
         public static void main(String[] args) {
              JcoConnection sapConn = new JcoConnection();
              try {
                   sapConn.connect(Utilities.loadPropertyFile("logon.properties"));
                   sapConn.useFunction("STFC_CONNECTION");
                   sapConn.setInputValue("REQUTEXT", "Echo text");
                   sapConn.execute();
              } catch (IOException ex) {
                   ex.printStackTrace();
              } catch (Exception ex) {
                   ex.printStackTrace();
              sapConn.disConnect();
              JOptionPane.showMessageDialog(null, sapConn.showFunctionParameters());
         public String showFunctionParameters() {
              String paramText = "";
              paramText = "ECHOTEXT: t";
              paramText += function.getExportParameterList().getString("ECHOTEXT")
                        + "n";
              paramText += "RESPTEXT: t";
              paramText += function.getExportParameterList().getString("RESPTEXT");
              return paramText;
    package echoFunction;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.util.Properties;
    public class Utilities {
         public static Properties loadPropertyFile(String filePath)
                   throws IOException {
              Properties properties = new Properties();
              properties.load(new FileInputStream(filePath));
              return properties;

  • Does storage systems need certification for SAP?

    Hi,
    Does storage systems like IBM XIV, EMC DMX and NetAPP need certification for SAP?
    If the server/os and database are all certified and does the storage used bu the server to host the data needs certification?
    thanks

    > Does storage systems like IBM XIV, EMC DMX and NetAPP need certification for SAP?
    No.
    > If the server/os and database are all certified and does the storage used bu the server to host the data needs certification?
    SAP certifies operating system/database combinations.
    Markus

  • SAP Connector Framework Libraries

    I want to develop a Portal Component that uses the SAP Connector Framework. I installed the Eclipse Plugin und downloaded the libraries.zip from the EP. I can't find some libraries: GenericConnector.JAR and Connector.JAR
    Could anybody tell me where to find these libraries?

    Hi,
    you can find the two jar files within your portal installation:
    GenericConnector.JAR under ...\<SID>\j2ee\cluster\server0\bin\ext\com.sap.genericconnector
    and the connector.jar file under
    ...\<SID>\j2ee\j2eeclient
    Best regards,
    Marion

  • Custom class for GRC provisioning framework 2 on IDM 7.2

    Hello,
    I am currently trying to modify the GRC provisioning framework validation workflow in order to validate privileges on roles rather than each privilege individualy. After reading through the code, I tried to create a class which would extract the list of privileges of the role and send it to GRC for validation. But I am faced with a problem integrating it in IDM 7.2.
    The provisioning framework use "Execution Task" to call a static java methods. This is the process I tried to work with, thus I created my own java class based on those in com.sap.idm.grc.ac, and replaced the call to a call to my class. The problem is, when starting the job, the dispatcher thrown an exception:
      Could not carry out method (com.inventy.idm.grc.ACPrepRequestRole.exec)
    The produced .jar should be in the DSECLASSPATH of the dispatcher (I check the .prop file directly, after adding it to the MMC), it still work with any other file in the same folder (grcfr.jar, among other), it just seem like it can't recognize mine.
    Is there any other place where I need to register my .jar? Is it even possible to modify a Java Execution Task like this, or I will need to redo half the framework in Javascript?
    Attached are the task created, the classpath extension and the folder where the jar is located.

    Julien,
    I'd probably open a note on this one.
    Regards,
    Matt

  • SAP Connector Framework JAR-files

    Hey guys,
    can anyone please tell me where I can get the JAR-files for the SAP Java Connector (especially those with the package "com.sapportals.connector*".
    Thanks and Best Regards,
    Torben

    Torben, try to use class finder plugin as described here /people/maksim.rashchynski/blog/2006/08/14/the-story-about-how-2-eclipse-plugins-helped-me-to-make-a-lot-of-points-on-sdn-forum
    To save you some time:
    C:\usr\sap\J2E\JC00\j2ee\cluster\server0\bin\ext\tcconnconnectorframework\*.jar
    C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\sap.com\com.sapportals.connectors.sap\connector\connectors\SAPCFConnector.rar\SAPCFConnector.jar

  • Need advice for SAP installation on External  Hard disk

    Hi Gurus,
    I have HP laptop with configuration of 512 MB RAM and 50 GB hard disk...i recently bought 250 GB segate external  hard disk for SAP installation...My doubt here is if i  install SAP in external hard disk and will it work properly if i connect my laptop?
    ur advice is much appreciated
    Regards
    Dinesh

    Hi Dinesh,
    I have installed SAP on external harddisk.
    And it will work properly.
    But i think you need to increase your RAM.
    After installation, please keep in mind one thing.
    You will have to attach your external harddisk before your machine starts, because your OS will be in internal harddisk, so SAP and oracel services won't be able to run without external hard-disk.
    and in case you attach after system startup, please start all services.
    Regards,
    Payal Patel

  • Need details for SAP USER-ID

    Dear All,
    I am Chartered Accountant and having 2 years of domain experience. I have completed my training from a small institute that is not SAP partner. I have very good hold on SAP FI and CO modules and want to appear for SAP FI certification. I DID SELF STUDY AND I AM TOO MUCH CONFIDENT ON THE SUBJECT.
    But for appearing any SAP certification I need SAP USER-ID. I DON"T KNOW HOW CAN I GET IT IF I AM INDIVIDUAL CONSULTANT??
    Exam Registration & Scheduling Information
    Registration for SAP certification exams taken at Pearson VUE is a simple 3-step process:
    1. See information below for details on obtaining your SAP User-ID.
    2. Create your Pearson VUE web account (SAP user id from step 1 will be required)
    3. Register for the exam
    All exams require the use of the SAP user id for proper tracking in the SAP Certification System.
    CUSTOMERS / PARTNERS / INDEPENDENT CONSULTANTS:
    If you have previously taken an SAP exam or attended SAP training, go directly to step b, otherwise, customers and partners should access visit the Service Marketplace to register for your S-user number. Independent consultants, as well as Customers and partners having questions or problems regarding this step, should use the following contacts:
    1. North America: Tel: +1 888 777 1727.
    2. For all APJ countries excluding Japan: education.apa at sap.com or tel: +65 62 708188
    3. For Japan: training.japan at sap.com or tel: +81 3 3273 7070 (9:00-17:00 in Japan local time)
    4. For all other countries please navigate to the appropriate country on sap.com/services/education and contact your local Education Department.
    CALLING ANY OF ABOVE NUMBER DOESN;T HELP. THEY DON;T REPLY OR CALL WAITING AND ALWAYS WAITING. I HAVE ALREADY SPENT AROUND FEW THOUSAND ON MAKING CALLS ON THESE NUMBERS.
    COULD ANYONE OF YOU EXPERTS HELP ME IN APPERING FOR SAP FI and CO CERTIFICATION? I HOPE THERE WILL BE A WAY TO APPEAR FOR CERTIFICATION EXAM WITHOUT USING SAP ID or ANY TRAINING CENTER WHO PROVIDED CERTIFICATION FACILITY WITHOUT ATTENDING THE TRAINING.
    AWAITING EXPERTS FEEBACK ON THIS ISSUE.
    Thanks,
    Manu Rathore
    Moderator message: please do not use all upper case in the future.
    Edited by: Thomas Zloch on Nov 29, 2010 11:09 AM

    Hi
    Elgibility for Certification:
    You should either complete your training in any Authorized Training Center or Should have experience of more than 2 years(not sure if it is 2 or 3 now) in the said module.
    If you dont have any of the above, then certification wont happen in India.
    Vishwa.

  • Need book for sap work flow

    hi,
    i am in need of sap workflow books.can anybody suggest me few book names(or materials) for the same.
    Thanks in advance.
    Regards
    kavitha

    Dear Kavitha,
    Book:
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://www.amazon.com/Practical-Workflow-SAP-Effective-Processes/dp/159229006X (Same Book ..... Practical Workflow for SAP)
    Help Link:
    http://help.sap.com/saphelp_nw04/helpdata/en/04/926f8546f311d189470000e829fbbd/frameset.htm
    Regards,
    Naveen.

  • Need books for SAP-XI reference

    Hello experts,
    Can anybody suggest me what are the referral books available for SAP-XI along with authors.
    Thnx in advance.
    sreenivas.

    Hi sreenivasulu,
    http://www.bookware.com.au/cgi-bin/bookware/159229037X
    http://www.sapgenie.com/xi/
    http://whatis.techtarget.com/generic/0,,sid9_gci1162424,00.html
    http://www.amazon.com/gp/product/sitb-next/159229037X/102-8721161-7322560
    award if helpful.
    regards,
    keerthi.

  • Need Help For Sap Insurance Presentation

    Dear Friends,
    I am a Technical person and i want to give a Presentation on 'SAP Insurance - Collection and Disbursements '.I have gone through Sap help for SAP Insurance but am not getting what should be my material for Presentation. Being A technical person not able to understand WHAT SHOULD BE THE CONTENTS OF PRESENTATION i:e should it be more of Technical or Functional.
    Please help me and Guide me for the Contents from a Functional Point of view, as i will be giving presentation to My Seniors.
    Thanks and Regards,
    Ashwini

    I do not understand presentation in terms of collection and disbursement you mean from the business side of things or will i say looking at it from a business analyst perspective. I have some info if you can send an email add then i will send something which might be helpful though i am not sure, I myself i am just moving into such area as a SAP Business Analyst for Claims managment though i have an insurance background of another ERP so i might be able to help.

  • I need materials for SAP SRM  NPP(Non production procurement)

    Please provide materials for SAP SRM NPP, General ideas about it.
    regards,
    George.

    Salut George,
    in general, all items that a business procures which directly end up in the production process are acquired through "production procurement". Examples for production marerial or "direct" material are raw materials, or fuel/energy for the producing machines.
    The abbreviation NPP for the (too) short cut Non-Production Procurement refers to procurement of so-called "non-production materials and services", also known as "indirect procurement". What "non-production" is depends on the company that produces. Here some examples:
    At Xerox, the copy machine maker, NPP "covers all purchases of supplies other than supplies used in the actual production of copying machines. Thus, all office supplies, from desks and personal computers to pencils and stationary comes under the category of non-production procurement." {you can probably find the source via google}.
    Resources, when not directly involved in the manufacturing process, such as engineers, product designer, quality inspectors, and administrators, may be referred to as non-production labor. Again, it depends on the production process of the company! The procurement of these resources may be seen as non-production procurement as well.
    I hope this helps. Best regards,
    Andreas

  • Need Help for SAP WAS 620

    Hi,
    We have installed SAP Biller Direct application on J2EE 620 engine integrated with SAP R/3 4.7 Enterprise (WAS 620). For user management security we will use ABAP stack.
    The link of this Biller Direct Application will be provided on company's web portal (not SAP Ent. Portal). Once user click on link , Biller Direct application will open it another browser window.User must create their own user id and password.Other information will also be asked like Last Name ,first name, etc) during user id and password creation. Basically user will create their own user master record. (just think of it as you are creating an email account in Yahoo portal connected to R/3)
    My question is :-
    1) What configuration I need to do on J2EE and R/3 side so that user record will be created in R/3 when user creates it's own ID and password?
    2)If I want to link LDAP with R/3,  how I can link the LDAP with R/3 (user mapping ) will it be automatic, once the user creates it user id in web portal? OR do i have manually synch LDAP and R/3
    I will appreciate your response
    Thanks

    I do not understand presentation in terms of collection and disbursement you mean from the business side of things or will i say looking at it from a business analyst perspective. I have some info if you can send an email add then i will send something which might be helpful though i am not sure, I myself i am just moving into such area as a SAP Business Analyst for Claims managment though i have an insurance background of another ERP so i might be able to help.

  • Need Scenario for SAp-XI-webpage

    Hi
    My requirement is receiving the data from SAP,process them in XI and Display as a report in webpage .
    Regards
    SAI

    Hi sai,
    To send information from XI to a web page, you need to confiure a HTTP Adapter. For info on how to do the same, check the following links,
    http://help.sap.com/saphelp_nw04/helpdata/en/43/64dbb0af9f30b4e10000000a11466f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/43/64dbb0af9f30b4e10000000a11466f/content.htm
    It would be helpful, if you could give a more detailed requirement,
    Regards,
    Bhavesh

  • I need Guidance for SAP Teched for BW

    Hi Everybody,
    Iam new to this forum.I need some guidance regarding preparation for BW certification.
    1.Which books i should read for what topics?
    2.How many questions from individual topics we may expect?
    3.Any documents that may help in preparing for BPS part.
    4.I need some personal plans followed by you to get success in Teched(Your experiences).
    Hope all of you will support me in all respects so that i too can achieve certification.
    Thanks for your support.
    Best regards,
    Venu
    mail:[email protected]

    Hi Venu,
    Check below links
    http://www.sap.com/uk/services/education/courses/bw.epx
    http://www50.sap.com/useducation/curriculum/print.asp?jc=1&rid=285
    http://www50.sap.com/useducation/curriculum/print.asp?jc=1&rid=458
    http://www50.sap.com/useducation/certification/examcontent.asp
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=506&vid=5
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=420
    BW Certification Preperation
    BW CERTIFICATION 3.5
    Re: SAP BW Certification
    /thread/49323 [original link is broken]
    BW certification
    All the best...
    Krishna

Maybe you are looking for