XI system to SAP R/3 system.

hi,
we are using XI and SAP system.the data transfer from XI to SAP system through IDOC format.
my system is INbound system ie SAP system.
here we are using the message type is HRMD_A.
idoc type is HRMD_A05.
the Idoc is generated in the OUTbound system ie XI system..
the same IDOC should process in the Inbound system ie SAP r/3 system..
from my point of view how i need to start ..to connect the XI system.
can any one help in the view of XI -
SAP ALE/IDoc scenero...
thanks.
partha.

Hi,
Just think about your Inbound System (SAP).
Here you have to do some ALE settings with the Outbound.
Create the Logical systems/Assign to clients
RFC destination
port and Partner profiles creation
while creating Inbound/Outbound parameters assign the
  function module IDOC_INPUT_HRMD to the process code.
The above FM will tkae care of the posting data in
  the DB.
Thanks
Eswar

Similar Messages

  • Unable to import idoc into PI 7.0 system from SAP r/3 system

    Hi Experts,
        I am getting an error while importing an Idoc structure from SAP r/3 system. The error says "unable to read Idoc segments". The Idoc has recently undergone changes. When We are looking at the struture of idoc through IDOCSYN table it is showing updated structure in SAP R/3 system but import to SAP XI is failing.
    Can you suggest some way to tackle this kind of problem.
    regards
    Anupam

    Hi Francis,
       This was indeed an authorization issue. Thank you so much for your valuable suggestion. The user lacked proper authorization to import the idocs.
    Hi All,
        Thank you for all your support. 
    Regards
    Anupam

  • How we can integrate ep system with SAP R/3 system

    I want to integrate SAP EP(7.0) system with SAP R/3.Can any body guide me the step by step method to integrate the above two system.
    How we can configure SLD with J2EE engin?How we can established the JCO connection?
    Thanks
    Kundan

    Hi,
      Why don't you use search functionality in SDN? You can get lots of guides. This question is repeated lots of times.
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/ep/how%252bto%252bconnect%252bto%252bsap%252br3%252bsystem%252bthrough%252benterprise%252bportal%252b7.0%252busing%252ban%252biview.
    Configuring SLD in Sneak Preview SAP NetWeaver '04 Sneak
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0c1d495-048e-2b10-babd-924a136f56b5
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3d7db2e5-0601-0010-4a88-9f3498f8142f
    Regards,
    Harini S

  • Steps in after migration of fixed assets in SAP R/3 System

    Hi Guru's,
    I migrated all fixed assets from legacy system to SAP R/3 system. Dev,Quality and Mock Production Server.
    Could anybody guide me what is the next process in Fixed Assets?
    That would be greate help from our Guru's
    Regards
    Odaiah Pelley

    Report S_ALR_87011964 will be able to give you a report by Asset Class.
    In terms of the data you have migrated, I am guessing in your current system there is a way to get the same data and therefore you should compare.
    Another check is the total posting you have made to the GL Data Migration account is the same as the total balance in your current system.
    FS10 will give you this.
    Lastly you can also use FS10 for the asset recon accounts if they are grouped in a similar way in your current system.
    The business lead should be able to help you with the data they have and how they could reconcile their data.

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

  • Help on accessing table available in SAP R/3 System

    Hi All
    A day before I had posted a question regarding the accessing of tables available in SAP R/3 system. 
    I got the following code as reply.  This code is working fine. 
    But in the below example, the QUERY_TABLE IS BSAUTHORS. 
    In my case, the QUERY_TABLE is VBKD(Sales Document Table). 
    When I replace the table name with VBKD in place of BSAUTHORS, I am getting the following error:
    ERROR  BEGIN----
    com.sap.mw.jco.JCO$AbapException: (126) DATA_BUFFER_EXCEEDED: Selected fields do not fit into structure DATA
         at com.sap.mw.jco.JCO$Function.getException(JCO.java:17978)
         at com.sap.mw.jco.JCO$Client.execute(JCO.java:3143)
         at com.insync.JCO.UpdateSalesOrder.main(UpdateSalesOrder.java:34)
    ERROR END----
    Can anyone please give me a solution for this?
    Thanks in Advace,
    Vijay.
    **********************Code**********************
    import com.sap.mw.jco.*;
    public class JcoTest {
    private static JCO.Client theConnection;
    private static IRepository theRepository;
    public static void main(String[] args) {
      createConnection();
      retrieveRepository(); 
      try {
      JCO.Function function = getFunction("RFC_READ_TABLE");
      JCO.ParameterList listParams = function.getImportParameterList();
      listParams.setValue("BSAUTHORS", "QUERY_TABLE");
    //listParams.setValue("VBKD", "QUERY_TABLE"); // ERROR
      theConnection.execute(function);
      JCO.Table tableList = function.getTableParameterList().getTable("DATA");
      if (tableList.getNumRows() > 0) {
       do {
        for (JCO.FieldIterator fI = tableList.fields();
          fI.hasMoreElements();)
          JCO.Field tabField = fI.nextField();
          System.out.println(tabField.getName()
               + ":t" +
               tabField.getString());
         System.out.println("n");
       while (tableList.nextRow() == true);
      catch (Exception ex) {
       ex.printStackTrace();

    I am also facing the same issue when using 4-way CPU for processing RFC_READ_TABLE I get following error (Error: DATA_BUFFER_EXCEEDED: Selected fields do not fit into structure DATA) .
    when I set the NO_DATA=X in RFC_READ_TABLE then returned data object is empty , is this expected behavior  ? if yes then how do we extract data without getting this error .Help is greatly appreciated

  • Technical systems and Business systems in SAP XI

    can any one tell me ,breifly explain the  diff b/w <b>Technical Systems</b> & Business Systems?
    steps to create Techincal system and Business systems?
    and also Steps for creating Software Components? For Technical System we can create more than one Business systems ,what it means?can any one explain?

    Hi
    First I let u know with analogy and actual definition as below
    Any module of SAP like MM, SRM, FICO ets makes a logical system in combination according to business requirements is a business system which is actualy hosted on an application server like ABAP AS or Java AS which is basically a technical system.
    Technical systems are application systems that are installed in system landscape (a CRM server, for example). Most systems (Web AS ABAP and Web AS Java systems) automatically report information to the SLD about the elements that they contain by using the SLD data supplier programs. You need to manually register the following types of system only:
    Standalone Java systems
    Third-party systems
    Business systems are logical senders or receivers that exchange messages by using SAP XI and that are entered in the System Landscape Directory.
    The business systems in the System Landscape Directory relate to a system landscape.
    The business systems of business partners are not entered in the System Landscape Directory. To be able to address such business partners logically, use services in the Integration Directory. A business system is a way of specifying a service in the Integration Directory more precisely (business system service).
    U can also refer Blog's
    Re: Difference betweeen     Technical systems and Business systems
    For creation of software component see link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3172d290-0201-0010-2b80-c59c8292dcc9
    <b>Reward point if it help u understand
    </b>
    Message was edited by:
            Ajay Kumar

  • Migrating an SAP 4.7x110 system on W2003 32-bit to a 64-bit host (x86_64)

    We want to migrate an SAP 4.7x110 system on Windows Server 2003 32-bit to a 64-bit host (x86_64). Afterwards we want to upgrade the system to ECC 6.0.
    According to PAM, 4.7x110 is not supported on Windows 64-bit.
    According to note 960769,
    "After the migration to the 64-bit hardware, your SAP system may have a status that is not supported by SAP for productive use (see Note 814834). You may need to upgrade to a new SAP release. In this exceptional circumstance, SAP offers support for the duration of the upgrade.  Note that SAP does not support a longer, more productive use of such a system for the period after the migration and before the upgrade....
    ...We generally recommend to use SQL Server 2005 (64-bit) for the productive use on x86_64. However, the 32-bit operation of SQL Server 2000 on Windows x86_64 64-Bit (supported by Microsoft) is also supported by SAP...
    ...The following table illustrates which OS/DB combination supports each SAP release in the target system.
    Source System   Target System (Kernel, DB Software)     Support Comment
    3.1I   3.1I 32-bit, MSSQL 2000 32-bit    only for upgrade (a,c)
    4.0B   4.0B 32-bit, MSSQL 2000 32-bit    only for upgrade (c)
    4.5B    4.5B 32-bit, MSSQL 2000 32-bit    only for upgrade (c)
    4.6C   4.6D 32-bit, MSSQL 2005 64-bit     productive (b)
    620   640 64-bit,  MSSQL 2005 64-bit    productive (b)
    640   640 64-bit,  MSSQL 2005 64-bit    productive (b)
    700   700 64-bit,  MSSQL 2005 64-bit    productive (b) "
    According to note 814834,
    "SAP supports the x86_64 platform on Windows 2003 Server SP1 x64 for kernel 4.6D and kernel 6.40 and higher. ... For product versions based on kernel 6.40 and higher, only 64-bit operation is supported."
    According to note 905634, about SQL Server 2005 support (where a mention to R3E 4.7 x110 is missing)
    "Supported SAP products based on SAP_BASIS 6.20 and SAP_BASIS 6.40
    Product Windows platforms
    BW 3.10 x86, IA-64
    SCM 4.0 x86, IA-64
    EBP/CRM 4.0 x86, IA-64
    ECC 5.0 SR1 x86, IA-64, x64
    NetWeaver'04 SR1 x86, IA-64, x64
    SCM 4.1 x86, IA-64, x64
    SRM 4.0 SR1 x86, IA-64, x64
    CRM 4.0 SR1 x86, IA-64, x64
    R3E 4.7 x200 SR1 x86, IA-64, x64
    SolMan 3.2 SR1 x86, IA-64, x64 "
    +//////////////////////+//
    According to all this information, may I move our 4.7x110 system onto a Windows Server 2003 SP1 64-bit, SQL Server 2005 64-bit, and after that we would upgrade to ECC 6.0?
    Thanks !!!
    Eva
    Edited by: Eva Verdaguer on Jul 25, 2008 12:41 PM

    Sorry, I forgot posting the SAP answer, which is also "Yes":
    30.07.2008 - 16:19:00 CET - Respuesta by SAP     
    Dear Eva,
    Yes, you can move to the 64 bit platform with SQL Server 2005 according
    to note 960769.
    Information in note 905634 means there is no installation DVD for
    release 47x110 for SQL Server 2005. So it is not possible to do a fresh
    installation of 47x110 except if you follow the workaround of note
    899111 (for x64).
    Best Regards,
    Manuel García Guardiola
    SAP Active Global Support - Netweaver Web Application Server
    ****************************************************************+
    Thanks very much for your message, anyway.
    Regards !!
    Eva

  • Export SAP GUI Logon system properites to another laptop

    Hi, SDN Fellows.
    I want to run SAP GUI logon systems in another laptop. After installing a new SAP GUI client. Instead of re-add the logon system properties, is that a way I can export and import from another laptop? Say I have 10 logon system properties (some with application server and some with logon groups), how do I pick the 8 of 10, and export to another SAP GUI in another laptop?
    Thanks,
    Kent

    Hello Kent,
    for SAP GUI for Windows 6.20 or 6.40, please have a look at [SAP note 512040|https://service.sap.com/sap/support/notes/512040], for SAP GUI for Windows 7.10 refer to [SAP note 1035560|https://service.sap.com/sap/support/notes/1035560] and for SAP GUI for Java please read chapter 7 of the manual included in the SAP GUI for Java installation.
    Best regards
    Rolf-Martin

  • 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

  • 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

  • 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

  • Middleware config setup in SAP R/3 system.

    Hi Guys,
    Can you please tell me the implications on the SRM system for the below changes.
    There was an issue in the CRM system  as some of the Bdocs getting failed in the CRM system, reason being tthe actual scenario is that we have CRM system and SRM system connected to ECC (XXX ) but both the entries have been created with user name CRM. That is the reason you are seeing two instances of RFC connections for CRM which actually is one entry for CRM and other for SRM system.This issue happens intermittantly and does not occur for all the Business partners. We are not sure about the steps to reproduce the issue as it does not happen for all the BP's but occurs intermittantly and we are unsure of the reason for the same.
    Finally came to know that its because of the SRM and CRM are connected with the  same user name CRM in the CRMRFCPAR.
    If I change the settings for SRM as per the SAP note number 720819 what would be the impact on the system and how to handle this. This is a production system.
    And Quality and Dev environments are not similar to Production environment.So cannot reproduce the same error.
    Regards
    Srujan K

    Hi Venkat,
    I am sorry If  I have not given you the clear information, In Quality and Dev the systems the CRM and SRM systems are connected to two different backend systems, But in Production system the same backend is being shared by the CRM and SRM.
    So the problem cannot be re-produced thats what I mean to say.  Hope you got my point now.
    Regards
    Srujann K.

  • SSO to mulitple SAP GUI based systems in the Portal

    Hi Experts,
    I need to create links for multiple SAP Systems (based on the SAP GUI) in the portal and implement SSO for them. Can someone tell me where and how to place these links in the portal? Is there a standard approach for this, like a "Systems" iview or something?
    Regards,
    Shobhit

    Hi,
    So have you created 5 diiferent systems on Portal corresponding to your backend systems :
    SAP ERP Dev
    SAP ERP Qua
    SAP ERP Prd
    SAP CRM Dev
    SAP SEM Dev
    Once you create the systems and the alias to these systems, you can create 5 iviews, one for each of these systems using SAP transaction iviews. The transaction code could be S000.
    To learn how to create systems and SAP Transaction iviews, use these links :
    <b>Creating system :</b> http://help.sap.com/saphelp_nw70/helpdata/en/ec/0fe43d19734b5ae10000000a11405a/content.htm
    <b>Editing system -> Editing SAP System properties </b> http://help.sap.com/saphelp_nw70/helpdata/en/42/11e43d19734b5ae10000000a11405a/frameset.htm
    The above links should help you create SAP systems and their aliases.
    Then you need to create SAP Transaction iviews:
    http://help.sap.com/saphelp_nw70/helpdata/en/88/266a3e54a2e946e10000000a114084/frameset.htm
    To open these iviews as a pop-up or in a new window, set the following property for each of these iviews in the property category "Drag and Relate" : Launch in New Window = Display in separate window.
    Set the <b>permission Read for Group Everyone</b> for each of these iviews.
    Hope this helps.
    Cheers,
    Sunil

  • How to implement SSO to non-SAP systems using SAP logon ticket?

    Hello,
    We would like to implement Single Sign On between our SAP Netweaver system and a Siebel which is a non-SAP system using SAP logon tickets.
    Can anyone please give me some leads on this, in particular:
    1. Is there a JAVA API or an SAP plug-in that can be implemented on the Siebel machine to extract the SAP logon ticket?
    2. As the other machine might seat on a complete different domain, is it possible to implement SAP logon ticket without using cookies (perhaps through the HTTP header?
    3. In case you think using SAP logon tickets is not the best solution here I would be happy to hear any other suggestions you might have.
    Roy

    Hi,
    I'm currently using SAML as well. Unfortunately the SAP J2EE cannot work as authority (identity provider) but what you can do is using an open implementation of SAML such as opensso which is an open version of SUNs Java System access manager.
    There are a couple of other projects such as opensaml, apache's wss4j or shibboleth that might be interesting in this context.
    I just installed opensso and got it working with SAP J2EE 7.0 using SAPs JAAS SAMLLoginModule to authenticate users within SAP J2EE.
    In this scenario opensso serves as identity provider just as you need! There are a couple of Policy agents available on SUNs Download site you can use with Apache, Tomcat, JBOSS, WebSphere, Bea Web Logic etc. in order to authenticate! Otherwise you just directly authenticate against opensso. When installing opensso you can configure the type of user store you want  to use! By default it uses LDAP but you can also use different types of user store using JDBC or other mechanisms. Since you have a Directory Service you could easily connect it to your existing directory.
    There is also a way to map user ids directly in opensso by adding a uid mapping class. I created some documentation with lots of screenshots about using opensso with SAP J2EE. You can easily use opensso with any other system that supports SAML. In the case of SAP the usage is currently limited to SAML versions 1.0 and 1.1. Version 2.0 is not yet supported but should be in one of the following versions.
    Here are some links you might want to check:
    OpenSAML: https://spaces.internet2.edu/display/OpenSAML/Home
    wss4j: http://ws.apache.org/wss4j/
    shibboleth: http://shibboleth.internet2.edu/
    opensso: https://opensso.dev.java.net/
    On SDN you will find a documentation on how to connect SUN Java System Access Manager to SAP J2EE (see https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/906d9fc6-31b9-2910-1385-90edad7d7570). As I said opensso is based on the SUN Access Manager code and looks quite the same. So you can adapt this documentation in order to configure opensso or you can just ask me for the documentation.
    Hope this is helpful...
    Let me know if you need further assistance on this topic
    Cheers

Maybe you are looking for

  • How about a 'suggestions' section? or something like that?

    How about make a section where users can suggest features that they wish implemented on apple products? For a start, I would like to make a suggestion to itunes. How about give an option to choose which part of the ipod/iphone/ipad to sync? For examp

  • Problem with Nidaqmx and dasylab 8

    I have 2 card synchronised in MAX(rtsi) and as master and slave in dasylab (ni daqmx 7.5 with dasylab 8) and when i synchronise the configuration in dasylab with MAX, then all configuration of dasylab 'in hardware setup'  of dasylab come as default o

  • How do I get my apps to my home screen when it's in my setting

    My Facebook app is in my setting but it's not on my home screen... When I go to App Store it says it's already down loaded... How do I get it to my home screen??

  • Setting the excel sheet cell category

    Hi all, I have a program which downloads SAP data in excel sheet using OLE (Function modules cannot be used as its multiple tab download). I am facing an issue regarding the date fields.The cell category (data type) is choosen randomly so the date is

  • Photo Libary for Windows? Not sure lightroom works?

    Hi all, Please can someone point me in the right Direction for a Photo libary for my design studio... I use lightroom for my camera photo collections and its ace...but Im looking for a programme thats similar but can sort all our images and Adobe fil