Funambol (sync4j) connection to sap r/3 system

Dear Experts,
   Hi.. I have a java middleware for mobile application(Funambol). I need to connect it to a sap backend system(R3)
    The funambol middleware requires
    Remote Database URL:
    Driver Information
of the remote backend system that i want to connect to.
How can i do this
can u pls help
Regards,
Vinod.

Dear Experts,
   Hi.. I have a java middleware for mobile application(Funambol). I need to connect it to a sap backend system(R3)
    The funambol middleware requires
    Remote Database URL:
    Driver Information
of the remote backend system that i want to connect to.
How can i do this
can u pls help
Regards,
Vinod.

Similar Messages

  • Connection from SAP to our systems involving 2 saprouters

    connection from SAP to our systems involving 2 saprouters
    we have 1 saprouter inside a dmz and another for connecting to our systems.
    we are guessing that this is possible
    SAP (sapserv2) -
    SNC----> saprouter1 (DMZ, SNC connection) -
    > saprouter2 (P * * 3200) ---> SAP1, SAP2...
    But how could we do that?
    How can we let SAP know that they need to connect to 2 saprouters instead of 1?
    The "Mantain System Data" in sap service marketplace only lets us introduce 1 saprouter.
    And how should be the saproutettab of the 2 saprouters?
    saprouter1:
    KT "p:CN=sapserv2, OU=SAProuter, O=SAP, C=DE" 000.00.00.00 *
    P * saprouter2 3299
    saprouter2:
    P * * 3200
    P * * 3600
    is that possible?
    Many thanks !!

    Hi
    As far as my experience goes with this you have to maintain both router information in oss1 tcode
    Also mention second router on the second router tab on the SMP data
    I hope it should work with that as it will automatically create router table

  • Problem in connecting to Sap R/3 system through Crystal Reports

    Hi
    while I am connecting to Sap R/3 system through crystal reports i am getting an error
    (" you do not have a necessary rights to design reports against sap system ")
    can anyone sort out this problem?
    Thanking in advance

    you need to add some transport files while installing the integration kit for sap solutions.check whether all transport files are added

  • Portal application connecting backend SAP R/3 system

    Hi All,
               I am developing one portal application through NWDS. It's JSPDYNPage component.The applications functionality is basicaly is to connect it to backend SAP R/3 system & fetch some data in aparticular table & display that data in a tableview format on one JSP& also when i click any row of the tableview then details of that row should get displayed on the next JSP. So i reached till develpoing a code that connnects to Backend SAP R/3.(Basicaly coding of connection part is done). Now i need to test this code, to check whether it is fine or not? NWDS doesnt give nay error, not compile also or not runtime error also. It simply shows the output as a blank page, where it is supposed to display one line of text in textview(i coded this in my JSP).But as i said it displays a blank page. i tried to debug the application , but debugging also not worked.I performed the debugging twice in right way. The code was not debugged, it run the same way as it normally runs when debugging is off & shown the blank page. I also have done all the the settings or prerequisites for debugging properly. I am stuck at this point now.search many documents , but no relevant help has been received. Can anyonehlep me with this. i am putting below the code for JSP, JSPDYNPAGE component as well as portalapp.xml. Can anyone guide me with this, whhere i am making mistake? what should i change in this?
    JSPDYNPAGE code
    package com.lti.portal;
    //import java.util.ArrayList;
    import com.sapportals.htmlb.*;
    import com.sapportals.htmlb.enum.*;
    import com.sapportals.htmlb.event.*;
    import com.sapportals.htmlb.page.*;
    import com.sapportals.portal.htmlb.page.*;
    import com.sapportals.portal.prt.component.*;
    import java.util.ArrayList;
    import com.sap.mw.jco.IFunctionTemplate;
    import com.sap.mw.jco.JCO;
    import com.sun.corba.se.internal.core.Response;
    public class Connection_R3 extends PageProcessorComponent {
    public DynPage getPage(){
    return new Connection_R3DynPage();
    public static class Connection_R3DynPage extends JSPDynPage{
    private Conn_R3 myBean = null;
    public JCO.Client mConnection;
    public JCO.Repository mRepository;
    public ArrayList al = new ArrayList();
    public String output;
    public String Ans;
    public static String BEAN_KEY="myBean";
    public void doInitialization(){
    IPortalComponentRequest request =(IPortalComponentRequest) this.getRequest();
    IPortalComponentContext context = request.getComponentContext();
    IPortalComponentProfile profile = context.getProfile();
    //create & initialize the bean.
    Conn_R3 test_bean= new Conn_R3();
    test_bean.setans("3");
    // put the bean into application context.
    context.putValue(BEAN_KEY,test_bean);
    conn();
    //IPortalComponentResponse res = (IPortalComponentResponse)this.getResponse();
    //for(int i=0;i<al.size();i++)
    //res.write(" "+al.get(i).toString());
    public void doProcessAfterInput() throws PageException {
    public void doProcessBeforeOutput() throws PageException {
    this.setJspName("Connection_R3.jsp");
    public ArrayList conn() {
    IPortalComponentRequest request =(IPortalComponentRequest) this.getRequest();
    IPortalComponentContext context = request.getComponentContext();
    IPortalComponentProfile profile = context.getProfile();
    Conn_R3 sample_bean = new Conn_R3();
    sample_bean.setans("5");
    //context.putValue(BEAN_KEY, sample_bean);
    //r3-accessing
    //connect_to_r3();
    try {
    // Change the logon information to your own system/user
    mConnection = JCO.createClient("800", // SAP client
    "********", // userid
    "******", // password
    null, // language
    "*******", // application server host name
    "**"); // system number
    mConnection.connect();
    //System.out.println(mConnection.getAttributes());
    mRepository = new JCO.Repository("ABC", mConnection);
    } catch (Exception ex) {
    ex.printStackTrace();
    System.exit(1);
    JCO.Function function = null;
    JCO.Table codes = null;
    try {
    function = this.createFunction("ZSAMPLE");
    if (function == null) {
    System.out.println("ZSAMPLE" + " not found in SAP.");
    System.exit(1);
    String num1 = "7";
    String num2 = "9";
    //String ans;
    function.getImportParameterList().setValue(num1,"My_import");
    function.getImportParameterList().setValue(num2, "My_Import");
    mConnection.execute(function);
    Object name =function.getExportParameterList().getValue(Ans);
    output=name.toString();
    sample_bean.setans(output);
    //sample_bean.setans(output)
    //al.add(name);
    //store values into strings
    //pushing of values we get from r3 into awt
    } catch (Exception ex) {
    ex.printStackTrace();
    System.exit(1);
    disconnect_r3();
    return al;
    public void connect_to_r3() {
    public JCO.Function createFunction(String name) throws Exception {
    try {
    IFunctionTemplate ft =
    mRepository.getFunctionTemplate(name.toUpperCase());
    if (ft == null)
    return null;
    return ft.getFunction();
    } catch (Exception ex) {
    throw new Exception("Problem retrieving JCO.Function object.");
    public void disconnect_r3() {
    mConnection.disconnect();
    //**********************<b>Code for BEAN</b>****************************
    package com.lti.portal;
    import java.io.Serializable;
    public class Conn_R3 implements Serializable {
    public String answer;
    public void setans(String a)
    answer=a;
    public String getans()
    return answer;
    ///////////////////////<b>Code for JSP</b>*****************************
    ><%@ taglib uri= "tagLib" prefix= "hbj" %>
    <jsp:useBean id="myBean" scope="application" class="com.lti.portal.Conn_R3" />
    <hbj:content id="myContext" >
    <hbj:page title="PageTitle">
    <hbj:form id="myFormId" >
    <hbj:textView
    id="Welcome_message"
    text="<%=myBean.getans()%>"
    design="STANDARD" >
    </hbj:textView>
    </hbj:form>
    </hbj:page>
    </hbj:content>
    /////////////////////////////////<b>Portalapp.xml</b>*****************************************
    application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="Address_comp">
          <component-config>
            <property name="ClassName" value="com.lti.portal.Address_comp"/>
          </component-config>
          <component-profile>
          <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>

    Hi,
       Do onething, please refer this <a href="http://www.i-barile.it/SDN/JCoTutorial.pdf">JCo Tutorial</a> as well as <a href="http://www.apentia-forum.de/viewtopic.php?t=1962&sid=9ac1506bdb153c14edaf891300bfde25">Link</a> also.
    Regards,
    Venkatesh. K
    /* Points are Welcome */

  • Connection from SAP 4.0B System to IBM MQ Series

    Hi
    is it possible to connect <b>SAP 4.0B</b> System with <b>IBM MQ Series 6.0</b>,is the connection supported by SAP 4.0B?
    If supported I am confused with what is the <b>RFC Destination</b> to be used
    is it <b>R/3 Connections</b> or <b>TCP/IP connections</b>
    Thanks in advance
    Warm regards
    Rajasekhar

    Hi Anup
    Thanku for your valuable input, here in the TCP/IP connections can you please suggest what are the
    <b>ACTIVATION TYPE</b> to be used there are 4 radio buttons, is it the
    <b>Registered Server Program</b> OR
    <b>Start On Application server</b>OR
    <b>Start on Explicit Host</b> OR
    <b>Start on Front End Work Station</b>
    if it is the registered server program what are the values to be used for <b>PROGRAM ID</b>
    is it required to make any changes in <b>SAPRFC INI File</b>     
    Thanks in advance
    Warm regards
    Rajasekhar

  • How to check connection from SAP to reservation system?

    Dear Experts,
    May I know how to check whether the connection between SAP and the reservation system has been set up and ready to use?
    Thanks.

    Hi
    You need to check the identification code issued to the enterprise by AMADEUS must be entered in the R/3 Customizing for Travel Planning under Master Data u2192 Control Parameters for Travel Planning u2192 Define sales offices and Define API access parameters.
    External reservation system In the Travel Planning subcomponent Travel Management accesses an external reservation system connected to R/3 to carry out the queries on available travel services and to book the selected services. The reservation system currently available is the AMADEUS Global Travel Distribution system.
    For more information, see Technical Prerequisites for Travel Planning--
    Technical Prerequisites for Travel Planning
    Before you can use Travel Planning fully, a number of internal R/3 and external prerequisites or settings must be fulfilled.
    Connection to an External Reservation System
    The online booking function in Travel Planning is based on the cooperation with external reservation systems that are used to communicate with the service providers. The R/3 user has access to the following functions via the connection to an external reservation system:
    u2022 Availability query of travel services
    u2022 Transfer of additional information about selected travel services
    u2022 Price information
    u2022 Processing of reservation by the respective provider
    u2022 Synchronization of the data in SAP Travel Planning if external booking changes have been made
    In the current release the external reservation system in use is AMADEUS Global Travel Distribution. AMADEUS is a subsidiary of Lufthansa, Air France, Continental Airlines and Iberia. The reservation system it provides is in worldwide use and 160,000 terminals in 37,000 travel agencies and ticket sales centers in over 130 countries are connected to it.
    In order to carry out online booking via AMADEUS the following must have been carried out:
    u2022 Your enterprise must have signed an agreement with AMADEUS for the use of the interface and be registered at AMADEUS with a user ID
    u2022 A network connection to the AMADEUS computer center must have been opened
    u2022 The identification code issued to the enterprise by AMADEUS must be entered in the R/3 Customizing for Travel Planning under Master Data u2192 Control Parameters for Travel Planning u2192 Define sales offices and Define API access parameters.
    For questions about registration, contact the SAP & AMADEUS Competence Center:
    SAP & AMADEUS Competence Center ACC 02 Neurottstrasse 16 69185 Walldorf Germany
    Cheers
    Mukta

  • Error " Could not connect to SAP R/3 system"

    HI:
    We have been having some problems with our portal lately and most recently the error that we get is "Could not Connect to SAP R/3 "
    The system landscape settings have not been changed.
    Thanks for your responses.
    Rachel

    When I log into the portal and launch the MSS iviews I get the error ( Could not Connect to SAP R/3).
    Similarly when I launch ESS I get the following error:
    I see that it is lost connection with our SAP R/3 HR system.  And system parameters that are available now
    are just SAP BW, SEM and CRM..
    So looks like we need to re-establish the connection..(?)
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    System 'pcd:portal_content/wwy.KeyStone/com.nrx.pct.vip.systems.sapr3' alias 'SAP_R3_HumanResources' not found. Please check the system object and the alias..
    See the details for the exception ID in the log file
    com.sap.portal.appintegrator.sap.IAC::IAC/SSOLayer
    Parameter Dump
    ApplicationParameter  
    ClassName  com.sapportals.portal.appintegrator.layer.SingleSignOnLayer
    CodeLink  com.sap.portal.appintegrator.sap.bwc.IAC
    DebugMode  false
    DebugMode.default  false
    DebugMode.type  select[false,true]
    ExportParameters  Authentication, LogonUser, RequestMethod
    ForcedRequestLanguage  
    IAC  PP_MY_Profilematchup
    MandatoryParameters  System, IAC
    NavPathUpdate  false
    NextLayer  IAC/ConnectionLayer
    OptionalParameters  ApplicationParameter, DebugMode
    SSO2Template  
    System  SAP_R3_HumanResources
    System.type  lookup:com.sapportals.portal.appintegrator.lookup.SystemLookup
    TopLayer  IAC/SSOLayer
    UserMappingTemplate  login=<MappedUser>&password=<MappedPassword>&~mysapcomusesso2cookie=0
    Wizard.MandatoryParameters  System, IAC
    Wizard.OptionalParameters  ApplicationParameter
    X509Template  
    buildTree  false
    com.sap.portal.reserved.iview.IsolationMode  URL
    com.sap.portal.reserved.iview.WizardURL  pcd:portal_content/com.sap.pct/admin.templates/iviews/editors/com.sap.portal.defaultIViewWizard
    com.sap.portal.appintegrator.sap.IAC::IAC/SSOLayer
    MandatoryParameters
    System   SAP_BW SAP_BW_Q22 SAP_BW_SAND SAP_CRM SAP_CRM_SAND SAP_SEM 
    Internet Application Component (IAC)   
    OptionalParameters
    Application Parameters  
    DebugMode  No Yes

  • Error while connecting backend SAP 4.7 system to GRC 5.3 system

    Hi Experts,
    I am Facing an Connection Issue  while connecting back end SAP 4.7 system to GRC 5.3 system
    Please help me out with Screen screen shots and process  to be followed while connecting both system,
    Thanks in Advance,
    Ram

    Hi Daya,
    you really REALLY want to visit this page and watch & read for a few days before you do anything in the system.
    http://wiki.sdn.sap.com/wiki/display/BPX/Governance%2CRisk%2CandCompliance%28GRC%29How-ToGuides
    You can easily break stuff in a way that's hard to fix, so I suggest you take your time.
    Frank.

  • RFC connection from SAP to AS400 system

    Hi ,
    I am working on a Interface requirement wherein I need to get connected to AS400 fetch some data and update in Shipment Document in SAP at runtime.
    I am thinking about calling RFC but not sure whether it will work or not.
    Has anybody worked on the requirement like this.
    please help me out with this regard.
    thanks in Advance,
    Nitin

    Hi Nitin,
    RFC works other way around. Means you can login from other system to SAP to get the data using RFC. For your requirement you can ALE.
    Regards,
    Atish

  • Custom iView Connecting to SAP R/3 system using JCA !!

    I did not get any response on the Portal forum so posting it again in the WebAs forum ...
    Environment : SAP Portal : EP 6.p SP2
    I am using JCA to connect to the SAP backend systems.
    The following code connects to the backend ...
    IConnectionFactory connectionFactory = (IConnectionFactory) ctx.lookup("EISConnections/SAPFactory");
    IConnectionSpec spec = connectionFactory.getConnectionSpec();
    ((Map) spec).put("client", "CLIENT_NUMBER");
    ((Map) spec).put("UserName", "YOUR_LOGIN_ID");
    ((Map) spec).put("Password", "YOUR_PASSSWORD");
    ((Map) spec).put("logonmethod", "UIDPW"); // or SAPLOGONTICKET
    ((Map) spec).put("Language", "YOUR_LOGIN_LANGUAGE");
    ((Map) spec).put("ashost", "YOUR_APPLICTION_SERVER_NAME");
    ((Map) spec).put("sysnr", "YOUR_SYSTEM_NUMBER");
    IConnection client = connectionFactory.getConnectionEx(spec);
    I want to use the message server for load balancing. Is there a way to specify the message server and logon group ??
    These is the code to get the BAPI information ...
    // Create interaction
    IInteraction interaction = client.createInteractionEx();
    IInteractionSpec interactionSpec = interaction.getInteractionSpec();
    interactionSpec.setPropertyValue("Name", "REMOTE_FUNCTION_MODULE_NAME");
    // Create IFunction instance
    IFunctionsMetaData functionsMetaData = client.getFunctionsMetaData();
    IFunction function
    = functionsMetaData.getFunction("REMOTE_FUNCTION_MODULE_NAME");
    // CCI api only has one datatype: Record
    RecordFactory recordFactory = interaction.getRecordFactory();
    MappedRecord importParams
    = recordFactory.createMappedRecord("CONTAINER_OF_IMPORT_PARAMS"
    and the following code populates the input table parameters ...
    IStructureFactory structureFactory
    = interaction.retrieveStructureFactory();
    IRecordSet table
    = (IRecordSet) structureFactory.getStructure(
    function.getParameter("TABLE_NAME").getStructure());
    table.insertRow();
    table.setString("COLUMN_NAME_1", "VALUE_1");
    table.setString("COLUMN_NAME_2", "VALUE_2");
    table.insertRow();
    table.setString("COLUMN_NAME_1", "VALUE_1");
    table.setString("COLUMN_NAME_2", "VALUE_2");
    importParams.put("TABLE_NAME", table);
    The above code causes performance issues in the SAP system because the code is calling the following other BAPI through the JCA java api ...
    1) RFC_GET_FUNCTION_INTERFACE
    2) DDIF_FIELDINFO_GET
    Looks like, the JCA library is not caching the metadata information for the BAPI instead for each call, it is calling other BAPI's to get the BAPI metadata information. Also, if I reuse the same IFunction class instance for all connections (Using Singleton Class), it seems to make less "RFC_GET_FUNCTION_INTERFACE" bapi calls.
    The problem is with the input table structure which I need to populate for the BAPI. Every time the structure is populated, the internal BAPI's are getting called and it takes more time to populate the structure as number of users increases.
    I am looking answers to the following questions ...
    1) Specify message and logon group in JCA
    2) Provide a way to cache the metadata for the BAPI's
    More details about JCA can be found here ...
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/bc9baf90-0201-0010-479a-b49b25598ebf
    I appreciate your help !!
    Thanks
    Bhabesh Patel

    we updated JCO to the latest version for EP 6 SP2 Patch 8 and it fixed the issue.

  • BW connections in SAP Portals after system copy

    Hello,
    A system copy was made on BW and R/3 systems (production backups where copied into development environments).
    After the copy, the BW reports in SAP Portals no longer execute, message "The requested resource does not exist" is shown. Does any body knows why? Is it possible that an RFC destination is missing?
    Regards,
    Sónia

    Hi Peter
    Did you get  the solution for this problem?
    If yes give the solution.
    Regards
    Niranjan

  • How to connect SAP R/3- System with SAP NetWeaver Portal (2004s)?

    Hello to all,
    sorry, can someone help me? How can I connect SAP R/3- System with SAP NetWeaver Portal (2004s)?
    Thanks and regards,
    Galyna

    Hi,
    In previous link contain this info
    This describes how to connect an SAP R/3 system to SAP NetWeaver Portal using an iView
    1)      Go to System Administration
    2)      Go to System Configuration
    3)      Go to Portal Content (Right Side Panel), open that folder.
    4)      Right Click on Portal Content, a Panel is displayed select "System (from Template)".
    5)      That will display a new view on right side, now select "SAP system using dedicated application server" from
    the existing templates. (Other templates are possible - for example, load balanced or through a SAProuter connection string).
    For this exercise, we'll use the simplest type.
    6)      Choose next
    7)      Give the System Name and System Id (which are mandatory fields) incase you want to give any brief notes
    about the system then give them in the "Description" field.
    8)      Open the Newly Created System.
    9)      Now when you want to create a New System, you have to fill four Properties they are:
    "Connector" - contains basic connectivty details
    "Internet transaction Server (ITS) - if you wish to use SAPGUI for HTML and/or IACs",
    "Web Application Server" - if you wish to access BSPs and/or Web Dynpro for ABAP and
    "User Management".
    You also need at least one "System Alias" has to be defined from the Display drop down menu.
    Make sure you have set end user access in the Permissions drop down menu to all users who need to access the system
    10)  Select "Connector" property, now fill the required fields such as:
    a)      Application Host (should be fully qualified hostname) - Give the R/3 "Application Name",
    which can be obtained from the SAP Logon Pad (check what R/3 system you are using, right click on it , go to the properties,
    it will open a window which has the Application Server Name.
    b)      Logical System Name - Give the logical name as defined in the backend system
    c)      SAP Client - Check the Client in the backend system and give the appropriate number (3 digits)
    d)      SAP System ID(SID)* - Check the R/3 properties and give the check for System ID
    e)      System Type* - Since we are connecting to R/3, select SAP_R3 system.
    f)       System Number - This is a two digit number that you can find in the SAP Logon Pad
    11)  Select "Internet transaction Server (ITS)" property, now fill the required fields like
    a)      ITS Description à Give some Description
    b)      ITS Host Name - Same as "Application Host" of R/3 (when integrated ITS) and should be attached with the
    port number of ITS Server (to get port number detailed description is given below). ex: hostname : port number
    c)      ITS Path - To get the path along with the port number you have to Log on to R/3 system. Use the
    Transaction Code "SICF", it opens a new window go to:
          default_host -> sap -> bc -> gui -> sap -> its -> webgui -> SAP GUI for HTML -> right click on
    that and click "Test Service'. This will open a new window, on the address bar you will find the "port number", and
    the path something like (/sap/bc/gui/sap/its/webgui). Use the path after the port number.
    d)      ITS Protocol - There are two protocols "http" & "https", select the appropriate protocol which is
    visible when you opened "Test Service" window.
    12)  Select "Web Application Server" property , now fill the required fields like
    a)      Web AS Description -> Give some Description
    b)      Web AS Host Name - same as ITS Host Name
    c)      Web AS Path - usually /sap/bc/bsp/sapd)*    
    Web AS Protocol - should be same as the ITS Protocol.
    13)   Select "User Management" property, now fill the required fields like
    a)      Authentication Ticket Type - Since we are not using SSO leave the field
    empty i.e. put in select mode. (Please note that longer term you will probably want to use SSO)
    b)      Logon Method - Select UIDPW.
    c)      User Mapping Type - In case you have administration rights then you choose "admin" or in case you
    just have user rights then choose "user", better go for "admin/user".
    14)   Since all the required fields are filled appropriately now create a System Alias name, this can be done by following steps:
    a) go to Display -> Select "System Aliases" give some Alias Name, let's call it "SAP_R/3"
    15)  Now that System is created we have to create a iView which will display the given Transaction Code.
    16)  Go To "Content Administration".
    17)  Go To "Portal Content".
    18)  Go to Portal Content (Right Side Panel), open that folder
    19)  Right Click on Portal Content, a Panel is displayed select "New" -> iView
    20)  Select iView template, click next
    21)  Select "SAP Transaction iView" from the list of templates available. Click next.
    22)  Give the iView name and iView ID. Incase you want to give any brief notes about the iView then give it in "Description" field. Click next
    23)   Select "SAP GUI for HTML" radio button. Click next
    24)  Now select the system which you have create "SAP_R/3", give some Transaction Code, say SE12 (Dictionary Display). Click next and Finish.
    25)  Now Preview the iView
    26)  You will see a new Window where in SE12 Dictionary Display window is displayed.
    Regards,
    Senthil K.

  • BI System copy: 2 SAP BW system should be connect to same R/3 system

    Hi!
    We have copy one SAP BW system SR1 to another SAP BW system SR2.
    SR1 was connected to SAP R/3 system R31.
    As consequence the new SAP BW system SR2 has also in RSA1 --> source system the entry of SAP R/3 system R31.
    We would like to restore the source connection in new SAP BW system SR2.
    By doing so a pop up comes up with decision to delete an existing connection R31<CLNT>XXX or not to delete this connection to the first BW System SR1.
    Question:
    Can 2 BW systems (SR1, SR2) be connected to the same SAP R/3 system (R31) and what should we do in this casee with pop up (delete or not delete the existing connection to the source BW System SR1)?
    Any helpful information will be very appreciated!

    HI
    > Can 2 BW systems (SR1, SR2) be connected to the same SAP R/3 system (R31)
    Why not? One R/3 system can be connected to many BI/BW system.
    > what should we do in this casee with pop up (delete or not delete the existing connection to the source BW System SR1)?
    This pop up is coming because you created your SR2 system as a copy of SR1 system. If you have access to your R/3 system, you can check in table RSBASIDOC there will be  only one entry R31CLNTXXX --- SR1CLNTXXX which is creating problem
    What you can do is to run one FM RSAP_BIW_DOSCONNECT ( in the new system) and delete the entry for R31CLNTXXX and SR1CLNTXXX. Then also delete some correspondign entries from EDP13, EDPP1 and EDP21. Then in the new system , from RSA1 create new connection. I Before creating the new source system connection, in your new BI system you can delete the RFC connection for the R/3 system from SM59. During creation of new connection this RFC will be generated once again automatically.  should work fine.
    Remember, DO NOT delete connection from RSA1 which in turn will delete all the dataSources.
    Please also follow SAP Note 886102 - System Landscape Copy for SAP BW and NW BI carefully before doing ANYTHING with RSBASIDOC.
    Regards
    Anindya
    Edited by: Anindya Bose on May 4, 2010 12:17 PM

  • Middleware problem -Outbound queue is stuck in SAP R/3 system with message

    Hi Middleware gurus ,
    We are stuck with a serious issue . We are trying to download Business partners from SAP R/3 4.6c system to SAP CRM 5.2 system using CRM Middleware
    Previously we did a successful Initial download of 2 Business partners from SAP R/3 to CRM . Their BP numbers in CRM are 001 and 002 . The Delta load is working fine for the both the BPs which are already downloaded
    Now , the real problem is when we are trying to download a new Business partner . When we set the Filter ( BP no 003 ) in MW adaptor object CUSTOMER_MAIN and start the Initial load again , we see that the Outbound queue is getting stuck with message “STOP” .
    There are two queues generated in SAP R/3 system with names “MASS_CRM_CUSTOME” and “R3AD_CUSTOME” . The status for both the queues is “STOP” and when go for details it mentions “sapsuck ..SAPMSSY1 “ -Message no. SR 053.
    Even we checked the txn SMW01, the Bdocs message is "Recived ( Intermediate state) " for Bdoc type BUPA_MAIN.
    We really don’t as to why the Initial load worked fine with 2 BPs  and later when want to do more BP Initial Load the Outbound queue is getting stuck
    Also , by unlocking the 2nd queue “R3AD_CUSTOME” we are able to release it , but the first queue “MASS_CRM_CUSTOME*” is stuck
    Please help us urgently
    Regards
    Dinesh and Ritvij
    Email : [email protected]
    Mobile -+91=9704933315

    Hi Praveen and other Middleware gurus,
    We checked on this . Actually the RFC is used for connecting to SAP R/3 system.
    We also raised an OSS message on this and found a reply that in transaction CRMM_BUPA_MAP, we can map the required BP . But the SAP support guy recived an error received the error:
    An RFC link is not maintained in the Middleware
    Message no. CRM_BUPA_MAPPING051
    We have set the RFC link , but still the problem continues!!!
    Please help further..
    Regards
    Dinesh and Ritvij

  • Cannot connect to SAP R/3 (datastore RD_110 using host n1.n2.n3.n4 , cli

    We use Business Objects Data Integrator 6.5 to connect to SAP R/3 system to generate ABAP extracts and load these extracts into a custom Oracle database. The current production R/3 system is in 4.6. We are planning to upgrade the R/3 system to ECC 6.0 and currently testing our interface from BODI 6.5 to R/3 6.0. We were able to successfully create a data store point to R/3. However when we execute a job, we get the following error
    Cannot connect to SAP R/3 (datastore <dsname> using host <host ip>, client <cl#>, user <uname>, and system number <0>. Please make sure the SAP R/3 server is running and login information is correct.
    The same login info was used to connect SAP GUI and it is working and we are able to execute the ABAP extractors. We have also tried running the RFC_GENERATE_AND_EXECUTE_ABAP function and it is executing as well.
    BODI is installed on Solaris and R/3 is on Aix.
    Any help with this would be greatly appreciated.
    Thanks

    We use Business Objects Data Integrator 6.5 to connect to SAP R/3 system to generate ABAP extracts and load these extracts into a custom Oracle database. The current production R/3 system is in 4.6. We are planning to upgrade the R/3 system to ECC 6.0 and currently testing our interface from BODI 6.5 to R/3 6.0. We were able to successfully create a data store point to R/3. However when we execute a job, we get the following error
    Cannot connect to SAP R/3 (datastore <dsname> using host <host ip>, client <cl#>, user <uname>, and system number <0>. Please make sure the SAP R/3 server is running and login information is correct.
    The same login info was used to connect SAP GUI and it is working and we are able to execute the ABAP extractors. We have also tried running the RFC_GENERATE_AND_EXECUTE_ABAP function and it is executing as well.
    BODI is installed on Solaris and R/3 is on Aix.
    Any help with this would be greatly appreciated.
    Thanks

Maybe you are looking for

  • Email Settings Wiped Out on Regular Basis - Phone Network Issue?

    Not sure where to post, but the CEO of our company has had an ongoing issue with his Droid X, and actually I suspect it being a phone network problem.  On a consistent basis when he travels from our office to his weekend home about 100 miles from us,

  • Calling Java application in the server

    Hi, Is it possible to call a GUI based Java App from the oracle server? If so how?

  • RFC Interface Programming

    Hi All, Using the RFC SDK APIs, we are trying to implement RFC client programs(in C lang). For example to invoke BAPI_XMI_LOGON, we have used RfcCallReceive() function. All the importing and exporting parameters are set. However even after the API su

  • BW Statistics Load Specified Time

    Hi, I´m trying to load an specified period in a BW statistics InfoCubes. In 0BWTC_C02 infocube i can select "Calday" but in the others InfoCubes i don´t get activate check for Calday selection. How can i activate "calday" selection for Infocubes: 0BW

  • Can I merge two slideshows with 2 different themes?

    I've created 2 slideshows in iPhoto but one slideshow has the Ken Burns theme and the other has the Snapshot theme... when I export them to iDVD to burn on a CD, can I merge them into one continuous slideshow?