Problem during the XI Post Installation in XI 3.0

Hi,
I have completed the XI Installation and doing the post installation activities in 3.0.
When i try to create the RFC Destinations using SM59, I am getting the following error for
INTEGRATION_DIRECTORY_HMI
After completing the technical details and entered into Logondata/security tab.
I was choosed as SAP Basic Authentication, then immediately i got the following Error.
SSL Client PSE DFAULT does not exists.
And all the Logon data details fields are not editable.
Please let me know what went wrong and the possible solution.
Thanks and Regards,
Sekar

Note 852688 - "SSL Client PSE DFAULT does not exist" in Transaction SM59
Please go through the above note. This is a program error. We implemented this note and it resolved our issue. But before implementing, make sure that SSL connection is set to H or G.
Reward points if it helped.
Thanks
Subbu

Similar Messages

  • Hyper-V 2012 R2. RemoteFx. "The remote session was disconnected because there were network problems during the licensing protocol. Please try connecting to the remote computer again."

    After a Installation from Windows 8.1/windows 7 everything works fine. For example  Install updates and Software. If I connect the first time a remotefx card i can use RDP as well. But if i restart the host I get the mentioned error. What can I do. These
    Hosts are not in a domain configuration. I tried it too but there was  no difference. I didn't discovered any errors in the eventlog, too. Only an actviex error. But same errors occurs with a succsefull rdp session.
    Also strange is if i start the vm without a remotefx card it works fine again. Only session with a Remotefx card aren't possible anymore.
    Is there a bug or something. I tried it many times with the same error.
    Maybe someone can help me. 
    kind regards  
    Tobi

    Hi Tobi,
    Thank you for posting in Windows Server Forum.
    For a workaround, please try to perform the two steps.
    1. Do NOT enable RDP 8 on the Windows 7 SP1 VM.  You should install RDP 8 and update the ICs though.
    2. Change the connection setting on the client from "Automatically detect" to "LAN"
    Please check again below thread for information.
    a. "The remote session was disconnected
    because there were network problems during the licensing protocol" after enabling RemoteFX Windows 8 VM
    (Please recheck answer by “dgeddes”)
    b. "The remote session
    was disconnected because there were network problems during the licensing protocol" After Installing RemoteFX
    Hope it helps!
    Thanks,
    Dharmesh

  • Problem during the changing of  Password in Active Directory

    Hello All !
    I am facing a problem during the password modification
    in active directory, i got the same exception as other are getting i.e
    javax.naming.OperationNotSupportedException: [LDAP: error code  53 - 00002077: SvcErr: DSID-03190959, problem 5003 (WILL_NOT_PERFORM), data 0
                       Can any body help me how i will come to know that 128 bit
      Encryption is done successfully. Although i Installed the  MS High Encryption  Pack but it's registry is not done in Conrol Panel.
    is this a problem(as i think) ?
        I am giving the code please check it out->
                          import java.util.Hashtable;
    import javax.naming.*;
    import javax.naming.ldap.*;
    import javax.naming.directory.*;
    //import java.io.*;
    //import javax.net.ssl.*;
    //import java.security.*;
    import java.io.UnsupportedEncodingException;
    public class setpassword
         public static void main (String[] args)
              Hashtable env = new Hashtable();
              String adminPassword = "";
              String userName = "ou=MCA,ou=Trainee,dc=ControlsNet,dc=local";
              String newPassword = "yadav";
              String keystore = "D:\\j2sdk1.4.2_12\\jre\\lib\\security\\cacerts";
              System.setProperty("javax.net.ssl.trustStore",keystore);
              env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
              env.put(Context.SECURITY_AUTHENTICATION,"simple");
              env.put(Context.SECURITY_PRINCIPAL,"[email protected]");
              env.put(Context.SECURITY_CREDENTIALS,adminPassword);
              env.put(Context.SECURITY_PROTOCOL,"ssl");
              String ldapURL = "ldap://gateway.ControlsNet.local:636/";
              env.put(Context.PROVIDER_URL,ldapURL);
              try {
                   LdapContext ctx = new InitialLdapContext(env,null);
              ModificationItem[] mods = new ModificationItem[1];
                   String newQuotedPassword = "\"" + newPassword + "\"";
                   byte[] newUnicodePassword = newQuotedPassword.getBytes("UTF-16LE");
                   mods[0] = new ModificationItem(DirContext.REPLACE_ATTRIBUTE, new BasicAttribute("unicodePwd", newUnicodePassword));
                   ctx.modifyAttributes(userName, mods);
              System.out.println("Reset Password for: " + userName);     
                   ctx.close();
              catch (NamingException e) {
                   System.out.println("Problem resetting password: " + e);
              catch (UnsupportedEncodingException e) {
                   System.out.println("Problem encoding password: " + e);
    Please reply me immideiately as soon as you see this problem.
    I think some of u already solved this problem. thanks in advance.

    Believe it or not, looks similar to the problem in the post http://forum.java.sun.com/thread.jspa?threadID=580113&tstart=0
    More unbelievable is the huge security hole in your network !String adminPassword = "";
    env.put(Context.SECURITY_PRINCIPAL,"[email protected]");
    env.put(Context.SECURITY_CREDENTIALS,adminPassword);An administrator with a blank password !
    The ldap standard (rfc 2251) defines an anonymous user as a user with a null passsword. By default, Active Directory does not allow anonymous users to perform searches against the directory, let alone reset a user's password.

  • Incorrect Cash Discount info was called during the Invoice Posting in FB01

    Hi,
    I'm having an issue where when I post the Invoice via FB01 using a non-default payment term for a specific supplier, FB01 seems to be replacing the Cash Discount information base on the supplier default payment term. I have tried to debug and suspect it was due to the FM#  FI_CHANGE_PAYMENT_CONDITIONS.
    It happens whenever there is a payment method insert in the FB01 transaction during  the invoice posting. If the payment method was left blank, there will be no issue on the cash discount.
    I saw that there is a fix from SAP for OSS Note 1314271 - Discount days not adjusted after changing Payment term. This fix added a new statement into the FM# shown as bold at the statement below:
        IF i_newsklin NE i_oldsklin OR i_zbdreq = char_x        
             OR I_OLDZLSCH NE I_ZLSCH.                                "Note1314271
                          CONCATENATE 'S' status INTO status.
        ENDIF.
    In layman term, below will be the summary of the coding above:
      IF NewCashDiscount NE OldCashDiscount OR TermOfInstallmentPayment = u2018Xu2019        
         OR OldPaymentMethod NE NewPaymentMethod                            
          CONCATENATE 'S' status INTO status. (No idea what is this statement trying to achieve)
      ENDIF
    Kindly share with me if you have experienced this before.
    Your advice is very much appreciated.
    Thanks,
    David
    Edited by: DAVID LIM on May 20, 2010 4:46 AM

    Hi Shashi
    Cash Discount amount can be modified manually?
    Go to the 'Cash Discount' Tab and type the correct discount. The difference may be a result of rounding differences.
    Hope this is useful!
    Thanks & Regards
    Fede

  • Vendor Reconcilation account change during the document posting

    Hello Experts,
    I have one doubt about the Vendor Reconcilation account change during the document posting.
    Is there any way/possibility to change the vendor reconcillation account during the document posting, for a particular vendor.
    If is there any chance please let me know the way how to change it and also letme know the impact of this.
    Thanks in Adavance,
    Satya

    The System always takes the reconciliation account stored into the Vendor master data.
    Technically it is possible to change reconciliation account in vendor master record as follows:
    1) SPRO -> Financial Accounting -> AR and AP -> Vendor accounts -> Master Records -> Preparations for Creating Vendor Master Records -> Define Screen Layout per Activity (Vendors) -> Change Vendor (Accounting) -> Company Code Data ->
    Account management -> field 'Reconciliation account' set to 'optional entry'
    2) Then system will allow you to change reconciliation account in vendor master record.
    In general you can only change recon account when balance is zero.
    "By changing the reconciliation account in the open item master record the proportionate values from the items open at the time of change are not posted to the new reconciliation account.
    Hope this claifies.
    Kind Regards
    Soumya
    Edited by: Soumya Rao on Oct 13, 2011 12:51 PM

  • RDC for MAC cannot connect to TS server with error message "You were disconnected from the Windows-based computer because of problems during the licensing protocol".

    the mac clients are running RDC for mac version 2.1 and they cannot connect to Windows 2008 R2 TS server. They get the error "You were disconnected from the Windows-based computer because of problems during the licensing protocol".
    really appreciated if someone have a fix for this.
    thanks,
    /dan

    Hey,
    Any proposed answer for this ?
    I face the same problem and my environment 
    and I've got same results as dle2k
    1. TS lic mode is set to per user confirmed it works for windows clients.
    2. the TS server's system log logged error "The Terminal Server security layer detected an error in the protocol stream and has disconnected the client".
    3. the reports shows per user cal has been issued to users. no temp per device cal has been issued.
    4. yes, CoRD works .
    5. we tried version 2.1.1 of the Mac RD Client but it also does not work.

  • I had problems during the download.

    I purchased Adobe Photoshop Elements 12...I had problems during the download...is it possible to get a hard copy on disc?

    Try downloading the trial instead. It's the same file, just without the added hassles from the application manager.

  • Problem during the simulation of IP Xilinx EM-DI-40GEMAC-PROJ

    Hello,
    I'm currently working with the IP Xilinx EM-DI-40GEMAC-PROJ and during a simulation i got a two errors when sending 20000 frames.
    The test consist in creating a loopback with two instance of Xilinx EM-DI-40GEMAC-PROJ. I write data on the LBUS interface on the first IP, the data go to the second IP, then go into a FIFO, then the data from the fifo enter the second IP and i read the data on the output port of the LBUS interface in the first IP.
    so the data path is the following :
    input LBUS IP 1 =>  output serdes IP 1 => input serdes IP 2 => output LBUS IP 2 => input FIFO =>
    => output FIFO => input LBUS IP 2 => output serdes IP 2 => input serdes IP 1 => output LBUS IP 1
    the data sends where the same for the 20000 frames, six words of 256 bits and a seven one with only 32 bits.
    i check that the data where send as they should be, in compliance with the LBUS protocol.
    A new frame was send 100ns after the previous one was send.
    when i check for the two errors, i see no problem during the first phase of the test (before the fifo) but during the other, in found two frame with bad FCS status
    could you please help me resolve this issue
    kind regards
    Raphaël Lemaire

     You can ignore them safely if there are no critcal warnings

  • Problems during the installation of NSU

    Hi everybody! I have Nokia N95, it's my first Nokia ) Today I downloaded NSU and tried to install it. I had an error ("Command line option syntax error. Type Command /? for Help") during the installation of Microsoft Visual C 2005 Redistributable. I skiped this error and continued installation of NSU. All was ok untill the last moment, when I wanted to upgrade the firmware on my N95: there was just white screen ( in the NSU) on my PC and noting more, so I had cancelled the process. I think, that this problem occured because of that error with Microsoft Visual C2005 Redistributable.
    What do I have to do? Thanks for all answers )

    I have the same problem with my nokia E50, but no one have helped me.

  • "Program files" directory problem during Microsoft Office Customization Installer in non-English versions of Windows

    We have a document-level customization solution for Word and are experiencing problems during deployment in an environment running on terminal services. The OS (Windows 2012) is English and Word (2013) is non-English (German). 
    Installation is done into the "Program Files" folder correctly. But when trying to start a word document linked to the specific template. The "Microsoft Office Customization Installer" pops up with the error.
    "There was an error during installation"
    From: file:///C:/Programme/[CompanyName]/[Productname]/[Productname].vsto
    Downloading file:///c:/Programme/[CompanyName]/[Productname]/[Productname].vsto did not succeed.
    Exception: ....
    System.Deployment.Application.DeploymentDonwloadException: Download file:///C:/Programme/[Companyname]/Productname]/[Productname].vsto did not suceed. ---> System.Net.WebException: Could not find a part of the path 'C:\Programme\[Companyname]\[Productname]\[Productname].vsto'.
    ---> System.Net.WebException: ...... ---> System.IO.DirectoyNotFoundException......
    The problem seems to be that the installer is looking for C:\PROGRAMME instead of C:\PROGRAM FILES. C:\PROGAMME is the German localized name of PROGRAM FILES (http://en.wikipedia.org/wiki/Program_Files).
    The installer installs the solution correctly deployed into c:\program files, but when the later a user tries to start it and the Microsoft Office Customization Installer is called, it tries to access the non-existing "c:\programme" folder. This
    doesn't exist, because Windows is English.
    Is there any thing related to deploying solutions on a platform which has different languages (mixing/matching of OS language and Office language?)
    Thank you for your help

    Hello,
    1. First, I would confirm with you whether you dealt with the localization for your document-level add-in?
    2. Did you use this way to define the Create a class that defines the post-deployment action part of Put the document of a solution
    onto the end user's computer (document-level customizations only) and did you get the path with Environment.SpecialFolder enum?
    To handle this, I would recommend you consider using Environment.SpecialFolder to set that property.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SLD port problem in Netweaver XI post installation configuration steps

    Hi All,
        Recently we changed the port number of the SAP server to 80.Every thing working fine.
    When ever we are configuring the XI that mean the post installation steps for Exchange Infrastructure it giving the errors in machine_technical_configuration  step.
    Error Message is:
    Element 'SAPConfigLib.NW5.Unclassified.addInstalledProduct':!BrokerImport.import_of_element_failed!!BrokerImport.Fehler!com.sap.tc.lm.ctc.cul.cpi.exceptions.CPIBaseException: <Localization failed: ResourceBundle='com.sap.tc.lm.ctc.cul.cpi.CPIResourceBundle', ID='com.sap.tc.lm.ctc.cul.cpi.BaseException_BASE_EXCEPTION', Arguments: []> : Can't find resource for bundle java.util.PropertyResourceBundle, key com.sap.tc.lm.ctc.cul.cpi.BaseException_BASE_EXCEPTION:com.sap.tc.lm.ctc.provider.javaServiceProvider.JavaServiceWriter.writeElement!BrokerImport.LINE!157-:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.86
    -:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.128
    -:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.128
    -:com.sap.tc.lm.ctc.cul.serviceimpl.importservice.CULConfigurationImport.importConfiguration.96
    -:com.sap.tc.lm.ctc.ccl.templateinstaller.StepExecuter.run.41
    Element 'SAPConfigLib.NW5.Unclassified.addInstalledProduct':Error during executing Java Reflection:IO error: Unable to open connection to host "mmsr18:50000". The host is down or unavailable..
    Is there any solution to solve this....
    Thanks & Regards,
    Vivek.

    hi
    check if the new port(80) is maintained in tcode- sldapicust
    Thx
    jonu

  • Problem in XI after post installation.

    I have done the post installation for PI, everything was fine and sucessfull,
    but the problem is, in XI check list there is no objects found in the Integration Repository and Integration Directory with the URL  ( http:
    emsap008:50100\rep\start\index.asp ).
    Let me explain the problem which i faced.
    In the transaction SXMB_IFR --> Tool --> Import Design Objects Option, the result displaied is " There is no Objects found ". But as per the document i need to get               " PI7_0_BASIS_6.40_18_00.tpz ".
    Please clarify my doubt, ask me if my question is insuffecient.

    Hi Senthil !!
    Here is the guide with necessary steps
    http://help.sap.com/bp_bpmv130/Documentation/Installation/XI30InstallGuide.pdf
    /people/sravya.talanki2/blog/2006/11/15/post-installation-steps-for-activating-adobe-document-services-in-sap-xi-nw-2004s
    You will get the details of post installation activities for SAP XI in its installation guides itself. Have a look:
    SAP Exchange Infrastructure Release 3.0 - Installation Guide
    SAP Exchange Infrastructure 3.0 SR1 - Installation Guide
    Plus you can go through the following docs:
    SAP Exchange Infrastructure (XI) 3.0
    Troubleshooting Guide - SAP XI 3.0 and 2.0
    SAP XI Release 3.0 SPS11Configuration Guide
    Also you can have a look at the following thread, you will get some links in these threads too:
    Post installation of XI?
    XI INSTALLATION and POSTINSTALLATION
    XI Post Installation....Need help...
    XI Post Installation - Help
    XI Post Installation - SLD Connection
    refre this thread
    Post Installation of PI - PI template Installer not found
    <b>Pls rewards if useful</b>

  • Problem during the  assets entryat the time of service sheet

    Sir,
    I will face the problem at the time of services sheet as per following information.
    Actuaally i implemented the busi. area as Dealer I Want capitalized that bur at the time of entery the
    the service sheet i faced the problem.
    problem:
    you cant post to this assets( Assets180 0blocked for acuisistions)
    procedure remove tha blocked indicator in the master record or post diff. assets
    regardinng this procedure  i wnat to detail procedure  or doc.

    done by call sercvice center facility

  • Problem during the setting the query data source name in forms 6i

    We are now doing assignments in forms 6i actually there is a problem during setting the query data source name in run time.
    The problem is
    declare
    v_query varchar2(200),
    begin
    v_query :='(select empno,ename,deptno from emp where hiredate =' || control .value1 ||')';
    go_block('emp');
    set_block_property('emp',query_data_source_name,v_query);
    end;
    that bolded area is the problem that ia varchar value the single qoutes embedded with that value.how can i embedded single qoutes in that concatenation.
    That is now query will run like select empno,ename,deptno from emp where hiredate =control.value
    But we need like select empno,ename,deptno from emp where hiredate ='control.value'
    Message was edited by:
    Punithavel

    Thanks for your response
    We fixed the error
    and the answer is
    declare
    v_query varchar2(200),
    begin
    v_query :='(select empno,ename,deptno from emp where hiredate = ' ' ' || control .value1 ||' ' ' ) ' ;
    go_block('emp');
    set_block_property('emp',query_data_source_name,v_query);
    end;

  • Fixing problems with the Microsoft Windows Installer Cleanup Utility

    Sorry for the long subject. I am having what appear to be common problems with my acrobat reader for which the only solution appears to be using the microsoft windows installer cleanup thing.
    I have acheived downloading the utility to my desktop but when I try to run it I get an error message as follows:
    Across the top of the message it says 'WINDOWS SCRIPT HOST' and in the box it says:
    Script: C:\DOCUMEN~1\Karen\LOCAL~1\Temp\IXP000.TMP\StartMsi.vbs
    Line: 1
    Char: 1
    Error: The specified module could not be found
    Code: 800700E
    Source: (Null)
    Does anyone have any clues as to where I can go from here as I am stuck with a program I can neither use or uninstall, and a reascue plan that doesn't want to cooperate either. And please treat me like a 2 yr old with the technical stuff. Thanks. :-)
    Karen

    Can you try to download it again, perhaps to the C:\ drive rather than the Desktop? Delete the Desktop download, then open Windows Explorer, and run the installer from the C:\ drive.
    P.S. do you have administrative privileges on your system?

Maybe you are looking for