How to connect to MySQL back end in Syclo Agentry?

Hello All,
       I have worked on Syclo agentry with Non-SAP back end (MsSQL) and with SAP back end(Work Manager App).
       But now I wanted to connect with MySQL Back end, I know that it is possible, because Syclo can deal with Oracle,IBM Maximo, MsSql and SAP(ERP,CRM...etc)
       But how to connect with MySQL Back end. What is the procedure and the Configuration changes.
       Could anyone help me out to find the way.
Thanks,
Swaroopa.

Swaroopa,
You may also need to create/define your database globals if you are using SDML database tags in your queries.  For example  <<database.getSystemTime>> will evaluate differently for MySQL compared to SqlServer or Oracle
You will want to create a mysql_sd.ini file containing the various database SDML tags and their corresponding MySql values.  I would suggest copying the sqlserver_sd.ini and then update based on mysql syntax.
You will then want to update your Agentry.ini queryConstantFiles entry for the mySql backend settings to point to your new filename.
--Bill

Similar Messages

  • Connection between CRM back end and ASP front end website for Ecommerce

    Hi All,
    I want to establish the connection between a ASP website and CRM back end server(we are replacing th existing ERP back end system with SAP CRM ).
    I want to know whether I have to go with XI or any other connectors provided by SAP to establsih the communication between the existing ASP website and CRM back end server..
    Can anyone please help me out.
    Thank you,

    Okay here is the general concept for your scenario:
    -You will call standard/custom RFC's(could be BAPI's) in the CRM system from the existing application. 
    -You will need to write a new model layer in your ASP application that calls the RFC layer in CRM
    -You decide what data you want to use from CRM in your application
    Let's assume at minimum you will want to use the product master, business partner master, and business transactions.  You will need RFC's/BAPI's for every interaction point where you will consume/publish data to CRM.
    So when an user creates an order from your e-commerce site, you will need to support saving an order in CRM.  This is example of how you need to map out each function in your existing site to a part of the CRM system.  Since we don't know what your site currently does, this is something you would have to do.
    Once you have mapped out the business level data to the CRM system, then you can evaluate where you will need a BAPI and/or RFC call.  Once that is done, then you can look at the CRM system and see what standard pieces can be called.  Then everything else is custom development.  Your ASP application will call CRM via RFC. 
    It is possible to do what you want to do, but it is going to require a lot mapping work and a fair amount of development effort to integrate the two pieces.  I don't know if you might be better off looking at the SAP Internet Sales Solution instead so you could focus only customizing that application, instead of worrying about an integration problem.  It just depends on how much special functionality your existing e-commerce site has today.
    My general recommendation would be for you to hire a consultant that has done an SAP e-commerce project using SAP CRM in the past and let them guide you on the implementation issues.  An on-site resource could better answer your "high-level" questions.
    However if you have more questions please ask and I will try to answer to the best of my knowledge.
    Good luck,
    Stephen

  • Two SRM systems connected to One back end system

    Hi..
    Note: I have posted this message earlier ......but couldn't find that. I am just reposting the message:
    In our quality environment, we have two SRM and two backend systems. One for testing purpose and other for training purpose. We are planning to remove one back end system and connect both the SRM systems to one backend system.
    1. Is it possible to have this landscape?
    2. In SRM & R/3 we can define two RFC connnections but from R/3 side, I am not sure how the system will determine the respective RFC connection during GR or any other process.
    3. Are there any other difficulties?
    We are in SRM 4.0 using Extended classic scenario. We are using SRM for processing shopping cart, Po and confirmations.
    Please advise.
    Thanks.

    Hi Prashanth,
    is  very much possible.
    for this you need to configure the partner profiles.
    need to define port
    need to configure inbound paramters and outbound parameters.
    we20 - create partner profiles.
    define outbound parameters and inbound parameters of the message type.
    we21 - define port.
    under Transactional RFC.
    and create a distribution model and add message type.
    revert back to me if any problem still you find.
    regards
    sai

  • How to Connect to Mysql databse from Java Studio Enterprise 8

    Hello everybody,
    I have a database in mysql in linux.I have downloaded Java Studio Enterprise 8.
    How is it possible to connect to mysql.
    Could you tell the procedure .., I would be really thankfull
    From
    Ranjitha Rao

    hi
    u can connect to Mysql with the following code
    Class.forName("com.mysql.jdbc.Driver");
                   String url1 = "jdbc:mysql://localhost/<database name>";
                   String user1 = "root";
                   String pass1 = "";
                   Connection con1=DriverManager.getConnection(url1, user1, pass1);

  • How to know which radiobutton is selected in case of dynamic UI generation and how to pass it to back end?

    This is how I have written for dynamically generating radiobuttons. I have some categories on left view, by selecting which, i will get corresponding questions and it generates 5 options, and user selects one and I need to pass it to back end. I am using IModifiableSimpleValueSet for filling the radiobuttons.
    ISimpleTypeModifiable myType = wdThis.wdGetAPI().getContext().getModifiableTypeOf("Ans.option");
      IModifiableSimpleValueSet values = myType.getSVServices().getModifiableSimpleValueSet();
    values.put(d,wdContext.nodeAns().getElementAt(d).getAttributeValue("option").toString());
    Kindly help, if I am missing something.
      IWDRadioButtonGroupByKey radioKey = (IWDRadioButtonGroupByKey)view.createElement(IWDRadioButtonGroupByKey.class,           "ansRadio"+radio_count++);
      IWDMatrixHeadData matrixHead_radio = (IWDMatrixHeadData)radioKey.createLayoutData(IWDMatrixHeadData.class); 
      IWDAction radioAction = wdThis.wdCreateAction(IPrivateRightView.WDActionEventHandler.SELECT_ANS, radioKey.getId());
      wdComponentAPI.getMessageManager().reportSuccess("radio id"+radio_count);
      radioKey.bindSelectedKey("Ans.option");
      radioKey.mappingOfOnSelect().setString("optionID", radioKey.getSelectedKey());
      wdContext.currentContextElement().setSel_ans(wdContext.currentAnsElement().getOption());
      radioKey.setColCount(1);
      questContainer.addChild(radioKey);

    Hi Jun,
    I have to prepare a questionnaire. Some set of questions will be there in backend having 5 options. Based on category I have to fetch questions and its corresponding answers. Ans is the node which I am filling with choices, based on questions.

  • How to connect to mysql from java app

    hi
    please say the procedure for connecting to mysql database from java app.
    .) what should i give in environmental variables
    .)where can i find the driver class for the mysql
    .) syntax of the url
    eg:- DM.getConnection("jdbc:mysql:..............what comes here..............");

    You can also get connections from a DataSource. Simple example:
                MysqlDataSource msds = new MysqlDataSource();
                msds.setUrl("jdbc:mysql://127.0.0.1:3306/dbdame");
                msds.setUser("user");
                msds.setPassword("pass");
                Connection c = msds.getConnection();Explore your options and be sure to consider connection pooling.

  • How to connect to mysql which is install in server

    I already download the "driver" for mysql ( NetDirect). But face problem when want to run the driver.
    I use :
    String SQL_DRIVER = "my.sql.Driver";
    try
    Class.forName(SQL_DRIVER);
    con = DriverManager.getConnection("jdbc:odbc:maga","", "");
    catch ( ClassNotFoundException cnfex )
         System.err.println(
    "Failed to load JDBC/ODBC driver." );
         cnfex.printStackTrace();
         System.exit( 1 ); // terminate program
         catch ( SQLException sqlex )
         System.err.println( "Unable to connect" );
         sqlex.printStackTrace();
         System.exit( 1 ); // terminate program
    But the program pop up the error :
    Failed to load JDBC/ODBC driver.
    java.lang.ClassNotFoundException: my.sql.Driver
    I don't know how to correct it, anyone has any idea?
    ps : anyone know how to set the path and view the path when using CodeWorrior?
    Thankz

    I also found this link that might have a couple of suggestions.
    http://forums.java.sun.com/thread.jsp?forum=48&thread=148201
    you should search the JDBC forum for similar problems depending on your OS, driver, etc.
    Jamie

  • How to connect to mysql database using a proxy

    Folks,
    I wrote a program to connect to both webpage and mysql databases. Because my internet has a firewall (proxy) I set up the internet connection like this:
          System.getProperties().put( "proxySet", "true" );
          System.getProperties().put( "proxyHost", proxyHost);
          System.getProperties().put( "proxyPort", proxyPort);
          Authenticator.setDefault(new MyAuthenticator());The http connection works fine. However the mysql database connection gives me an error:
    com.mysql.jdbc.CommunicationsException: Communications link failure due to underlying exception:
    ** BEGIN NESTED EXCEPTION **
    java.net.SocketException
    MESSAGE: java.net.ConnectException: Connection timed out: connect
    STACKTRACE:
    java.net.SocketException: java.net.ConnectException: Connection timed out: connect
            at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:156)
            at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:276)
            at com.mysql.jdbc.Connection.createNewIO(Connection.java:2666)
            at com.mysql.jdbc.Connection.<init>(Connection.java:1531)
            at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:266)
            at java.sql.DriverManager.getConnection(Unknown Source)
            at java.sql.DriverManager.getConnection(Unknown Source)
            at myapplication$LongTask$ActualTask.<init>(app.java:182)
            at myapplication$LongTask$1.construct(app.java:121)
            at myapplication.SwingWorker$2.run(SwingWorker.java:107)
            at java.lang.Thread.run(Unknown Source)
    ** END NESTED EXCEPTION ** What can I do? Do i need to setup a SOCKS Proxies or something?
    Thanks a lot!!

    SOCKS it is.

  • How to connect the Mysql database?

    Hi,
    I am trying to create the DATABASE source. I'll need to connect mysql db.
    This is correct?
    jdbc:mysql:<db>:<port>
    And what i do the other changes?
    Please advice me.
    Thanks!
    Regards,
    Deva

    You would also need to install the JDBC driver for MySQL - see the admin guide for details.
    HOWEVER ... there are a couple of bugs which will prevent SES from crawling MySQL databases: 6845168 and 6972574. These will be fixed in the next (10.1.8.4) release, or you can ask Oracle Support for patches.

  • Single Portal to connect to multiple back end ECC system

    Hi Experts,
    I want to connect existing SAP Portal 7.3 to new ECC(ECC EHP 5) System for ESS MSS.
    The requirement is that my existing backend system (ECC EHP 5 ) should also exist. i.e. I should able to use current portal to connect to existing SAP ECC System as well as new ECC System with single portal .
    Please let me know how it works in ABAP Webdynpro?
    Do let me know how this can be achieved ? Is the same portal url be used to access the 2 different backend system for ESS MSS.
    -Pravesh

    Hi Pravesh,
    for using different backend systems in the same portal, just adapt these systems in your system landscape and define your system aliases in appropriate iViews or write a DSR service.
    Pravesh Deshbhratar wrote:
    Please let me know how it works in ABAP Webdynpro?
    this mechanism is not bound to a specific programming paradigm or technology.
    regards

  • Regarding connection between front end HTML and back end SQL 7.0

    Hi!!
    I am working on the project 'ERM'. I have designed 12 forms using HTML. Can u please give me brief idea how to establish the connection between a back end and front end i.e. between HTML and SQL 7.0. If possible can u provide me the source code for the same.
    I will be very thankful to you.
    Thanks,
    Jigar.

    Read up about multi-tier applications.
    You need servlet and JSPs for the server-side presentation layer, some classes for the business logic, and some mor for the persistence layer either using JDBC or some framework like Hibernate.

  • How to create single user and bulk users from back end in ebs r12?

    Hi all,
    how to create users from back end in oracle application R with responsibilities?
    Thanks in Advance,
    Sandeep
    Edited by: user2584435 on 17 Nov, 2009 11:14 PM
    Edited by: user2584435 on 17 Nov, 2009 11:14 PM

    Hi,
    I have created user san1 with below mention pkg and added sysadmin with below mention pkg.
    BEGIN fnd_user_pkg.CreateUser(x_user_name =>'san',
    x_owner =>'CUST',x_unencrypted_password => null,
    x_description => 'new_desc2',x_email_address => '',x_fax => '');
    end;
    DECLARE
    v_user_name VARCHAR2(30) := upper('&Enter_User_Name');
    BEGIN
    fnd_user_pkg.addresp(username => v_user_name
    ,resp_app => 'SYSADMIN'
    ,resp_key => 'SYSTEM_ADMINISTRATOR'
    ,security_group => 'STANDARD'
    ,description => 'Auto Assignment'
    ,start_date => SYSDATE - 10
    ,end_date => SYSDATE + 1000);
    END;
    Q. I am able to login but dont having any responisibility,why?
    Regards
    Sandeep.

  • How to connect servlet to mysql database

    Hi all,
    I am new to mysql. After many difficulty I have created a database with table in MySql. Now I want to connct it to a servlet. How do I do it?
    Can anyone tell me the steps, including the step to create MySql datasource
    thanks

    thanks for the reply. I know the basics of jdbc and can connect with sqlserver. Bt how to connect with Mysql? I mean what do I provide in dsn unless I create a MySql datasource. I cant find any tutorial which teaches how to create MySql datasource. Can you give me any link???
    thanks

  • Dynamically switch back-end servers...

    Hi, ours is a middleware layer that connect directly to back-end systems. There
    is a new layer coming in between our layer and one of our back end system. I want
    to device a system that will skipp this layer and directly start communicating
    to the back-end programatically. That is at run time without getting the servers
    down and changing the configuration to send to the back end system straight.
    One way of doing this is shared memory where it read a value and depending on
    this value set will route requests thru this new layer or directly send it to
    backend. My only concern is, under high load conditions multiple processes of
    the same server instance will keep on accessing this value. May be there are lot
    other ways of doing this programmatically.
    I want to know if there is any other way of doing this in the tuxedo environment?
    thanks,
    Sachin.Rane

    Hi Sachin,
    You don't give details of your configuration (i.e. SSSQ or MSSQ) but perhaps the
    following will work:
    Include an additional service that is unique to your server (e.g. "ADMIN<servername>")
    and when you want to switch make a call to that service (using ud32, or write
    your own client). In this way the server will only act on receiving the message,
    and will not have to keep checking shared memory.
    Let us know if this solves your problem - if not please describe the situation
    in more detail (for example, is the additional layer Tuxedo-based? etc.).
    Malcolm.
    "Sachin Rane" <[email protected]> wrote:
    >
    My requirements is not this. I want skip this layer between my layer
    and backend
    when I want to. It is not as if I want to switch at start up if I am
    not able
    to connect but to change the connection when I want to and no longer
    use it again.
    "roopesh" <[email protected]> wrote:
    You can put the logic inside tuxedo servers tpsvrinit function
    to dynamically connect to the backend and when connection fails
    then it will retry for a specified no of times to that backend
    before taking connections to the backup database.
    "Sachin Rane" <[email protected]> wrote:
    Hi, ours is a middleware layer that connect directly to back-end systems.
    There
    is a new layer coming in between our layer and one of our back end
    system.
    I want
    to device a system that will skipp this layer and directly start communicating
    to the back-end programatically. That is at run time without getting
    the servers
    down and changing the configuration to send to the back end systemstraight.
    One way of doing this is shared memory where it read a value and depending
    on
    this value set will route requests thru this new layer or directlysend
    it to
    backend. My only concern is, under high load conditions multiple processes
    of
    the same server instance will keep on accessing this value. May bethere
    are lot
    other ways of doing this programmatically.
    I want to know if there is any other way of doing this in the tuxedo
    environment?
    thanks,
    Sachin.Rane

  • User,Role Sync with back end Error.

    Hello,
    I am connecting a new back end ECC system for an existing RAR system with 2 backend systems.
    I get the following error message. I have configured the Jco to the new system and it tests O.K.
    " Error while executing the Job:Interface Controller does not exist for Component Instance "
    Is it an configuration issue with the RTA at the back end ?
    Thanks
    Vidyar

    Hello ,
    Please check the following steps for the error.                                                                               
    1. Make sure that SLD is up and running.                               
    2. JCO's are properly configured and are successfully pinged and tested.
    3. After verifying the above steps, Restart the J2EE server.                                                                               
    TEST & PING the JCO in Web Dynpro =>Content Administrator =>Maintain JCOs. This JCO has to be the one which you are using for the connector for which you are running the SYNC job.
    Periodically the JCo destinations, as part of the Netweaver framework, sometimes fail.  Recreating them or restarting the system can make them work again.                                                      
    Regards
    -Ranjiv

Maybe you are looking for

  • 2009 Macbook Pro Reinstall Freezing

    My folks Mid 2009 15" MacBook Pro's hard drive failed.  I replaced with an SSD (using the computer to type this).  Initially I installed OS X 10.9.3 and could not get past the registration screen.  It looped by getting to the iCloud login screen then

  • Needs to be added one field in VL01n in ITEM level. Please. Quick answer!

    Hi Experts, I need to add one field in "Loading and shipment" Tab in ITEM level. Is there any screen exit or BADI to achieve it. I got one BADI LE_SHP_TAB_CUST_ITEM. But while checking in my system through SE18/SE19, I am getting message like “Does n

  • Need suggestions for proofreading online help files

    I have created online help docs off an on for many years... and have contemplated this issue several times and never come up with a really good answer. Right now, the product manager is tryiing to proof one of the online help files that i've COMPLETE

  • Can not activate a Datasource

    Hello all, I have in the development system the datasource 2LIS_02_ITM. But the status of the datasource is "Modified". I have replicated the datasource from the source system (where it is ok) But it is not working. Can you please help me to activate

  • IPhone 4: When playing a podcast and I exit it closes ipod.

    Question: When I'm listening to my iPod podcast and I go to my mail (for example) it closes or pauses my iPod podcast. Is it suppose to do that? I thought it was suppose to run just like Pandora in the background?!