SAP R3 CONNECTION WITH JSF APPLICATION

Hi Experts,
i want to integrate my JSF application to the SAP R3 using java class. I searched a lot of blogs and docs where they have given a proxy class approach.But i am not able to use it.
If you have any experience or knowledge , please reply .
Thanks in Advance
Ankur Goyal

Hi,
I am using NWDS 7.2.If you have any sort of information about a java apllications integration wiith SAP R3 then please reply back to me.
Ankur Goyal.

Similar Messages

  • Unable to connect SQL server 2005 databse with JSF applications !

    Hello guys!
    Help me out to connect SQL server 2005 Databse with JSF applications using JDBC-ODBC bridge. I'm working with Netbeans 6.1 IDE.
    I tried for the basic applications but instead got this error:
    "unable to deploy jdbc drivers to the <project>domain/lib"
    Please help me out with working sample codes that connects MS SQL server 2005 DB with JSF!!
    Thank you guys!

    1) don't use the bridge driver
    2) don't do database access from JSF
    3) learn how to use your application server
    4) learn how to use your IDE

  • How to make SAP B1 connection with Windows Sharepoint Service 3.0

    how to make SAP B1 connection with Windows Sharepoint Service 3.0 through asp.net web part code.. I get the security error when i run that web part......
    public bool ConnectToCompany()
                oCompany = new SAPbobsCOM.Company();
                oCompany.Server = "192.168.1.58";
                oCompany.DbServerType = SAPbobsCOM.BoDataServerTypes.dst_MSSQL2005;
                oCompany.CompanyDB = "SBODemoUS";
                oCompany.DbUserName = "sa";
                oCompany.DbPassword = "abc";
                //oCompany.UseTrusted = true;
                oCompany.UserName = "manager";
                oCompany.Password = "manager";
                oCompany.language = SAPbobsCOM.BoSuppLangs.ln_English;
                oCompany.LicenseServer = "192.168.1.58:30000";
                int i = oCompany.Connect();
                if (i != 0)
                    return false;
                return true;
    protected override void RenderContents(HtmlTextWriter writer)
                if (conn.ConnectToCompany() == true)
                    writer.Write("Hello" + this.Context.User.Identity.Name);
    Edited by: bikalg on Nov 28, 2010 9:43 AM

    Hi.......
    Welcome to SAP Business One Forum.....
    Unfortunately this is the wrong forum you posted here.
    I would suggest you post it in SDK or System Administration Forum and definitely you get the solution and close this thread from here......
    Regards,
    Rahul

  • SAP company connection with DI only

    Hello,
    I am developing a asp.net application that uses DI to connect to a SAP Company. Now, I need to get the user password to connect to the company and then post a purchase Order.
    thanks
    Julia

    Perhaps the best way would be, if you are using .NET, to use “app.config” file, store user names/password in it. The first time your add-on is installed, pop off the dialog asking for SAP user name and password (even DB username and password if don't want to use .UseTrusted = true).  Subsequent Add-On startups would not need those pop-ups because Add-on would rather pick it up from app.config file.
    Use System.Configuration.ConfigurationSettings.AppSettings[] to pull off encrypted values, then decrypt it using any of the .NET libraries e.g. Symmetric.Provider.TripleDES before establishing connection with DI.
    For simple ready to go downloadable snippets, I think check :
    http://www.codeproject.com/dotnet/SimpleEncryption.asp
    For in-depth coverage, of course, visit MSDN

  • Will BridgeIt Technology work with JSF Applications?

    I have a JSF based web application and needed to be able to upload pictures and audio snippets from the mobile field staff.  I see that BridgeIt allows HTML5 integration between web and native components but I couldn't tell from the tutorials if it would work for a JSF application or not.  Does anybody know?  Note I see that the product is from ICEsoft but to be honest I am not an ICEfaces user (I use one of the competitors products).  Can it still work?
    Thanks.

    PPPOE will be one of the choices for the connection, these new routers often come with a wizard that knows what to do anyway.
    Yeah WAN is Internet
    No, you don't need a password but some routers insist you provide one.
    If you found this post helpful, please click on the star on the left
    If not, I'll try again

  • Flex with jsf Application

    Hi
      I am new to flex and i have a knowledge on jsf .We got a requriment to integrate the flex with jsf .
      I googled and i developed the sample application using the fiji (Exadel ) .
      When i an running the application in the jboss I GOT EMPTY page then after deselecting the check box of 'blockjavascript' in the browser
      am able to see the swf file in the page
    can any one help me..
    My Project
    The   mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="1024" height="715" xmlns:ns1="*">
    <mx:Form x="22" y="47" width="1200" height="680">
    </mx:Form>
       <mx:Button x="22" y="5" label="This is Prapansolution" width="280"/>
    </mx:Application>
    The .jsp
           <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:fiji="http://exadel.com/fiji"
              xmlns:a4j="http://richfaces.org/a4j"
              xmlns:rich="http://richfaces.org/rich"
              xmlns:ui="http://java.sun.com/jsf/facelets"
               version="2.0">
             <f:view><h:form id="myForm">
              <fiji:swf src="/faces/FirstFlexApp.swf" id="demonew"  bgcolor="#FFFFFF" width="820" height="480">
              <f:param name="text1" value="Hello" />
             </fiji:swf> </h:form></f:view>

    "vikbar" <[email protected]> wrote in
    message
    news:gb0tug$7je$[email protected]..
    > Hi Amy,
    >
    > Isnt the HistoryManager approach more specific to Flex
    application i.e if
    > user
    > is just navigating with in the flex application? In my
    case the user will
    > navigate between a JSF page which does not have any SWF
    file and the
    > another
    > one which has swf file embedded. Now everytime when the
    suer moves to the
    > flex
    > embedded JSF page from the Non Flex JSF page these are
    the steps which are
    > always going to happen :
    >
    > 1.) System Manager will get initialized and will create
    PreLoader
    > instance.
    > 2.) The preLoader will then try to download the swf
    file. Now since this
    > is
    > the second time the user is coming back to the flex page
    so the broswer
    > would
    > have already cached this swf, so Preloader will skip the
    downloading
    > swf/RSl
    > step and hence you wont see any initialization progress
    bar.
    >
    > 3.) New Application object will get instantiated and
    will go through its
    > whole
    > lifecycle.
    >
    > So, I guess historyManager approach will work only if
    the user stays on
    > the
    > flex application only and navigates with in flex
    application itself(so in
    > that
    > case if the user clicks back then it knows which flex
    component or view to
    > display), but in my case user will completely move away
    from flex page to
    > a
    > JSF page and then will try to come back.
    >
    You'd need to put the right stuff in the url to make it work,
    just like if
    you were calling a page that's expecting GET params. I don't
    really use the
    HistoryManager, so you'll need to either look into this
    yourself or ask
    someone who knows more about it.
    HTH;
    Amy

  • Switch To Different Schema Connection With Existing Application

    Hi,
    Currently, i want to connect my existing application to a different schema, how should i do it?
    The situation is that i have two schema(call Database Connection in JDeveloper) that have exactly the same structure, as one is duplicated from anothe. My purpose of doing this is to use one of the schema for daily operation, while the other for testing.
    I have tried with this method:
    1. Right click on the Business Component project node and select Edit Business Component Project.
    2. In the Connection Tab, i change the Connection Name to the new schema(which used for testing).
    3. Then i open my .jsp page and sad to see the it's still retrieving data from the old schema.
    Am i hitting it with the wrong tactic? Please lemme know if there's any way that i can solve my problem.
    Thanks,
    Sin Leng

    Hi,
    The code snippet provided above must be executed whenever an ApplicationModule is first used by a new session but only after
    that ApplicationModule has been connected (otherwise the connection will not be available). Depending upon the type of client that
    you are developing (Swing vs. servlet for example) the right place to put this code could vary. Further, if your ApplicationModule
    and/or connection is pooled you must also be careful to reset this information whenever an ApplicationModule is serially reused
    by different clients.
    As of 9.0.3, the BC4J framework has provided a single hookpoint for all clients to manage session context on the middle tier. The
    method is oracle.jbo.server.ApplicationModuleImpl.prepareSession(Session). This method is invoked whenever a session
    (represented by a SessionCookie in the BC4J framework) uses an ApplicationModule which it had not referenced from a previous
    request. The Session parameter is the ApplicationModule session context which BC4J will automatically update with the
    userData context of the client side SessionCookie before prepareSession(Session) is invoked. This makes custom, client
    side context available to the midtier. Further this method is invoked after BC4J has connected the ApplicationModule, so it is a safe
    hookpoint for initializing custom DB session context as well as MT session context.
    In order for BC4J to make the client side SessionCookie userData context availabe in prepareSession
    the SessionCookie userData context must have been set before SessionCookie.useApplicationModule has been invoked. Please see
    the javadoc for SessionCookie.getUserData() and or the pooling sample ($JDEV_HOME/BC4J/samples/Pooling) for more information
    about acquiring a SessionCookie reference programmatically (so that you can initialize the SessionCookie userData). Other options
    may be to set up the userData in a custom SessionCookieFactory. Please see the pooling sample for a sample custom
    SessionCookieFactory implementation.
    Hope this helps.
    JR

  • Error with JSF application on SAP NetWeaver  App Server  7.3

    Hello Gurus,
                             I have a JSF web application which I have deployed on the SAP NetWeaver Server 7.3 , but when trying to access the same I get the error
    Cannot process an HTTP request to servlet [Faces Servlet] in [SecurePro] web application. [EXCEPTION] javax.servlet.ServletException: com.sap.engine.services.servlets_jsp.server.jsp.exceptions.CompilingException: Error in executing the compilation process: [ Compilation Failed! Exit Code=1
    Has anybody else also got the same error earlier?, I am using Mojarra  implementation for JSF.
    I had earlier deployed the same application in an earlier JSF version and it worked on NWAS7.0 but Now I need to upgrade that, Please help
    Thanks
    Somil Agarwal

    Hi Ingo,
    Yes - Ive tried every possible combination and here is my findings...
    I don't think the 32-bit version of the SAP Java Connector (2.1.8) works on a Windows 2003 x64 SAP J2EE 7.0, i.e. the sapjco.jar file. I created a directory and added it to the CLASSPATH of the J2EE server (server and instance) and I also added it to the Java classpath using: java -jar <path+sapjco.jar> -classpath. Executing this command brings up a SAP Java connector window where it displays information of the version, location of the sapjcorfc.dll file etc. This windows opens, but is not able to display the information. If I do exactly the same with the x64 bit version of the SAP Java connector (2.1.8) it displays the information correctly in the SAP Java connector popup. I've tried copying the sapjcorfc.dll and the librfc32.dll to both the /system32 and the SYSWOW64 directory on the server.
    HOWEVER, in CMC the Role Import tab still does not work - I just get the text null (in red). Before adding the sapjco.jar to the java classpath I got another error on the Role import tab - something like /com/sap/mw/jco/$JCOFunction. So it seems like it is now able to find the sapjco.jar file, but can not use it properly.
    The big question is now: Should the sapjco.jar file actually be on the Application server or on the BOE Server? I know it says on the application server in all documentation, but that generally assumes Tomcat and all installed on one server.
    BOE uses the sapjco.jar file to connect to the BW system to import the roles and that must be the BOE server doing that job and not the Application server???
    Just my thoughts - maybe we can discuss this at Teched in Phoenix? :o)
    Best regards,
    Jacob

  • SAP ALE connection with EDI sub-system

    We are using the SAP ALE functionality to connect to the EDI sub-system, rather than the traditional way (creating IDoc flat files). For this setup also, the RFC type is TCP/IP type. But I'm not sure of the various other details to complete the setup. Rather I guess, I don't know which is the correct program to run on the Application Server.
    Look at the error text below, and tell me if this is not working because I cannot connect to the program on the application sever?
    RFC connection type: T (TCP/IP)
    Activation type: Start on Application server
    Program: /usr/sap/D05/SYS/exe/run/rfcexec.sec
    Test connection error:
    ERROR                timeout during allocate                        
    LOCATION             SAP-Gateway on host jua-sap-dev / sapgw02      
    DETAIL               no connect of TP /usr/sap/D05/SYS/exe/run/rfcexec.sec from host jua-sa
    COMPONENT            SAP-Gateway                                    
    COUNTER              6321                                           
    MODULE               gwr3cpic.c                                     
    LINE                 5774                                           
    RETURN CODE          242                                            
    SUBRC                    0                                          
    RELEASE              640                                            
    TIME                 Thu May  3 17:01:32 2007                       
    VERSION              2

    Hi Vinodh,
    I am facing the same issue right now with GIS. Did you get the solution for this please?
    Regards,
    Deepesh Datt.

  • How to Deploy Mysql database with JSF Application

    hi,
    I have developed web application using JSF which uses a MySQL as Database.The server is localhost, database name is database_123(or watever!), so everything works fine...now this web application is something which i need to run on other computers as well....so do i have to install mySQL server to the computer from which the war file is deployed? if i don't want to install mysql at any computer, then how can i do?
    Plz help me! and if possible please tell me or post a article.
    Thanx in advance
    jsfgeeks

    This is what I am trying to figure out what is the best way. I am not worrying about making the SQL Server part of my install, we are going to leave that up to the client. I already have the script to create the DB, I am just trying to find the best way to deliver the data to the SQL Server. Like I said I have T-SQL scripts with insert statements but they end up being huge. I am looking at maybe using ApexSQL Script, as it can make an .exe file that creates the DB and installs the data, but it give me an out of memory error because we have so much data.

  • Sap Oracle Connection with other oracle

    Dear Experts ,
    I am trying to connect other oracle machine through database enterned necessary entries in TNS and listerner ora , but i not able to connect
    oracle veriosn is 9.2  and on sap server oracle  is  10.2  , is there any prblm with  version
    Please advise

    Hi Fidel.
    My requirement is i want  to connect to other oracle database with my sapsystem oracle database .
    i am trying to connect thru SQL prompt .i am able to ping the Ip of system , TNSping is also working .
    had made entries in TNS and lister.
    but  when i am trying to connect from SQL  iam  getting error
    ORA-12170: TNS:Connect timeout occurred
    please advice
    Thanks and regards

  • ITunes store no connect with apple application support 2.0.1

    I have found that my store wont connect when I installed the latest Quicktime.  After several trial an errors i pinpointed it down to the latest apple application support.  Store works fine with the old version of 1.5.2.  Just wondering if anyone else has experienced a loss of store loading all of a sudden.  It might be this problem.

    7 september 2010
    For some reason (Firewall / Internet security programs?) the Apple iTunes installation program doesn't install all the necessary components.
    There is a way to manually unpack the installation program to it's 6 different components and install each component one by one.
    (Advantage: you don't need to uninstall or deactivate your security programs)
    Best thing to do is:
    1) Download the iTunes installation program (directly from the Apple website
    http://www.apple.com )to your desktop,
    WITHOUT INSTALLING the iTunes application.
    2) Download he WinRAR decompression/unpack utility (for example from:
    http://download.cnet.com/WinRAR-32-bit/3000-2250_4-10007677.html?tag=recommended Downloads )
    and install it on your desktop for easy use.
    3) Unpack the iTunes installation program, using WinRAR by rightclicking the
    iTunes installation program and choose 'Open with WinRAR'.
    Don't bother with the message from WinRAR about files beïng corrupt
    (these are probably the unreadable 'Apple Mac' files).
    4) You'l see that the original iTunes installation program consists of 6
    different installation programs.
    4 utility programs (necessary for iTunes to work correctly)
    - Apple Application Support (Version: 1.3.2)
    - Apple Software Update (Version: 2.1.2.120)
    - Apple Mobile Device Support (Version: 3.2.0.47)
    - Bonjour (Version: 2.0.3.0)
    and 2 main programs
    - Quicktime
    - iTunes
    Copy these 6 programs to your desktop with WinRAR,
    where they will appear unpacked.
    5) Install each program one by one IN CORRECT ORDER:
    - First the 4 utility programs, one by one.
    - Following this, install QuickTime.
    - Install iTunes as last.
    6) Check the Windows installed programs list to see if they're all installed.
    You can check the versions of te programs by clicking the information toolbar
    for each program.
    Good Luck..!

  • SAP MDM Connection with WebDynpro Java

    Hi,
    I am working with SAP WebDynpro Java (UI) and SAP MDM (Database). I had added the respective jars-
    a) I want to test whether I am able to make a connection to the MDM server. Let me know input parameters (sample source code required) which I need to pass from SAP WebDynpro Java (UI) to make a successful connection to MDM (DB). Please let me know this in details.
    b) After making connection to MDM, I need to write a query where I need to pass Lot No1 & Lot No2 from WebDynpro Java (UI) & check in a MDM table numbers of records existing and later display  the corresponding records details  (sample source code required) in the screen.
    Your inputs will be highly appreciated.
    Thanks.

    Anmol,
    Depending on what version of WAS you are on...you might have WDJ components available that you can use. Just to offer a different view on your question.
    Otherwise follow the links above or the following link to get sample code.
    Read MDM ItemDetail Record in WDJ
    You should get lots of sample code on SDN.
    Thanks,
    Praveen.

  • Security socket connection with the Applications Database Table

    Friends,
    As the security of connection when it is the integration of Oracle Identity Manager and a Oracle database through the database connector (Database Applications Table).
    With the following versions:
    - Oracle Identity Manager 9.1.0.2
    - Oracle WebLogic Server 10.3.5
    - Oracle Database 11.2.0.2
    - Oracle Solaris 10
    Thanks

    I have already posted on the Progress talk forum. Just wanted to know if anyone in this forum had the same problem if so i can get the solution.

  • Cannot establish mysql database connection with j2ee application

    Hello All,
    I started studying J2EE technology about a month back. I have this simple application involving a couple of servlets and jsps. The code is from a reliable source , so I know that there is nothing wrong with the prog code. Now the code uses a simple database, where I am stuck! I just can't connect to the database Mysql.
    I downloaded Mysql database from the mysql site.
    I downloaded JDBC driver for mysql from the same site.
    Can somebody please tell me which files(from the driver that I downloaded) have to be unzipped to jar files to be set in the class location?
    Any help is highly appreciated.
    Thanks
    Starting WithJ2EE

    Hello All,
    I started studying J2EE technology about a month back. I have this simple application involving a couple of servlets and jsps. The code is from a reliable source , so I know that there is nothing wrong with the prog code. Now the code uses a simple database, where I am stuck! I just can't connect to the database Mysql.
    I downloaded Mysql database from the mysql site.
    I downloaded JDBC driver for mysql from the same site.
    Can somebody please tell me which files(from the driver that I downloaded) have to be unzipped to jar files to be set in the class location?
    Any help is highly appreciated.
    Thanks
    Starting WithJ2EE

Maybe you are looking for

  • Filling subnodes in webdynpro for abap

    I have a table with cardinaity of 0.n and a subnode with cardinality of 0.n. I am having trouble filling the subnode.  When binding the data to the sub node I am getting an error u2018Access via 'NULL' object reference not possible.u2019  After metho

  • How to access the URL on page load and open it in the new tab of browser

    Hi All, I am using Jdeveloper 11.1.1.5 and i have one page "Hello.jspx" and one data control consist of two attributes :-one is "id" and other is "url". The datacontrol has been created from the WebService. Now my requirement is : - whenever i run th

  • Rate amendment for depot material  with out going invoice from plant.

    Dear all, as per my scenario we have sent some items to depot before 5 month with excise invoice the price is at 150rupees per unit. and the BED at 16% now the company want to amend the price of the product by 50rupees more. and the excise is to be c

  • Jdev10.1.3: Create an UIX XML Page; Problem: No UIX-Item available...

    hello, i am new to jdev. at the moment i'm trying to complete the tutorial "Developing Applications with Oracle ADF UIX". (http://www.oracle.com/technology/obe/obe9051jdev/uixTutorial/lesson_UIX.htm) my problem: i followed the instructions until i wa

  • Thunder Bolt to Monitor and Firewire to Audio Interface Problem

    Hello. I just purchased 2 studio monitors for producing. I have a audio interface connected from my firewire plug on my 15 inch mabook pro, which are going out to my speakers. Thats all fine, but whenever I plug in my thunderbolt to hdmi adapter goin