Websphere application connectivity to SAP

We are trying to do some proof of concept work connecting to SAP BAPIs using the SAP connector. We have the Netweaver ABAP trial version installed but it doesn't seem to have JCo or sapjra.rar anywhere. Are these components available in a trial form. I've hunted around on the developer network and the net but cann't seem to find anything that tell me whether these components are available as trials/sneak previews.

Paul.......
SAP JCO stands for Java Connector ..and i dont think that comes with the Abap trial for netweaver.
Regards
Ravi Raman

Similar Messages

  • JSF APPLICATION CONNECTION WITH SAP R3

    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
    Why dont you enable RFCs in the SAP system as WebServices and consume them? If you have a very old SAP system then use JCo (JCA) / JRA and connect through the RFC layer.
    [Consume Webservices in 7.3|http://help.sap.com/saphelp_nw73/helpdata/en/ca/97f68ba5034d0fb21c518f0cac1432/frameset.htm]
    [JCo|http://help.sap.com/saphelp_nw73/helpdata/en/48/64db09c88307dbe10000000a42189b/frameset.htm]
    [JRA (JEE Compatibilie, implements JCo)|http://help.sap.com/saphelp_nw73/helpdata/en/48/70796c872c1b5ae10000000a42189c/content.htm]
    HTH.
    Thanks.
    Regards
    LNV

  • 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 */

  • How to develop portal application connecting to SAP R/3(backend system)

    Hello Everyone,
                            Can anyone guide me on how to create portal aplication(JSPDYNPAGE), that will connect to backend SAP R/3 system, & it will fetch the data from some table from that R/3 system. Any reference material will be appriciated, it will be of great help.
    Thanks
    Chetan.

    Hi Chetan,
    Connection to R/3 systems through Portal can be done in many ways. Since you have mentioned that you are using jspdynpage then its better that you use JCo for connecting to R/3 system.
    U can write the JCo code using the jspdynpage component. I hope you have pdfs related to JCO. Incase u dont have then give me you mail id. OK
    Another approach could be developing a web dynpro java application that access a r/3 table using a BAPI. You can a dynpro model to easily connect to R/3 system.
    Just develop an iview based on this web dynpro application. And finally navigate to this iview through your jspdynpage.
    I hope this helps you in some way
    Regards,
    Prasanna

  • SSO between SAP EP and JAVA app on WebSphere Application Server 5.1

    Hi.  I have 2 questions.
    I am implementing SAP EP6 and need to display content from a WebSphere JAVA application inside the portal.  The application is currently running on WAS 5.1.
    1. Does anyone have any sample code or documentation regarding how to pass the SAP logon ticket to WebSphere JAVA application to accomplish SSO when inside the portal?
    2. Does anyone have any sample code or documentation regarding how to pass the SAP logon ticket to WebSphere JAVA application to accomplish SSO when outside the SAP EP, but still within the same IE browser window where the SAP logon ticket exists?
    Thanks for any feedback you could provide.

    Hello Kevin,
    please look here: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/nw/ibm/how to set up sso between sap enterprise portal and ibm websphere portal using tai.pdf
    Regarding your second questions: as long as you did not log off from SAP EP your browser hosts the SAP Logon Ticket cookie (within its timeframe of validity which is typically a couple of hours). So if you access a non SAP application that accepts SAP logon ticket with your browser, you're authenticated.
    Please note that the cookie based authentication only works withing the same DNS domain. So if your SAP EP is configured to issues the SAP logon ticket to "company.com" then your browser sends it only to servers in that domain.
    Regards
    Michael

  • How to make Portal Application for connecting to SAP R/3(backend system)

    Hello  Experts,
                           I need to create a portal application that should connect to SAP R/3 & fetch some data in some table according to some input parameters provided at runtime & display the data in TABLEVIEW control.
    Anyone can guide me on this i:e- how to go about it. What things i should know or should be aware of before creating this application. Any PDF documents , any help material, any guidance about the same will be of great help.
    Thanks,
    Chetan

    Chetan,
    Webdynpro & Visual Composer ars EP Development Tools.
    If you only display BAPI data then go for Visual Composer with requires no coding So I suggest you to go for Visual Composer.
    You can also use Webdynpro Java or ABAP to display BAPI data by creating
      Adaptive RFC model.
    You will integrate Webdynpro applications into EP by creating SAP Webdynpro iView.
    *Visual Composer Documents:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a0/0af7d34a8449e2b722878ce270a747/frameset.htm
    *Webdynpro Documents:
    http://help.sap.com/saphelp_erp2005/helpdata/en/a5/1a1e3e7181b60ae10000000a114084/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/15/0d4f21c17c8044af4868130e9f
    ea07/frameset.htm
    Regards,
    <b>Ramganesan K</b>

  • Number of remote RFC connections to SAP from third party application

    Hi All,
    We are using an external application which is using the JCO API to make a connection to the SAP server to pass invoices. But the connections are note properly closed after invoking the RFCs and SAP seems to be not able to handle further requests once the numer  of connections reach the maximum limit.
    Could you tell whether there is a max limit on the number of connections opened to SAP from remote function calls from a third party product?
    Is there anyway by which we can make sure that connections are properly closed in SAP after the each remote call?
    Thanks in advance for your pointers.
    Regards
    Arun

    Dear Arun,
    Here are the parameter settings which you can do to set up RFC connections to SAP servers.
    http://help.sap.com/saphelp_nw70/helpdata/en/c3/ce70a5cf0ab1499bfbf464e6e92de0/frameset.htm
    This will resolve all your problems.
    Thanks & Regards
    Vivek

  • HOW COULD CONNECT FROM SAP SYSTEM TO THIRD PARTY JAVA APPLICATION

    HI expects,
            HOW COULD CONNECT FROM SAP SYSTEM TO THIRD PARTY JAVA or . DET APPLICATION.please provide me some scenarios and documents.please help me.

    Hi,
    In the sender side i.e. in SAP system you can use IDoc/RFC/Proxy to push the data to XI.
    IDoc supports only Async communication and in Sync case performace is good using Proxy.
    In the receiver side you can use Java Proxy to connect to the Java application or you can even bulid a webservice over the Java/.Net application and use SOAP adapter to post data to it.
    Thanks
    SaNv...

  • How sap application connect oracle database

    The gurus,
    I just to known how sap application connect to oracle database. Where or what the configuration files at SAP level and oracle level.
    Thank you
    Edited by: Muzaidi Marjuki on Apr 28, 2011 8:58 AM

    existing database to other database that also running on oracle ( right now we testing for recovery server) in case the existing server going down or have a problem that cannot been restore
    Its similar to DR setup, then why don't you install application at time of initial installation of DR?
    *Explain in  detial with a clear query
    Regards,
    Nick Loy

  • Creating a portal application(portal component) that connects to SAP R/3.

    Hello Everyone,
    I need to create a portal application that should connect to SAP R/3 & fetch some data in some table according to some input parameters provided at runtime & display the data in TABLEVIEW control.
    Anyone can guide me on this i:e- how to go about it. What things i should know or should be aware of before creating this application. Any PDF documents , any help material, any guidance about the same will be of great help.
    Thanks,
    Chetan

    Hi Chetan Deshpande
    package com.systechi.jspdynpages.tableapplication;
    import com.sap.mw.jco.IFunctionTemplate;
    import com.sap.mw.jco.JCO;
    import com.sapportals.htmlb.InputField;
    import com.sapportals.htmlb.event.Event;
    import com.sapportals.htmlb.event.TableNavigationEvent;
    import com.sapportals.htmlb.page.DynPage;
    import com.sapportals.htmlb.page.PageException;
    import com.sapportals.portal.htmlb.page.JSPDynPage;
    import com.sapportals.portal.htmlb.page.PageProcessorComponent;
    import com.sapportals.portal.prt.component.IPortalComponentContext;
    import com.sapportals.portal.prt.component.IPortalComponentProfile;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    public class TableApp extends PageProcessorComponent {
          public DynPage getPage(){
                  return new TableAppDynPage();
        public static JCO.Client mConnection;
        public static class TableAppDynPage extends JSPDynPage{
              private TableBean myTableBean = null;
              private int visibleRow = 1;
              int flag=0;
              String inf1,inf2;
              public static JCO.Client mConnection = null;
              public static JCO.Repository mRepository = null;
              public static JCO.Function function = null;
              private String name1,name2;
             public void doInitialization(){
                    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
                    IPortalComponentContext myContext = request.getComponentContext();
                    myTableBean = new TableBean();
                    myContext.putValue("myTableBean", myTableBean);
                    mConnection = JCO.createClient("200",
                                                         "jbabu",
                                                         "sy5tech!",
                                                         "EN",
                                                         "10.5.5.33",
                                                         "00");
                   mConnection.connect();
                   mRepository = new JCO.Repository("myRep",mConnection);
                   IFunctionTemplate ft = mRepository.getFunctionTemplate("BAPI_BANK_GETLIST");
                   function = ft.getFunction();
                   setJspName("Input.jsp");
        public void doProcessAfterInput() throws PageException {
                    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
                    IPortalComponentContext context = request.getComponentContext();
                         myTableBean = (TableBean) context.getValue("myTableBean");
                   try{
                       InputField myInputField1 = (InputField) getComponentByName("inf1");
                        if (myInputField1 != null) {
                             this.name1 = myInputField1.getValueAsDataType().toString();
                        InputField myInputField2 = (InputField) getComponentByName("inf2");
                        if (myInputField2 != null) {
                             this.name2 = myInputField2.getValueAsDataType().toString();
                   JCO.ParameterList imParam1 = function.getImportParameterList();
                   imParam1.setValue(name1,"BANK_CTRY");
                   JCO.ParameterList imParam2 = function.getImportParameterList();
                   imParam2.setValue(name2,"MAX_ROWS");
                   mConnection.execute(function);
                   JCO.ParameterList exParam = function.getTableParameterList();
                   JCO.Table table = exParam.getTable("BANK_LIST");
                   myTableBean.setName(table);
                    mConnection.disconnect();
              catch(Exception ex)
                   ex.printStackTrace();
         public void doProcessBeforeOutput() throws PageException {
                   if(flag == 1)
                      this.setJspName("OutputTable.jsp");
         public void onButtonClicked(Event event) throws PageException
                    flag = 1;       
              public void onNavigation(Event event) throws PageException
                                  TableNavigationEvent tne = (TableNavigationEvent) event;
                                       this.visibleRow = tne.getFirstVisibleRowAfter();
                                       myTableBean.setVisibleRow(new Integer(this.visibleRow).toString());
    above is my JSPDynpage  
    package com.systechi.jspdynpages.tableapplication;
    import com.sap.mw.jco.*;
    import com.sap.mw.jco.JCO.*;
    import com.sapportals.htmlb.*;
    import com.sapportals.htmlb.event.*;
    import com.sapportals.htmlb.page.*;
    import com.sapportals.portal.prt.component.*;
    import com.sapportals.portal.htmlb.page.*;
    import com.sapportals.htmlb.table.JCOTableViewModel;
    import java.io.Serializable;
    public class TableBean
              private String visibleRow = "1";
              public JCO.Table t;
              public JCOTableViewModel tableListModel = null ;
              boolean bHasData = false;
         public JCO.Table getName()
                return t;
           public void setName(JCO.Table tab)
               this.t = tab;
         public String getVisibleRow()
              return (this.visibleRow);
        public  void setVisibleRow(String visibleRow)
                this.visibleRow= visibleRow;
         public boolean hasData()
                             if (t.getNumRows() == 0)
                                   return false;
                             else
                                   return true;
         public JCOTableViewModel getTableListModel()
                     //return new JCOTableViewModel(t);
                     tableListModel = new JCOTableViewModel(t);
                          return tableListModel;
         public void setTableListModel(JCOTableViewModel tm)
                     this.tableListModel = tm;
            public void     TableBean()
    like u can fetch the data from r/3 backend system...

  • Can't create connection to SAP application server

    I use BusinessObjects Edge Series 3.0 (testing software). In Designer I am trying to create a new universe and first to create new connection (with wizard) to SAP (BW cube). I set all parameters that I use to connect with SAP GUI, but on testing the connection I get message "The server is not responding". What is wrong?
    Thanks,
    Olga

    I found the decision here:
    Error creating connection to SAP
    I installed SAP integration kit - downloaded from here:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/webcontent/uuid/806c9894-42a5-2b10-648a-d900489b76da [original link is broken]
    and now I have the connection.
    Olga

  • Connect to SAP Cluster Gateway failed

    Hi all,
    We have outbound idoc from SAP clusters for further configuration.
    We have java applications deployed in IBM WebSphere Application Cluster (WAS_A and WAS_B)
    At SAP side, we have 2 SAP instance, CI and DI with ACSC configuration,
    For the gateway ports,
    1. 3336 for CI
    2. 3326 for DI
    3. 3316 for ASCS
    For outbound idoc, RFC is created to pointing at host and gateway. (ASCS and 3316)
    We encountered the following errors
    Connection parameters: TYPE=B DEST=SRP.644195 MSHOST=PSRPSVC GROUP=SPACE R3NAME=SRP PCS=1 COMM_CP=1100
    LOCATION    CPIC (TCP/IP) on local host swfp04 with Unicode
    ERROR       internal error
    TIME        Wed Apr  6 19:41:14 2011
    RELEASE     720
    COMPONENT   MS (message handling interface, multithreaded)
    VERSION     4
    RC          -101
    COUNTER     5
    [4/6/11 19:42:25:104 CST] 0000002b SAPRAResource I com.ibm.j2ca.sap.SAPResourceAdapter endpointActivation(MessageEndpointFactory,ActivationSpec):  com.sap.conn.jco.JCoException: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed
    Connection parameters: TYPE=B DEST=SRP.747574 MSHOST=PSRPSVC GROUP=SPACE R3NAME=SRP PCS=1 COMM_CP=1100
    LOCATION    CPIC (TCP/IP) on local host swfp05 with Unicode
    ERROR       internal error
    TIME        Wed Apr  6 19:42:25 2011
    RELEASE     720
    COMPONENT   MS (message handling interface, multithreaded)
    VERSION     4
    RC          -101
    COUNTER     5
    If we set RFC pointing at either DI or CI only, it works.  However, it does not work for ASCS.
    Please help what else we are missing or any notes can be referred.

    Hi DinyBee,
    I am assume you have an URL that can get response from your OData Channel Gateway Service. You can test this in your browser. The URL should be something like this: http://gateway.company.com:8000/sap/opu/sdata/sap/APPLICATION/XXXCollection?sap-client=100&$format=xml
    If the URL is working, you can setup an Application Connection in your SCC by follow the steps:
    1. Select Applications, then go to Application Connection tab
    2. Register a new User, with all the correct Server information, remember specify your activation code.
    3. After you register the user, at the same Application Connection tab, select your user, and click Properties.
    4. Go to Proxy option, and you insert the URL "http://gateway.company.com:8000/sap/opu/sdata/sap/APPLICATION/" into the Application Endpoint. Then click OK.
    5. In your iOS application code, you register your Application using the object LiteSUPUserManager, and then get the Application Endpoint by using object LiteSUPAppSetting.
    6. Now, your application already got Online in the SUP, and the application also know which URL it should connect to.
    7. From now on, you can use object SDMRequestBuilder to build the request, and get the response from the OData Gateway.
    This is just a high level steps for you to reference, you should refer to Sybase documentation to get more information about the objects that I mentioned.
    Thank you.
    Regards,
    Edison Wang

  • SAP DB Connection from SAP BI on HP UNIX to MS SQL External Database

    Dear All,
    Greetings!
    I have a scenario to configure a SAP DB Connection from SAP BI System on HP UNIX 11i to the external legacy system MS SQL 2000 Enterprise for data upload. I am interested in connecting the SQL server as a Source System to the BI System.
    I read through documents mentioning about installation of a Client driver in the SAP BI System, I also downloaded the JDBC client software and tried installing the same, but the steps as mentioned Setting the CLASSPATH or connecting to the server did not work.
    Please help me in connecting the SQL Server as Source System, I would like to know in detail about the same - so kindly help me with the links to documents and guides about the same.
    Thank you
    Regards,
    Vineeth Damodar

    Short answer: this does not work.
    Long answer: To connect directly to the database you need
    - a database client for the source system
    - a database interface library for the source system
    Both of them are not available for HP-UX if the target database is SQL server --> doesn't work.
    What you can do is: add a Windows application server to your  BI system (heterogeneous installations work and are supported) and add there the database client and the database interface library.
    Markus

  • 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

  • Connection to SAP R/3 or to particular module..n how??

    i m new to Enterprise Portal and m bit confused..  i knw that EP is used to connect to SAP system thru Single Sign ON....
    for my project we will be using ESS and MSS buisness package.
    Thus we need to connect our Portal to nly  SAP R/3 sytem...or v connect to particular module...considering my project i need to connect to SAP HR module.. so how do i configure my portal to only SAP HR module..or creating only SAP R/3 system..i.e the way we normally connect to SAP R/3 from Portal content studio will do..??
    ...if any one could explain it conceptually will surely b awarded POINTS..
    Edited by: jigar oza on Jul 29, 2008 10:46 AM

    Hi Jigar,
    as you know about SSO it is nice, SSO is used to connect to backend (System) you can say R/3. Where as system contains many modules.
    Create one system in portal which will connect to your desired backend using SSO. Once it succeeds.
    Then create an SAP transaction iview from iview template which will point to this created sytem.
    You must be having some t-code to directly access your module in the R/3.
    You have to enter this t-code in the Transaction code property of the iview. After creating this iview and proper SSO settings, when you pre-view this iView it will directly open the first screen of your module/application in the backend system.
    let me know if you face any issues in this.
    also see my postings in following threads:-
    Re: How to Connect Backend R/3 system to EP 2004S
    Re: How to configure SAP R3 system to Portal
    Regards,
    Yogesh...

Maybe you are looking for

  • Sharing one itunes account with two computers

    I used to share my itunes account with my sister and our ipods were synched to one computer. We now have two new computers and would still like to continue to share that account. Is it possible to open the same account on two separate computers?

  • Sharing some library items with another itunes library on the same computer

    My daughter had pretty much taken over my ipod, and thankfully just received her own for her birthday. I'm not interested in much of her music choice, so I think she should have her own itunes library; however many of the songs in my itunes library a

  • How to provide user authentication to a PDF form

    Guys I have develop a webservice on XI , and I am calling that webservice using PDF forms developed in WebDynpro . The problem is the webservice needs user authentication and I don't know how to pass user id and password from pdf form to web service

  • I use a popup ads opener but recently it goes maximized and i wan it minimized all the time.

    My problem is the auto maximize of the browser.i don't know how to disable it. I use a site that automatically opens popups every 30 sec.it wasn't auto maximize before and i dont know what happened to it.so there must be a reason for it.

  • Extending inner [nested] classes

    OK I've got a class (A) with a nested class (B). B accesses variables etc. in A and does its own thing, but what I'd like to do is make B abstract and have a number of classes extend it - which is used depends on program arguments. The problem I'm ha