Connecting to R/3 system from portal

Hi Everyone,
                       I am creating one R/3system object in portal(EP 7.0 SP10). i created the system, provided the required property values in following categories
1.Connector
2.WAS properties.
i created one transaction iview and assigned to access this newly defined or created system & supplied all property values for iview correctly( i have given system alias name property value correctly& also choosen SAPGUI for windows)
i ahve created one role  & assign the iview to that role. & assigned the role to myself.
When i try to access the same system. It shows SAPGUI small window"WAITING IN PROGRESS" eror(message window) & system just hangs up. i have created the some other R/3 system few days back with the same way & it worked properly. I was able to get into that system without any problem. i have checked that system's properties with this one & i found no error or mistake.
I m just clueless now about this "WAITING IN PROGRESS" SAPGUI messsage/error. Can anybody help me about the same. I ahve created system based on "Connection to dedicated application server" template.
Plz guide me about the same.
Thanks,
chetan

Hi,
u cn refer to these links,
https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/howtoConnecttoSAPR3SystemthroughEnterprisePortal7.0Usingan+iView.&
Configuring EP for connecting to SAP R/3
Connecting To R/3 From Portal
Regards
Bhargava
award if it helps

Similar Messages

  • How to connect ECC 5.0 system from EP?

    Hi
       I want to connect ECC 5.0 system, which is located in a remote SLD, from EP 6.0.
       If anyone knows, please post the step by step details .
    Thanks and Regards,
    Abdul Kareem.S

    Hello Abdul,
    This should help you
    How to connect IDES ECC 5.0 to EP ?
    Also check
    http://help.sap.com/saphelp_nw04/helpdata/en/77/931440a1c32402e10000000a1550b0/frameset.htm
    regards
    Mahesh

  • Call a smartform in the SAP system from portal

    Hi Friends
    My requirement is to trigger a smartform in SAP, from portal. Please guide me on how to achieve this.
    Thanks
    Saran

    Hi,
    I have an idea but dont know how far its possible for you.
    You can call smartforms function module from portal and then convert that to pdf file which can be displayed in a pdf control on the portal.
    Check whether this approach is possible.
    Regards
    Karthik D

  • Connecting to R/3 system from External facing portal

    Hi folks,
    We have implemented an external facing portal where all the users are been stored in a separate CRM system. Hence for checking whether the user id and password is correct we are using a CRM BAPI call. For making a CRM BAPI call we have created an alias from the portal end to the CRM system and the authentication type which we choose was SAP Logon ticket. Now my question is:
    1. Will the SAP logon ticket will be created automatically or not as the users are not stored at the portal but in CRM. If it is not going to create a SAP logon ticket then how this can be achieved.
    Your thoughts are highly appreciated.
    Regards,
    Ponraj M

    You have to user user mapping. Choose UIDPW for the logon method.
    From user mapping menu choose the generic user/password which you will be using to call the BAPI.
    Regards,
    Prasanna Krishnamurthy

  • Connection to R/3 system from a portal application

    hi
    I am trying to connect to the R/3 system through a portal application developed in Netweaver Developer Studio.
    Please tell what all are the prerequisites for that.
    I have created an alias in the portal for the R/3 system and named it as FIN, even though my program is not working.
    Are there any setting to be done in the portal
    kindly let me know.
    thanks
    kris

    hi Vadim
    Thanks for ur fast reply, I have implemented the same code that u have mentioned.herewith I am sending u the code that I have written.
    package com.keane.connection;
    import javax.resource.ResourceException;
    import com.sapportals.connector.connection.IConnection;
    import com.sapportals.portal.ivs.cg.IConnectorGatewayService;
    import com.sapportals.portal.ivs.cg.IConnectorService;
    import com.sapportals.portal.prt.component.AbstractPortalComponent;
    import com.sapportals.portal.prt.component.IPortalComponentContext;
    import com.sapportals.portal.prt.component.IPortalComponentProfile;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    import com.sapportals.portal.prt.component.IPortalComponentResponse;
    import com.sapportals.portal.prt.logger.ILogger;
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    public class SimpleSapConnection extends AbstractPortalComponent {
      public void doContent(IPortalComponentRequest request, IPortalComponentResponse response) {
         IPortalComponentContext myContext = request.getComponentContext();
         IPortalComponentProfile myProfile = myContext.getProfile();
         // get the default_logger
         ILogger logger = request.getLogger();
         logger.info("SimpleSapConnection: default logger initialized");
         String sapsystem = myProfile.getProperty("SystemIdentifier");
         response.write("SimpleSapConnection: the SystemIdentifier is: " + sapsystem + "<br>");
         IConnection connection = null;
         logger.info("Start to get a Connection to R/3");
         try {
           // get the Connector Gateway Service
           IConnectorGatewayService cgService = (IConnectorGatewayService) PortalRuntime.getRuntimeResources().getService(IConnectorService.KEY);
           if (cgService == null) {
              logger.severe("SimpleSapConnection: Error in get Connector Gateway Service");
              response.write("Error in get Connector Gateway Service <br>");
           try {
              connection = cgService.getConnection(sapsystem, request);
           } catch (Exception e) {
              logger.severe("SimpleSapConnection: Connection to SAP system failed");
              response.write("Connection to SAP system failed <br>");
           } finally {
              // !!!!Important! Connection pooling will not work if the connection object is not closed!!!
              // Next statement needs to be inlcuded in your coding always,
              // otherwise connections won't be reused.
              if (connection != null) {
                try {
                   connection.close();
                } catch (ResourceException e) {
                   e.printStackTrace();
           if (connection == null) {
              logger.warning("SimpleSapConnection: Connection is null");
              response.write("Connection is null <br>");
           } else {
              logger.info("SimpleSapConnection: Connection succesful");
              response.write("Connection succesful");
         } catch (Exception e) {
           logger.severe("SimpleSapConnection: Exception thrown" + e);
           response.write("Exception thrown" + e);
    I have created an R/3 system in the portal and named it as FIN with the same alias name as FIN.
    U please tell me what are the other things that we have to do in respect to get connection to R/3, how to configure the R/3 system in the portal and also in the NWDS.
    And also the portalapp.xml file i have created
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <!THIS FILE IS A COPY OF THE ORIGINAL VERSION STORED IN THE PCD. PLEASE DO NOT CHANGE IT!>
      <application-config>
        <property name="SharingReference" value="com.sap.portal.htmlb,      com.sap.portal.ivs.connectorservice, com.sap.portal.usermanagement,       com.sap.portal.usermapping, landscape"/>
        <property name="releasable" value="true"/>
      </application-config>
      <components>
        <component name="SimpleSapConnection">
          <component-config>
            <property name="ClassName" value="com.keane.connection.SimpleSapConnection"/>
            <property name="SafetyLevel" value="no_safety"/>
          </component-config>
          <component-profile>
            <property name="SystemIdentifier" value="FIN"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    what I feel is that there is something wrong with the system I have created in the portal
    thanks
    krish

  • Connecting MSSQL Database source system from BW 3.5/Oracle 9.2.0.6/AIX 5.3

    Hi,
    We want to extract data from MSSQL database source system into BW 3.5/Oracle 9.2.0.6 system in AIX environment. Apart from intsalling NT app server,UDC, XI,flat file options, can you please suggest any other methods to extract data from SQL database into  BW/AIX system?. Thanks in advance.
    Thanks.
    Raj.

    Raj,
    Did you find any solution for this problem. We are having exactly the same issue and are trying to do it with SAP DBConnect.
    We are able to create a Source System for MSSQL server but it does not connect since the "Database Shared Library" is not installed on our BW 3.5 AIX box.
    From what we gather there is NO DSL for MSSQL for AIX. I cannot believe we cannot connect to MSSQL directly since we have too many MSSQL databases all around the company.
    regards,
    Atul

  • Unable to connect to SMC Client system from SMC Server System

    hi,
    i have installed SMC 3.6.1. on Solaris 10 OS . The SMC agents are installed are all system but SMC Server is unable to communicate with Client systems. SMC Server System can Ping and Telnet all the SMC Client systems , but unable to connect from SMC .
    Please guide how can resolve this problem
    best regards,
    Adeel Mehmood

    Hi Adeel,
    i have installed SMC 3.6.1. on Solaris 10 OS . The
    SMC agents are installed are all system but SMC
    Server is unable to communicate with Client systems.
    SMC Server System can Ping and Telnet all the SMC
    Client systems , but unable to connect from SMC .
    Please guide how can resolve this problemSo, you can login to SunMC, but you're unable to make an icon for any of your Agents? Or you have icons you made bofre but when you click on them now you get errors?
    If these are new Agents, do they have more than one netowrk interface? If so, they may have security information for the "other" network (the one the SunMC Server's not on). You can try manully specifying the correct network for one Agent and see if it helps:
    http://forums.halcyoninc.com/showthread.php?t=2
    Regards,
    [email protected]
    http://www.HalcyonInc.com
    !! New !! : http://forums.HalcyonInc.com

  • How to connect to a JMS queue from portal app

    Hi everyone,
    can someone help me.  I need to connect to a JMS or MQ queue with the portal.  I cannot seem to find any documentation on that.
    I would appreciate any aid in this.
    thanks
    Mariana

    I am trying MessageDrivenBean j2ee example given in portalwhich uses EJB.
    I am not able to connect with portal. I can see the available Queues and Topics from Visual Administrator. But How can I create my own topic?
    I am getting following exception while running given example.
    examplee is available at :http://portal/index.html->J2EE Engine Examples
    -->Message-Driven Bean Example
    Error occurred: com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Path to object does not exist at java:comp, the whole lookup name is java:comp/env/MessageSender.

  • How to connect to remote oracle system from webDynpro

    HI Experts,
       i am trying to call some remote oracle stored procedures in webdynpro using jdbc.
    i am using "jdbc:oracle:thin" driver for connecting to
    oracle database.when i am running this one as java standalone application it is working fine.but when i am
    using this in webdynpro server is getting restarted.
    what might be the problem
    or is there is another way for this.
    thanks in advance
    With Regds
    Naidu

    Hi,
    It seems the flwg thread has the solution for you:
    Oracle as Back-end with Web Dynpro
    Regards
    Srinivasan T

  • Testing T-code from portal fails

    Hi all,
    While trying to connect to back end system from portal sys config-support - SAP application - SAP transaction and testing for SAP Local system for PA20 i get the following error:
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : com.sap.portal.appintegrator.sap.Transaction
    Component Name : com.sap.portal.appintegrator.sap.Transaction
    Exception in SAP Application Integrator occured: Unable to parse template '<ClientWindowID><System.r3name><System.client><Request.Language><User.Accessibility><LAF.RightToLeft>'; the problem occured at position 16. Cannot process expression <System.r3name> because Invalid System Attribute: System: &#39;SAP_LocalSystem&#39;, Attribute: &#39;r3name&#39;. .
    Exception id: 11:11_30/10/08_0001_4635250
    See the details for the exception ID in the log file
    Can you please suggest a solution for this. I have looked into the forum and found only 2-3 relevant threads however, trying these out unfortunately didn't resolve this error.
    Regards.

    Mohammad,
    You are moving in the right direction.
    There are only few things missing.
    1. You need to worry only about ITS, not connector or Web AS settings.
    Make sure you setup:
    a.ITS Host Name: <host>:<port, usually 800X>
    b.ITS Path: /sap/bc/gui/sap/its/webgui
    c.ITS Protocol: http
    2. Add a new Alias name:
    Right click on the system, select Open->System Aliases
    Give it a name TEST_SYS_ALIAS
    Click Add button
    Save
    3. Do Connection test for ITS only.
    If fails - see the error. It can be SSO problem or /sap/bc/gui/sap/its/webgui is not activated on the backend.
    Let me know if you need help with those.
    If success - go and test your transaction again.
    Select system TEST_SYS_ALIAS
    Transaction code - any Tcode you need (PA20 or SMEN for system menu)
    SAP GUI Type: SAP GUI for HTML
    It should work.
    Regards,
    Slava
    Edited by: Slava Plyushchikov on Nov 1, 2008 6:21 PM
    Edited by: Slava Plyushchikov on Nov 1, 2008 7:31 PM

  • Unable to connect to BI System from Visual Composer

    Hie there,
      I am unable to connect to my BI system from Visual Composer
      The error message which I obtain upon clicking on 'Find Data' and selecting one of the many Systems list are as follows :-
      Error - 30014 Search returned an erro Failed to conect to backend system. Check your system defination and user priveleges.
      Please advice how can I add a BI System to this Visual Composer
    p/s: I`m new to portal environment, hence please excuse my rudimentary question

    Hi John,
    you find some information under:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/de/9b/3ac52d74cf4c43b1cf3a71725c951f/frameset.htm">http://help.sap.com/saphelp_nw2004s/helpdata/de/9b/3ac52d74cf4c43b1cf3a71725c951f/frameset.htm</a>
    I had a similar question as a comment for my blog here:
    <a href="/people/marcel.salein/blog/2007/02/01/visual-composer-and-abap-rfcbapi-a-powerful-combination-part-i:///people/marcel.salein/blog/2007/02/01/visual-composer-and-abap-rfcbapi-a-powerful-combination-part-i
    You should also look in the VC wiki, there is a section for the connectivity
    <a href="https://wiki.sdn.sap.com/wiki/display/VC/Connectivity">https://wiki.sdn.sap.com/wiki/display/VC/Connectivity</a>
    Hope that helps!
    Best Regards,
    Marcel

  • Error connecting MDM system from XI through Java proxies-standard component

    Dear Friends
    We are trying to connect to the MDM system from XI through Java proxies(i.e standard components),in relation to that we have done the following:
    1)registered the interfaces
    a)http://XIserver:port/ProxyServer/register?ns=http://sap.com/xi/GDSConsole&interface=GDS_Data_Import_In&bean=localejbs/sap.com/GDS/DataImport&method=gDSDataImportIn
    b)http://XIserver:port/ProxyServer/register?ns=http://sap
    .com/xi/GDSConsole&interface=GDS_DP_In&bean=localejbs/sap.com/GDS/Dat
    aPoolIn&method=gDSDPIn
    2)Deployed the ears within Build10.zip, i.e
    a)GDS_1.0.6.1_Build10.ear and
    b)GDS_ExternalValidations_1.0.6.1_build10.ear
    3)set the sap.application.global.properties file inside the  GDS_1.0.6.1_Build10.ear
    as follows:
    SAP application properties
    #!Path to GDS folder containing the configuration files
    ConfigurationFilesLocation=/usr/sap/P70/DVEBMGS00/j2ee/cluster/server0/apps/sap.com/GDS
    #!External validation modules (EJB names) delimited by semicolon character.
    ExternalValidationModules=ExternalValidations_EJBs
    #!IP or server name of MDM server
    MDM.server=172.18.139.200
    #!MDM repository port as appears in MDM console
    MDM.port=2000
    #!MDM repository name as appears in MDM console
    MDM.repositoryName=GDS_1
    #!version of MDM server and connector
    MDM.version=5.5.42.103
    #? secure=true
    #! MDM Admin user password
    MDM.AdminPassword=
    #!Data pool name - should match a remote system defined in MDM console
    DestinationDataPoolName=
    #!Data pool 13 digits GLN
    DestinationDataPoolGln=
    #!Provider 13 digits GLN
    ProviderGln=
    #!Provider time zone e.g. EST
    ProviderTimeZone=
    #!Data pool schema URL
    SchemaLocation=
    #!Message Timeout
    MessageTimeout=10
    #!Backend import client system - should match a remote system defined in MDM console.
    ImportData.ClientSystem.Name=R3
    !# The format that dates will appear in the UI
    #Available date formats:      MM/dd/yyyy
    #                     dd/MM/yyyy
    #                     MM-dd-yyyy
    #                     dd-MM-yyyy
    #                     dd-MMM-yyyy
    #                     dd/MMM/yyyy
    #                     MMM dd, yyyy
    Where MM=1-12, MMM=Jan,Feb,Mar,etc.
    Note: Extreme caution should be taken when choosing to use month names,
    #          since different regional settings on the client and server machines
    #          will cause dates to be uninterpretable.
    #          It is strongly advised to use numeric month format, eg. MM-dd-yyyy, etc.
    DateFormat=dd/MM/yyyy
    DEBUG.SaveIncomingMessagesToFile=false
    #!defines if incoming message will be saved in arc folder
    DEBUG.ImportData.SaveArchive=false
    #!defines if outgoing message will be saved
    DEBUG.SaveOutgoingMessagesToFile=false
    But still we are getting errors as:
    a)com.sap.aii.af.ra.ms.api.MessagingException: com.sap.mdm.gds.proxy.dataimport.GDSConsole_Message_Exception: : com.sap.aii.proxy.xiruntime.core.ApplicationFaultException: com.sap.mdm.gds.proxy.dataimport.GDSConsole_Message_Exception
    inside SXMB_MONI
    when we trigger an Idoc and try to send the data inside the MDM GDS system.
    and
    b)Failed to send message,reason:Exception on method gDSDPOut
    when we try to register something,even after the data is validated by the system.
    Can anybody help??
    It is of urgent requirement.
    Edited by: Arjun Ghose on Jul 15, 2008 4:36 PM

    Hi ,
       I found a document which says that MDM4J is the legacy API and is considered deprecated .The MDM Java API is the new one .I have both of them in the java build path . I am not sure if this is that cause of the problem .
    Now I had a look at the javadoc for the new API but I am not able to locate the class to obtain a connection to the MDM server from a custom application being built in Netweaver Developer Studio . Can someone help me out with the same ?What would be the code to obtain the connection to the MDM server with the new JAVA API ?
    Regards
    DeepaK Singh

  • Connecting to an sap system

    Hi
    Just wanted to know if the JCO client service is the only way of connecting to an SAP system from enterprise portal.
    thanks
    Ram

    Hi Ram,
    no, it's the "old" way, the new one goes via JCA; see JCA/J2EE Connector Architecture with WAS 6.20 (R/3 Enterprise) and JCO x JCA and Java to SAP as well as the brand-new article https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/using j2ee connector architecture with ep6 iview development.pdf
    Hope it helps
    Detlev

  • Creatins BW system in portal

    i installed portal  sneak preview sp16 version  in my local machine and  now i want create a BW system in my portal
    the thing to be noted here is my BW system is in different
    country i am connected to the network by vpn from my country
    and i am able to login in to the BW system from machine through sap logon
    so i went to portal
    System Admin --> System Configuration -->. Portal Content
    and i created the system by taking sap load balancing system
    but my connection test failed
    so wat i felt there i missed some system lanscape procedure
    so  any body help me  how to configure portal from scratch
    from lanscape to system creation .
    thank u

    HI
    Follow this to configure BI with Potral
    1.Click on System Configuration menu option from your toolbar. Go to Portal Contents on System Landscape
       iView.     System Administration -> System Configuration -> Portal Contents
    2.To start with configuration of system, Right click on Portal contents and select New -> System from PAR.
    3.System Wizard will prompt you to select required default system template in step 1.
       Choose *com.sap.portal.system.bi* for BI system.
    4.In step 2 choose a portal component which is to be used to connect to BI system Choose SAP_BI_XMLA
    5.Define System Name and System ID which are mandatory and will be used for further reference to maintain
       connection settings for BI system in portal.
    6.Your system object is created and choose Open the object for editing and Click OK
    7.Next screen will give brief information about object created.
    8.Choose Connection Properties from Property Category drop down to maintain connection properties for BI
       system.
    9.Provide BI server name as Data Source Provider.
       Enter server URL which can be generated using BI server and steps are mentioned below.
    10.Logon to BI server with required username and password credentials.
       Go to T-Code SE37 (Function Builder).
       Enter system defined function module RSBB_URL_PREFIX_GET and execute directly.
    11.Put Import parameter values to generate server URL for the system.
        I_HANDLRCLASS = CL_RSR_MDX_SOAP_HANDLER
        I_PROTOCOL = HTTP
        I_MESSAGESERVER = X
        Execute Directly (F8).
    12.You will get following Export parameters as result where values of E_URL_PREFIX & E_URL_PATH are
        required URL.
       Prefix E_URL_PREFIX at E_URL_PATH to get complete URL.
    13. Now back to portal
       Choose User Management from Property Category and maintain Logon Method as UIDPW and select User
       Mapping Type admin,user.
    14.Choose Show all from Property Category to check entered values
    15. After maintaining connection settings, System Alias needs to be maintained for created system. Using this
       system alias we can access this system through our applications.
       Select System Aliases from drop down list available under Display options.
    16.Define an alias name and click on Add.
    17.Created Alias will come under the list of defined aliases.Click Save.
    18. Go to user administration and Choose User Profile to maintain user mapping parameter with respect to BI system. Select User Mapping for System Access Tab.
    19.Select your system alias which is created in previous steps.Click on Modify button to maintain details.
    20.Enter User ID and Password for BI server and Click on Save.
    21.System configuration process is complete and now you have to Test Connection to assure its connectivity of
       EP to BI system.Choose Connection Tests from Display dropdown menu.
    22.Tick the Check box for available system connector and click on Test to perform selected connection test.
    23.Upon correct maintenance of connection parameters system results as connection successful.
    24.Now your Business Intelligence system is configured and successfully connected to Enterprise Portal.
    It is ready for use.
    Happy Practiceu2026
    Mandeep Virk

  • Cofig guide for connecting CRM and R3 system

    Can anyone provide full cofiguration guide for connecting CRM and R3 system from end to end.
    also complete information about bdocs settings in Adminstration console.
    regards,
    Sunil

    Hi
    Please follow the link
    http://help.sap.com/saap/sap_bp/CRM_701_XX/Html/index.htm
    then go to the following hyperlinks
    B01: CRM Generation
    B09: CRM Customizing Replication
    C03: CRM Master Data Replication
    Meticulous follow these three documents then you will be able to connect CRM AND ECC systems and will be able to perdorm initial load of customers, materials etc
    please let me know if you have any issues
    thanks
    Ananda kumar karri

Maybe you are looking for