SAP Enterprise Conector

Hi
I use the SAP Enterprise Conector to built proxy classes from function module. I then add the jar files to the build path, but still the _portType.java gives errors:
throw createExceptionWrongExceptionType$(e);}
the method createExceptionWrongExceptionType$ is undefined.
and also for:
throw createExceptionWrongType$($result)
Please help!

Hi Venkatesh,
Make sure the hostname you use in your URL (short and FQDN) can be resolved.
ie:
myportal:<port>/irj
myportal.mycompany.com:<port>/irj
eg: in your hosts file make sure
10.23.2.50 myportal myportal.mycompany.com
Also after all the changes you have made, empty your browser cache and also force a GET by using cntrl+F5 key.
KR,
Amerjit

Similar Messages

  • Configure SSO Connection from SAP Enterprise Portal to BOE Server

    Hi Guys,
    We recently installed a BOE Server and want to connect it to our SAP Enterprise Portal. What we need is just to display the Crystal Reports via Enterprise Portal. We have set up the following:
    SAP EP with AD Authentication
    SAP EP configured with SNC to SAP BI7 system
    SAP BOE XI 3.1 - SAP Integration Kit
    BOE Server configured with SAP Authentication via SAP BI7 System
    We've also set up BOE IK iviews and URL iviews pointing to existing reports in BOE. However, when we access it from EP, it prompts for a username and login to BOE. Is there a way to configure these so that there is no prompt for login to BOE server and SSO is used? Is it also possible to have a service account (e.g. domain/crystal) that will run the reports in BOE everytime a user accesses a report from SAP EP?
    Let me know if this is at all possible

    Hi,
    You should configure InfoView for SSO first, which required infoview.xml file modification, using windows AD default authentication. If you want to utilize the OpenDocument URL for iView then you also need to configure OpenDocument.xml file for SSO also. The SAP portal must have trust relation with the SAP BW server so the Windows AD token can be authenticate with SAP BW server.
    If you want crystal user to run all the report then you will lose data security. It can be done by hard coding user name and password in the report properties and database logon but the SSO capability can be accomplished only by windows AD, SAP or LDAP.
    For more details check BOXI Admin guide and SAP Integration Guide.
    Thanks,
    Muhammad

  • Performance issue of BI Reports in SAP Enterprise portal -in SAPNW2004s

    Dear friends,
    We are integrating BI Reports in SAP Enterprise Portal 7.0 ( SAP NW- 2004s).The reports are running properly .But the issue here is reports are taking long time to open and leading it to performance effect.
    Reports in BEX( Bi side) working lilttle better than EP platform.
    And Even BI team is looking for ways to improve the performance.
    Could you please share your ideas to implement in portal side to increase the performance.
    Thanks and Regards
    Ratnakar Reddy

    Hello Mr. Reddy,
    There are two possibilities for slow performance in BW reports, so we need to look into wether its slow in the BW system or at the frontend.
    If the problem resides in the BW system then we should be able to trace the reports
    and you can go for a SAP EW or GV sessin and SAP will provide recommendations.
    If the problem resides at the frontend
    Update the frontend servers to the latest frontend release.
    Recommended Frontend Release 700
    Recommended Frontend Patch      18
    Update the frontend servers to the lates SAP GUI release as soon as possible.
    Minimum Recommended SAP GUI Release 6.40
    Your frontend PCs should fulfill the following requirements:
    Each frontend PC should have 500 MHz and 128 MB main memory.
    Because of a limit in the addressable memory, Windows 95 is not supported as Frontend OS for 3.X BW Systems. Please refer to SAP Notes 161993, 321973 and 366626 for details.
    Please also check SAP Note 147519 "Maintenance strategy/ deadlines 'SAPGUI'".
    If you still require any assistance from SAP support then raise a message under component ( probably BW-BEX-ET-WEB).
    Provide your input, if you have any.
    Thank you,
    Tilak

  • Performance issue of BI reports in SAP Enterprise portal

    Dear Friends,
    We have  integrated BI reports with SAP Enterprise portal 7.0.Reports are running properly But the issue is reports are taking more time to dispsaly its content and leading it to  performance effect.
    In Bex ( BI side) reports  performance is little better than  SAP EP platform. BI Team also looking for ways to improve performance  at BI side.
    Could you please share your valuable ideas to improve  the performance at SAP EP side also ..
    Thanks and Regards
    Ratnakar Reddy

    Hi ratnakar,
    The first step is to identify which component is causing the performance problem. Run your report in the portal but try appending the string &PROFILING=X in the end of the URL. This will generate BI statistics which you can use to see which component (Java stack, ABAP stack, Database) is causing the performance issue.
    Hope this helps.

  • Runtime error while using SAP Enterprise Connector in a J2EE Web Servlet

    Hello,
    I'm facing problems while trying to do a RFC call out of a Servlet.
    I'm using Development Components (DCs) and my project setup is as follows:
    Firstly I've created a DC of type J2EE/Web Module. This DC implements an absolutly simple servlet which has to do the RFC-Call.
    The relevant code is:
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
       JCO.Client jcoclient = JCO.createClient("010", "DV*****", "***", "DE", "ovd***", "01");
       jcoclient.connect();
       Bapi_Flight_Getlist_Input input = new Bapi_Flight_Getlist_Input();
       input.setAirline("LH");
       SAPProxies_PortType myproxy = new SAPProxies_PortType();
       myproxy.messageSpecifier.setJcoClient(jcoclient);
       try {
          Bapi_Flight_Getlist_Output output = myproxy.bapi_Flight_Getlist(input);
          BapisfldatType_List list = output.get_as_listFlight_List();
          int listsize = list.size();
          for (int i = 0; i < listsize; i++) {
             BapisfldatType elem = list.getBapisfldatType(i);
             response.getWriter().print("Date: " + elem.getArrdate() + '\t' + "Arrive: " + elem.getArrtime());
       } catch (Exception e) {
          response.getWriter().print(e.toString());
       jcoclient.disconnect();
    The proxy for the RFC Module "BAPI_FLIGHT_GETLIST" - in this case the classes around "SAPProxies_PortType" were generated by NWDS ("SAP Enterprise Connector" Wizard).
    I had to manually add following DCs as "Used DCs" to get my DC built:
    com.sap.aii.proxy.framework (default)
    com.sap.aii.util.misc (default)
    com.sap.mw.jco (default)
    So far, so good...
    As a J2EE/Web module DC can't be deployed I've created a second DC of type J2EE/Enterprise Application and referenced the first DC. This DC is also built fine and can be deployed.
    But... When I call my servlet I get following Error Message on the web browser:
    The request cannot be processed.
      Details:      
      com.sap.engine.services.servlets_jsp.server.exceptions.ServletNotFoundException: Cannot load the requested servlet [LocalDevelopmentservletxxx.com/servlet/TestServlet].
    Exception id: [000C295D60FB006F0000003600000EA8000461A05860B4BA]
    I also had a look in the trace files:
    Vollstu00E4ndiger Nachrichtentext
    application [LocalDevelopmentservletxxx.com] Processing HTTP request to servlet [TestServlet] finished with error. The error is: com.sap.engine.services.servlets_jsp.server.exceptions.ServletNotFoundException: Cannot load the requested servlet [LocalDevelopmentservletxxx.com/servlet/TestServlet].
    at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.getServlet(WebComponents.java:330)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:354)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: java.lang.NoClassDefFoundError: com/sap/aii/proxy/framework/core/AbstractType
    Loader Info -
    ClassLoader name: [xxx.com/testear]
    Parent loader name: [Frame ClassLoader]
    References:
       common:service:http;service:servlet_jsp
       service:ejb
       common:service:iiop;service:naming;service:p4;service:ts
       service:jmsconnector
       library:jsse
       library:servlet
       common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl
       library:ejb20
       library:j2eeca
       library:jms
       library:opensql
       common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore
       interface:resourcecontext_api
       interface:webservices
       interface:cross
       interface:ejbserialization
    Resources:
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\servlet_jsp\LocalDevelopmentservletxxx.com\work
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\servlet_jsp\LocalDevelopmentservletxxx.com\root\WEB-INF\classes
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\src.zip
    Loading model: {parent,references,local}
    The error occurred while trying to load "com.xxx.test.sap.connector.Bapi_Flight_Getlist_Output".
    at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:401)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
    at java.lang.Class.getConstructor0(Class.java:1930)
    at java.lang.Class.newInstance0(Class.java:278)
    at java.lang.Class.newInstance(Class.java:261)
    at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.getServlet(WebComponents.java:319)
    ... 14 more
    I think it has something to do with the used DCs... but I don't know why the classes are not found after deployment. I also tried
    to package the relevant jar-files from the used DCs into the EAR-File - but the I faced problems with the JCo
    Thank you for any help.
    Osman

    Hi,
    One thing that can be helpful is to add the references of the JAR files that you are adding as Used DC in the EAR.
    This can be done by adding Library type References in the application-j2ee-engine.xml Deployment descriptor in the EAR project.
    Following link will be helpful: http://help.sap.com/saphelp_nw70/helpdata/EN/83/82814282cfc153e10000000a1550b0/content.htm
    Regards,
    Alka.

  • Is there User Group and Role Reporting in SAP Enterprise Portal?

    I want to know if there is a way to pull users statistics our of SAP Enterprise Portal like you can out of the R3 backend systems.
    I would like functionality similar to the SUIM transaction. I know through user administration you can access any user, even a list of all users, and you can do similar lists with roles and groups. You can then access any of these things individually and look at their assignments. However, I want to do this on a large scale. I want to know for example every group that has a user assigned to it. Evergroup that has roles assigned to it. Or groups that have no user or role assignments. We have approximately 1904 groups in our Production Portal system and I am trying to clean up the groups that have no user assignment, but I don't want to look through them one by one.

    Hi Chris,
    There is no standard report available for this purpose. However all this information is stored in table UME_STRINGS.
    You can write your own SQL queries to generate such reports. However please note that this table is not normalized, and it's a master UME table. You should use it strictly for READ ONLY purpose.
    For a sample code you which i wrote some time back, you might refer:
    http://forums.sdn.sap.com/thread.jspa?threadID=2088099&messageID=10859334#10859334
    Thanks
    Prashant

  • Two sap enterprise portal in the same server

    Hi,
    We have installed a SAP Enterprise Portal on a linux server, all ok!!. but now we want to install another SAP Portal in the same server with the same ehp and same sp, but diferent url, is it possible? and we have something in mind when we began to install it..
    e.g. diferents ports or diferents database SID to avoid errors.
    thankssss

    Hi Carlos,
    SAP Software in general is flexible regarding this requirement.
    A SAP ID identifies the system, and the Instance ID is related to the Portnumbers that are used...
    So lets say you have an:
    - host called "linuxhost1" and
       - you installed a SAP system "AB1" and
          - the CI is 00 and SCS is 01
    then you can install multiple additional installations for example
    - host called "linuxhost1" and
       - you installed a SAP system "AB2" and
          - the CI is 02 and SCS is 03
    etc etc..
    As long as your host has enough resources you can fill it up...
    The instance numbers you chose are reflected in the portnumbers. So in my example above  the AB1 portal is called by http://linuxhost1:50000 and AB2 portal is called by http://linuxhost1:50200...
    So in other words the instance number of the CI is used in the portnumber of the java instance (5NN00).
    The above info is also spread among different SAP installation guides, and SAP help pages.
    Cheers,
    B

  • Migrationtool  SAP R/3 4.0b - SAP Enterprise

    Hello,
    I am searching for a migration tool, which imports data from SAP 4.0b to SAP Enterprise.
    Our source-system 4.0b is a absolute non-standard SAP-system; e.g. our PP-processes are a mix between MM, SD and of course PP.
    To achieve a nearly-standard target-system 4.7 we need a very intelligent tool to export "normal" SAP 4.0b-data to import them in the right tables in SAP 4.7, which means that our our MM-stuff has to come in PP-tables and so on.
    Which tool ist needed?
    Is LSMW the right tool (though it's is for non-SAP-systems and though it is not appropriate for complex migration-rules)?
    Those days I used DMIG for R/2->R/3 migration, is there a similar tool for complex operations, or is it possible to use DMIG also for R/3->R/3-Migrations?
    Thank You!

    Hi Lorenz,
    I am sure there are more than one way of doing this. I am proposing one.
    As far as i know, there is no R/3 -> R/3 migration tool. So, you will have to do it in the following way:
    1. Using SXDA transactions, export the existing data as 'test' data into flat files. Note that not all objects may have export feature.
    2. So, either by using SXDA or by writing your own abaps, export all the relevant data out of 4.0b system. 3. Try to streamline the data as much as you can during the export phase and at the least seperate data per business object.( Because SXDA, LSMW loads data per one business object at a time)
    4. After exporting the data and cleansing it to ensure you have everything you really want to load and also you have ensured that data for a business object is in one file or file-group.
    5. Using SXDA and LSMW, (SXDA allows you to manage the complete load process and LSMW provides the mapping capabilities. SXDA can call LSMW (once you have installed the LSMW)) you can now bring the data in.
    Depending on the complexity of your data 'mix', you may have plan the data grouping and sequencing properly to be successful.
    Wish you luck and best regards

  • Error in Enhancing the Standard SAP Enterprise Service

    Hi All,
    I have enhanced standard SAP Enterprise service, when i am going to test in wsnavigator , I am facing the below problem..
    ERROR : Definition of /wsdl:definitions/wsdl:types/xsd:schema[1]/xsd:attributeGroup/xsd:attribute is not correct. Missing top level component (uri: 'http://in.ibm.com/o2s'; name: 'MaterialSerialNumberCollection')."
    Please help.
    Thanks in advance.
    Biplab Ray

    Hello,
    It looks like there is a syntax issue in your web service definition. Please correct this (SE80) and reactivate the service definition.
    Thanks,
    Venu

  • Technical differences between SAP Enterprise and SAP ECC 6.0

    Hi,
    Can anyone plz tell me what will change technically after the upgrade from SAP Enterprise to SAP ECC 6.0, in respect to reports, module pool programming and other technical logics?
    Thx,
    KK

    Difference b/t ABAP4.7  and ECC6.0.
    Difference between R/3 4.7, ECC5 & ECC6 anyone?
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5b/8c3842bb58f83ae10000000a1550b0/frameset.htm
    http://service.sap.com/releasenotes
    /people/thomas.jung3/blog/2005/05/15/abap-46c-to-640-delta-training
    Re: R/3 Enterprise v mySAP ERP 2003 v ECC 5.0 v mySAP ERP 2004
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000497320&_SCENARIO=01100035870000000112&_OBJECT=011000358700000810532004E
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5b/8c3842bb58f83ae10000000a1550b0/frameset.htm
    http://service.sap.com/releasenotes
    See this weblog:
    /people/thomas.jung3/blog/2005/05/15/abap-46c-to-640-delta-training
    Re: R/3 Enterprise v mySAP ERP 2003 v ECC 5.0 v mySAP ERP 2004
    http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000497320&_SCENARIO=01100035870000000112&_OBJECT=011000358700000810532004E
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/68805bb88f297ee10000000a422035/frameset.htm
    A similar post
    /message/1783778#1783778 [original link is broken]
    You can go through the Release Notes for each of the versions after 4.6B (4.6C, 4.7 , ECC 5.0 & ECC 6.0)
    http://help.sap.com/saphelp_erp2005/helpdata/en/43/688055b88f297ee10000000a422035/content.htm
    For 4.7 SAP R/3 http://help.sap.com/saphelp_47x200/helpdata/en/12/9d78d6d8f74043a32e82be87e433b7/content.htm
    Release Notes on SAP Web Application Server 6.30
    http://help.sap.com/saphelp_47x200/helpdata/en/2b/64fc3e9d3b6927e10000000a114084/content.htm
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://solutionbrowser.erp.sap.fmpmedia.com/
    http://service.sap.com/instguides
    http://service.sap.com/erp
    http://www.stonewayinc.com/clients/sap/bestoftour/presentations/SAP_BOT_2_Furlan_IBM.ppt
    From the ABAP perspective, few differences are.
    The WS_* function modules used in 4.6c has become obsolete from 4.7C. All the WS_* FMs have been replaced by GUI_* FMs.
    (ii) Concept of Unicode is introduced.
    (iii) Few tables have been modified in ECC6.0.
    Tables TVARV & TTREX have been replaced by TVARVC & TTREXN respectively.
    (iv) we have enhancement points and enhancement sections along with enhancemnts and BADI'S . and we can write the part of code in those points.
    For functional differences please check out the following link:
    http://solutionbrowser.erp.sap.fmpmedia.com/
    ECC->enterprise central component.ECC 6.0 is the advanced version.if we consider in technical point of view then i can give u one example.
    In the new version we have enhancement points and enhancement sections along with enhancemnts and BADI'S.SAP has provided these ,so that without going for access keys we can write our code in the enhancement points along with Standard SAP code.So now SAP has provided more user friendly environment.Also a new DEBUGGER also arrived with the new version.Now we can see more things in the new er version of DEBUGGER.
    Reward points for useful Answers
    Thanks
    Murali Poli

  • SAP Enterprise Project Connection 2.0 in SAP ECC 6.0 EHP6

    Hello experts,
    Before describing any think let me tell u that i am very new to this field.
    We are configuring SAP Enterprise Project Connection 2.0 in our SAP ECC 6.0 EHP6 .I have already installed ABAP add on for EPC in ECC system.
    I have also installed trial version of primavera6 in another system.So now how can i connect my ECC system to Primavera6 through Enterprise Project Connection(EPC). I have gone through the installation guide for SAP Enterprise Project Connection 2.0 SP2.But i could not get any clear idea.
    Any reply is helpful for me..
    Thanks
    Debasis

    Hello Debasis,
    Post EPC installation,you need to perform configuration of EPC through portal.You can see it listed under configuration--> configuration scenarios-->EPC.
    During configuration you will be asked to define path of you primavera installation and a user on that system with sufficient permissions. This user is called APS user.
    Try to do a mock configuration run on sandbox/dev system and then you can follow the guide.
    Regards,
    Hetal

  • EJB Modul: SAP Enterprise Connector, configuring build path

    Hello,
    first of all I'm using SAP NW CE.
    I created an 2 Development Components, an EJB Module and a Enterprise Application(EAR). In the EJB Module I use the SAP Enterprise Connector to generate Java Proxy Classes to do RFC calls.
    In the EAR-DC I add in Properties-->J2EE Module Dependencies the needed jar-files. And in the EJB-DC I reference this.
    When I don't work with DCs and I create a "normal" EJB and EAR project that is the way it works.
    But with DCs I have a problem when I want to build the DC. I have this error:
    package com.sap.aii.proxy.framework.core does not exist
    So the build-process don't realize the J2EE Module Dependencies. How can I solve this problem?
    Regards,
    Armin

    Did you mean the Development Infrastructure Perspective? If yes I don't find DC -> DC Metadata -> DC Definitino -> Right-click Used DCs -> Add Used DC... if I browse through my DC.
    Apart from that I don't want to reference DCs as I write above. I want to reference only jar-files. Because the DCs com.sap.aii.proxy.framework, com.sap.aii.util..misc and com.sap.mw.jco are deprecated. And if I reference DCs I have to use this DCs to use the proxy classes made by the SAP Enterprise Connector. So I want to reference the jar-files where the needed source isn't deprecated.
    By the way I use SAP NW CE.

  • J2EE/SAP Enterprise Portal - Developer Position

    Our client is looking for Enterprise Application Developer with strong J2EE and SAP Portal knowledge.
    Please submit your resume to [email protected] for an immediate consideration.
    ENTERPRISE APPLIC. DEVELOPER
    Description:
    EDUCATION: B.Sc. Computer Science or equivalent Required Technologies: - Strong J2SE and J2EE experience - APIs knowledge - JSP, Java Serlvet, JMS, EJB (Session and CMP 2.x), JDBC, JNDI, JCA, J2EE Deployment, JAX-RPC, SOAP 1.2 - Web UI development framework such as Struts or SAP WebDynpro - Source Code Version control system such as CVS - Java Ant - Java Security and J2EE Security - Eclipse - LDAP JOB DUITES: - Develop plan and implement SAP EP into a large IT environment. This will include providing the technical expertise required to make this happen in a timely manner. - Work with internal clients to translate the defined business requirements into technical solutions, do feasibility assessments and identify the appropriate technical approach to meet those needs. - Technical architecture and design, and hands-on development of Portal solutions which are based on SAP best practices and J2EE standards. - Execute the software development life cycle, develop and carry out development best practices, and participate stress test and performance test. - Support and enhance existing applications.
    EXPERIENCE: - Competency in the development of customized software and architecture processes - Java Application Server development, delivery and overall system optimization - Solid experience of software development life cycle (requirements, specifications, design & analysis, construction, testing, deployment). - Proven ability to meet deadlines - Demonstrate the ability to prioritize tasks and work effectively with minimal supervision in a collaborative environment -Must be details-oriented and have a strong commitment to client satisfaction - Strong analytical skills and ability to create innovative solutions to complex problems -Strong communication skills Required Experience: -Object Oriented analysis and design -Solid Java application development experience -Solid Web tier development experience -Solid XML and Web Services experience -Web application security such as Single Sign On architecture -Web application profiling -Experience design and document enterprise applications - Solid troubleshooting skills - Experience with source control system -Web application and enterprise application integration - Knowledge and/or exposure in SOA architecture - Relational database experience, knowledge of repository framework -Commercial Portal product experience is a bonus Desired Experience/Technologies: - Hands on experience in SAP Enterprise Portal 6 - Knowledge of SAP HR, R3, BW - Knowledge of ABAP - Hands on experience in webMethods product suite.

    hi aditya,
    u can also refer to this links to feel comfortable with portal.
    New to EP..
    Very new to EP with Little knowledge on JAVA....Help on this
    http://help.sap.com/saphelp_nw04s/helpdata/en/10/4baa42cdccda11e10000000a155106/frameset.htm
    Beginning EP Development
    Oliver's favorite SDN link collection
    Top Weblogs of All Time [19 to 14]
    Installing and configuring the preview edition of EP
    What is EP ??
    About portal
    e-Books on EP
    Beginner to EP
    Start with EP
    Portal Development
    regards
    bhargava
    note:reward points if useful

  • SAP Enterprise Connector and service....

    Hi everyone,
    After creating, via the plugin "SAP Enterprise Connector", a proxy pointing on a BAPI, how can I create a service for this (and a web service).
    I know that you can create a web service directly using ABAP transaction se37. But our SAP version is quite old and we haven't this option.
    Thanks for the help.
    Message was edited by: David Fryda

    HI Jerin,
    Can be please little bit elaborate ur scenario.Because Enterprise Connector is deprecated in NWCE 7.1 onwards...

  • SAP Enterprise Connector and JCo

    Hello All,
          I have a question.
    I wánt to know regarding -->
    SAP Connector  &
    JCo.
    Are both of them same ?
    Regards,
    Deepu.K

    hi,
    <b>They are different:</b>
    SAP Connector : A development tool, that helps classes and RFC function module method calls in Java application.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ed/897483ea5011d6b2e800508b6b8a93/frameset.htm
    JCO : They are often called as JCO RFC provider service. They offer two types of connection a)TCP/IP b)Through shared memory
    http://help.sap.com/saphelp_nw2004s/helpdata/en/83/85343e8c7f6329e10000000a114084/frameset.htm
    (soon my blog on SAP Enterprise connector will be published)
    hope it helps'
    regards

Maybe you are looking for

  • User did an append when doing a backup of SQL now trying to do a restore

    User did a backup of SQL doing an append now getting the message: The media set has 2 media families..... The directory of the first media set was copied to an external drive.  The system was then wiped to load Win7 what can be done to restore the fi

  • Not gettting the list of interfaces for BPM in integration directory

    Hi Gurus,                 I am trying to create receiver detrmination and interface determination for my BPM. When I select my BPM as communication component, I am not getting the list of abstract interfaces under outboutnd and inbound interfaces cat

  • Transfer BENEFIT3 IDoc to XI System

    Hi All    I have a small requirement to send BENEFIT3 IDoc in SAP 4.7 to SAP XI... I was familiar in SAP – SAP IDoc Transfer; so I tried similar configuration in both system, but I couldn’t succeed…Please help to complete necessary configuration and

  • WSDL parsing failed

    Hello, I am getting this error while trying to connect to a 10.1.3 BPEL wsdl from my application. The error, wsdl, and the client code are mentioned below. Client Code If fails at the bold line below ..                URL url = new URL(wsdl);        

  • Undefined Data type

    When describe a view, datatype of few column shown as UNDEFINED and rest of columns are ok. Also, on querying ALL_TAB_COLUMNS, Data_type is UNDEFINED and Data_length is 0. But we are able to query that view and it is showing correct data. Please help