How to connect LDAP to Enterprise Portal

Hi Guru,
            I need complete steps to connect LDAP into enterprise portal as LDAP is microsoft AD existing one.            
        I am confuse about the user mapping and authenticatation, compareing and Single sign one.  Does we are calling Log on ticket to the first screen of enterprise portal where we enter user ID and password or ?.
             One situation is that one SAP Enterprise portal acts as comparing user id against AD(LDAP) and issue logon ticket. Other system who is accepting the logon ticket is also SAP Netweaver and has its own portal. It has it own login module.
          My first question is " How to establish connection to AD in to on SAP Enterprise Portal
Second is  " How to establish connection to that SAP enterprise portal to SAP Netweaver own portal".
Third is " If we are trying to access to SAP Netweaver application through SAP Enterprise portal , how we can able to access, do we need to accesss through ivew of SAP Enterprise portal only or can we access the SAP Netweaver application as soon as we enter userid/passwd on first screen of Enterprise portal directly to SAP Netweaver application, without user the ivew of Enterprise portal
        If you guys understood this situation let me as soon as possible, cuz my boss is on my head. of send me your contack info to my email: [email protected]
Thanks
Happy

Hi Ben,
          Here is my situation is little bit different, we have application server which is SAP Netweaver and HR application is running on this server. we are trying to login into this system through its portal and it has attached with LDAP Microsoft AD.
         We set all LDAP setting and this application having its own login module and it added and I hav seen in Security policy of Visual administrator.
          Now tell me how to configure or adjust login modules with its own login module. How to set login modules stacks such that user ID is match with AD and issue login ticket or can login.
           We tested using user ID which contains in AD as well as Application server's database. we it is not able to login.
           If you see this message please send me your contact info to this email I will explain you more on my situation. Please it is so urgent that my boss is on my head
thanks
happyman
[email protected]

Similar Messages

  • How to access BAPI in enterprise portal perspective?

    hi,I am venkat new to the portal.can anyone plz tel me how to access BAPI in enterprise portal perspective?is done through JCo or any other database connection?I hav not seen in System Landscape about BAPI access.plz give guidance about BAPI interface in enterprise portal.Hope u  will understand the question and answer the query.
    thanx in advance.
    Regards:
    Venkataramana.

    Guys,
    Herez how you call a BAPI:
         public void buildConnection(){
              try {
                        System.out.println("**** DI2 *****");
                     //      Add a connection pool to the specified system
                     //    The pool will be saved in the pool list to be used
                     //    from other threads by JCO.getClient(SID).
                     //    The pool must be explicitely removed by JCO.removeClientPool(SID)
                       com.sap.mw.jco.JCO.addClientPool( SID,         // Alias for this pool
                                             10,          // Max. number of connections
                                             "040",       // SAP client
                                             "USERNAME",   // userid
                                             "PASSWORD",  // password
                                             "EN",        // language
                                             "IPADDRESS",// host name
                                             "40" );
                     //      Create a new repository
                     //    The repository caches the function and structure definitions
                     //    to be used for all calls to the system SID. The creation of
                     //    redundant instances cause performance and memory waste.
                       repository = com.sap.mw.jco.JCO.createRepository("MYRepository", SID);
                        JCO.Client client = null;
                        client = JCO.getClient(SID);
    //                 Get a function template from the repository
                        //IFunctionTemplate ftemplate = repository.getFunctionTemplate("BAPI_CUSTOMER_GETDETAIL2");
                        IFunctionTemplate ftemplate = repository.getFunctionTemplate("YGGLB_BAPI_YGGLB9PRK_PRKDOCU");
    //                 Create a function from the template
                        JCO.Function function = ftemplate.getFunction();
    //                 Get import (of Function Module) "Parameter list"
                        JCO.ParameterList input = function.getImportParameterList();
    //                 Set inputs for import parameters
                        //input.setValue("0000009000", "CUSTOMERNO");
                        //input.setValue("0248","COMPANYCODE");
    //                 Get import (of Function Module) "Structure list".
                       //JCO.Structure importStructure = function.getImportParameterList().getStructure("CUSTOMERADDRESS");
                        JCO.Structure importStructure = function.getImportParameterList().getStructure("IM_DOCUMENTHEADER");
    //                 Set values for import parameters (of Function Module) "Structure list"                     
                        importStructure.setValue( "SA", "DOC_TYPE" );
                        importStructure.setValue( "20080910", "PSTNG_DATE" );
                        importStructure.setValue( "20080910", "DOC_DATE");
                        importStructure.setValue( "BHARDWS", "USERNAME" );
                        importStructure.setValue( "2008", "FISC_YEAR" );
                        importStructure.setValue( "FRE1", "COMP_CODE" );
    //                 Get import (of Function Module) "Table list - 1".
                        JCO.Table orderPartners = function.getTableParameterList().getTable("TBL_ACCOUNTGL");
    //                 Set values for import parameters (of Function Module) "Table list - 1"
                        //Append Row -1
                        orderPartners.appendRow();
                       orderPartners.setValue("0000000001", "ITEMNO_ACC" );
                         orderPartners.setValue("0000400100", "GL_ACCOUNT" );
                        orderPartners.setValue("H", "DE_CRE_IND" );
                        orderPartners.setValue( "ANYTHING", "ITEM_TEXT" );
                        //orderPartners.setValue( "AG", "PROFIT_CTR" );
                        orderPartners.setValue( "AIG0000007", "COSTCENTER" );
                        //Append Row -2
                        orderPartners.appendRow();
                       orderPartners.setValue("0000000002", "ITEMNO_ACC" );
                        orderPartners.setValue("0000400100", "GL_ACCOUNT" );
                        orderPartners.setValue("S", "DE_CRE_IND" );
                        orderPartners.setValue( "NOTHING", "ITEM_TEXT" );
                        //orderPartners.setValue( "AG", "PROFIT_CTR" );
                        orderPartners.setValue( "AIG0000007", "COSTCENTER" );
    //                 Get import (of Function Module) "Table list - 2".
                        JCO.Table orderItems = function.getTableParameterList().getTable("TBL_CURRENCYAMOUNT");
    //                 Set values for import parameters (of Function Module) "Table list - 2"
                        //Append Row -1
                        orderItems.appendRow();
                       orderItems.setValue("0000000001", "ITEMNO_ACC" );
                        orderItems.setValue("USD", "CURRENCY" );
                        orderItems.setValue( "2000", "AMT_DOCCUR" );
                        //Append Row -2
                        orderItems.appendRow();
                       orderItems.setValue("0000000002", "ITEMNO_ACC" );
                        orderItems.setValue("USD", "CURRENCY" );
                        orderItems.setValue( "2000", "AMT_DOCCUR" );
    //                 Execute client
                        client.execute(function);
    //******************Start to work on fetching values now********************************
    //                 Get export (of Function Module) "Structure list".
                        /*JCO.Structure returnStructure = function.getExportParameterList().getStructure("CUSTOMERADDRESS");
                        JCO.Structure returnStructure2 = function.getExportParameterList().getStructure("CUSTOMERGENERALDETAIL");
                        returnStructure.getString("NAME");
                        returnStructure2.getString("ENTERED_BY");*/
    //                 Get export (of Function Module) "Table list"./// Create a new template if fetching table data from a different function module than above
                        //IFunctionTemplate ftemplateTable = repository.getFunctionTemplate("BAPI_CURRENCY_GETLIST");
                        //JCO.Function functionTable = ftemplateTable.getFunction();
                        //client.execute(functionTable);
                        JCO.Table table_return = function.getTableParameterList().getTable("RETURN");
                        Vector tbl = new Vector();
                        Vector row = new Vector();
                        Vector colNames = new Vector();
                        //Loop over all rows
                        do {
                        //Loop over all columns in the current row and add all those colums values to the current row
                        for (JCO.FieldIterator e = table_return.fields();
                             e.hasMoreElements();
                             JCO.Field field = e.nextField();
                             row.add(field.getString());
                             System.out.println(field.getName() + ":\t" + field.getString());
                             } // end for
                             //Add this newly built row to the table     
                             tbl.add(row);
                             } while (table_return.nextRow());
                             table_return = null;
                             table_return = function.getTableParameterList().getTable("RETURN");
                             table_return.nextRow();
                             for (JCO.FieldIterator e = table_return.fields();
                             e.hasMoreElements();
                             JCO.Field field = e.nextField();
                             colNames.add(field.getName().toString());
                        //DefaultTableViewModel dtvModel = new DefaultTableViewModel(tbl, colNames);
                        //beanObj.setModel(dtvModel);
                             System.err.println("getting value for you from session in Get Data 1:-");
                             JCO.releaseClient(client);
                        //     return dtvModel;
                   catch (JCO.Exception ex) {
                     System.out.println("Caught an exception: \n" + ex.getMessage());
                   }catch (Exception e){
                        System.out.println("Final Message" + e.getMessage());

  • Integration of  Adobe Connect and SAP Enterprise Portal

    Hi All,
      Is it possible to integrate Adobe Connect with SAP Enterprise Portal?
    If so , how it can be done? Provide me with some details , links and materials.
    Regards,
    Eben.

    HI,
    Yes, this is Possible.  You can use AppIntegrator Iview and Pass the URL for your Adobe Connect.
    Thanks and Regards
    Puneet

  • How to connect Businnes Object Enterprise XI R2 to Sharepoint 2007 web-part

    Dear all,
    How to connect Businnes Object Enterprise XI R2 to Sharepoint 2007 web-part?
    We've connected the SQL Server Analysis Services (OLAP) with Voyager, but how to create the dashboard/reporting/pivot-table/KPI with the web-part created with Business Object Enterprise?
    Thank you,
    Julius Fenata

    I am also looking at:
    1. Saving Webi reports on a SharePoint server.
    2. Launching BOBJ report viewer from the SharePoint server using SOA to view these reports.
    Has anyone done something similar? Any ideas and/or documentation available on this?
    Thanks,
    Kashif

  • Configure SSO Connection from SAP Enterprise Portal to BOE Server

    Hi Guys,
    We recently installed a BOE Server and want to connect it to our SAP Enterprise Portal. What we need is just to display the Crystal Reports via Enterprise Portal. We have set up the following:
    SAP EP with AD Authentication
    SAP EP configured with SNC to SAP BI7 system
    SAP BOE XI 3.1 - SAP Integration Kit
    BOE Server configured with SAP Authentication via SAP BI7 System
    We've also set up BOE IK iviews and URL iviews pointing to existing reports in BOE. However, when we access it from EP, it prompts for a username and login to BOE. Is there a way to configure these so that there is no prompt for login to BOE server and SSO is used? Is it also possible to have a service account (e.g. domain/crystal) that will run the reports in BOE everytime a user accesses a report from SAP EP?
    Let me know if this is at all possible

    Hi,
    You should configure InfoView for SSO first, which required infoview.xml file modification, using windows AD default authentication. If you want to utilize the OpenDocument URL for iView then you also need to configure OpenDocument.xml file for SSO also. The SAP portal must have trust relation with the SAP BW server so the Windows AD token can be authenticate with SAP BW server.
    If you want crystal user to run all the report then you will lose data security. It can be done by hard coding user name and password in the report properties and database logon but the SSO capability can be accomplished only by windows AD, SAP or LDAP.
    For more details check BOXI Admin guide and SAP Integration Guide.
    Thanks,
    Muhammad

  • How to Connect Adobe form to Portal

    hi sdn friends,
    How to connect R/3 Adobe form to the Enterprise Portal / Smart form to the Enterprise Portal
    plz help me
    thank u,
    praveen.

    That depends...
    If you need to display MSS forms into your portal, plz have a look at the Business Package for MSS. Interactive forms are presented in the portal via the ISRForm application (and PCRApplication).
    If you need to display your custom made forms into the portal, you can develop your own WebDynpro application that embeds the Adobe Interactive form.
    Could you explain more about your requirements?
    Cheers,
    Noë

  • How to connect oracle application server portal to MS access DataBase

    Hello,
    I am facing one problem here.
    Our client is having their database in MS access and they want to implement the oracle application server portal for their organization then how to connect the MS access DB to oracle Application server portal

    There is a worked example of how to connect oracle to an Excel spreadsheet, which is easily modifyable to read from an Access Database.
    http://asktom.oracle.com/pls/ask/f?p=4950:61:::::P61_ID:4406708207206#18830681837358
    I had some concurrency problems - only one person could use the link at any one time, so I used it to load the data into oracle tables.
    Tak

  • Error while testing connection WAS in Enterprise Portal

    Hi All,
    While performing the connection tests in SAP enterprise portal
    I have used user logon method UIDPW
    ITS connection and Connection Test for Connectors are getting successful but SAP Web AS Connection is showing -:
    Results
    1. The system ID is valid
    2. Retrieval of the system was successful
    3. The system object represents an SAP system
    4. The following parameters are valid: WAS Protocol (http) WAS Host Name (sapserver1)
    *5. HTTP/S connection failed *
    Settings for WAS
    WAS Description: IP address of the system
    WAS Host Name: sapserver1
    WAS Host Name: Pls tell me the correct path
    WAS Protocol: http
    Waiting for your quick responses.
    Thanks & Regards,
    Prashant.

    Hi Juan,
    As far i know he is trying to test the  was connection from his portal
    While performing the connection tests in SAP enterprise portal
    WAS Description: IP address of the system
    WAS Host Name: sapserver1
    WAS Host Name: Pls tell me the correct path
    WAS Protocol: http
    As far as my understanding,this he would be looking for this,
    any ways this is my perception.
    Regards,
    Vamshi.

  • How to Connect SQL Server enterprises Manager Version 8.0 with Form 6i

    Dear experts
    I want to know that How can I connect SQL server Enterprise Manager Version 8.0 with Forms/reprots 6i.
    currently I have oracle 9i database at server windows 2003 and I also connected with client (my PC) I work on server.
    I also have SQL server in that server 2003 machine and this SQL Server also work with other clients that have VB program.
    I want to know that can I connect with this SQL server with Form 6i?

    You can't. The closest thing would be to create links in an oracle database to the SQL Server database using Heteregeneous Services and connect forms to the that.
    This forum is for the SQLDeveloper tool. You will get more complete answers in the "Database General", or "Heterogeneous Services" forums

  • How to install and add Enterprise Portal over an existing ECC server

    Hi Guys
    We have already installed the ERP package (ECC) and we have enough memory and diskspace on the server and there we are considering installing Enterprise Portal over the existing server so that we can use both ECC and EP.
    How can we do this? What are the steps to do it? I want to make sure that we don't corrupt the existing SAP stuff on the server, but just want to install enterprise portal .
    Your comments or suggestions will be highly appreciated.
    Thanks
    Ram

    just went ahead and installed from scratch

  • How to call BAPI in Enterprise Portal java

    Hi,
    In SAP R3 i created a BAPI .Now i want to call that BAPI from Enterprise Portal.
    How to do that?
    With regards,
    Suman Sahu

    Hi, Suman
      There are multiple ways to do this.
      1. via Web Dynpro Java
      2. via other tools like visual composer
      3. via Web Services
      Well, option 1 would be direct and flexible.
      And please refer to here - Web Dynpro samples.
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/f0b0e990-0201-0010-cc96-d7ecd2e51715
      Best Regards.
      Sejoon

  • Why can I not connect to the Enterprise Portal?

    I downloaded & installed  the free trial version of the Web AS 6.40 on my laptop. I developed some test portal application and want to deploy this on the WEB AS server. The message I get is each time :
    Unable to connect to the Portal. Operation failed. Connection refused:connect. Please make sure the server localhost:8080 is running.
    Settings J2EE Engine
    "SAP J2EE Engine is installed on local host" checked
    system:J2E
    J2EE instance:0
    SCS instance: 1
    Settings Portal server:
    alias: leen
    host: localhost
    Port: 8080
    Login: administrator
    Description: test
    I started the SAP system with Start->Programs->SAP Management Console, right clicking the system node J2E and selecting start. Does this start also the EP??
    What do I wrong?

    Leendert,
    have you manually switched the port to 8080? By default, the j2ee engine's web server listens on port 50000 (or 50000+ system no*100  if system no != 00). The error "connection refused: connect" tells me, that there is currently no service listening on port 8080.
    On windows you can check the currently listening ports by entering netstat -a on the command line. Does 8080 show up there after having started the J2ee engine?
    Regards,
    Dominik

  • How to connect LDAP though SSL

    Hi,
    I had successfully configured iDS4.1 to be a Naming Information Server,
    and I applied a Test cert to it which generated from Verisign. Now I
    would like to let all LDAP client connect to my LDAP server though the
    encrytion port 636, what should i do?
    Thanks
    Matthew

    Matthew Cheung wrote:
    >
    I had successfully configured iDS4.1 to be a Naming Information Server,
    and I applied a Test cert to it which generated from Verisign. Now I
    would like to let all LDAP client connect to my LDAP server though the
    encrytion port 636, what should i do?
    When you want to connect to LDAP via SSL the server sends his
    certificate to the client. The client then wants to verify this cert and
    therefore he needs the certificate of the issuer of the server cert. If
    the verification fails (e.g the issuer cert is missing, no longer valid,
    revoked or not trusted) the client refuses the connection to the server.
    So all your clients need the certificate of the issuer of your Test
    cert. In your case insert the Verisign certificate into your LDAP
    Clients as a trusted CA certificate. Then configure your clients to use
    a secure connection with host = your.ldap.host and port = 636 (or
    whatever port you use for encrypted connections). You also need the
    baseDN and maybe a bindDN and password.
    Armin Wenz

  • How insert Enterprise portal in Solution Manager

    Hi guys,
    Can anyone explane me how can I insert an enterprise portal in Solution Manager?
    I have execute this steps:
    - transaction smsy
    - landscape components -> Systems -> Create New System With Assistant
    - Choose SAP Enterprise portal
    After that I can see the Entreprise portal in smsy but I haven't inserted the ip of EP.
    How can connect the E.P. with my solution manager?
    I would  configure the "System Monitoring" scenario for EP..
    Thank in advance for help.
    best regards
    giovanni

    does this actually work out?
    To have SolMan 7.0 EHp1 installed and than to install SAP EPC on top of this?
    SAP EPC is based on NW, so is SolMan 7.0. But according to the SolMan 7.0 Master Guide EPC/EP is not listed as a available Usage Type
    Nesimi

  • Error when configuring Web Dispatcher for SSL with Enterprise Portal

    We are in the process of configuring the Web Dispatcher using SSL to connect to our Enterprise Portal (the Web Dispatcher will be in the DMZ).  We have followed all of the help.sap.com guides and now have SSL listening on the EP side (port 8103).  We are now receiving this strange certificate error when we start the Web Dispatcher:
    [Thr 5332] Tue Mar 20 00:36:23 2007
    [Thr 5332]   MatchTargetName("<FULLY QUALIFIED HOSTNAME>", "CN=XXX, OU=XXX, O=XXXX, C=XX") FAILS
    [Thr 5332]   SSL socket: local=<IPADDRESS>:4742  peer=<IPADDRESS>:8103
    [Thr 5332] <<- ERROR: SapSSLSessionStart(sssl_hdl=009D7670)==SSSLERR_SERVER_CERT_MISMATCH
    [Thr 5332] *** ERROR => IcmConnInitClientSSL: SapSSLSessionStart failed (-30): SSSLERR_SERVER_CERT_MISMATCH [icxxconn.c 2005]
    [Thr 5332] *** ERROR => IcmConnClientRqCreate() failed (rc=-14) [icrxx.c      4919]
    [Thr 5332] *** ERROR => Could not connect to SAP Message Server at <FULLY QUALIFIED HOST NAME>. URL=/msgserver/text/logon?version=1.2 [icrxx.c      2301]
    [Thr 5332] *** ERROR => rc=-1, HTTP response code: 0 [icrxx.c      2302]
    [Thr 5332] *** ERROR => see also OSS note 552286 [icrxx.c      2303]
    We have gone through the trouble shooting note 552286 as listed in the error above.  Any assistance is appreciated.

    Hello, did you receive any resolution for this problem?  We are receiving a similar error and I am unsure of how to resolve.

Maybe you are looking for