SRM XI standard content ...SRM Server 7.0 - Outbound proxy not working

Hello All,
we have integrated SRM SUS with ECC 6.0 using XI standard content XI SRMSERVER IC 7.0. With same configuration, Purchase Order has been send from ECC to SUS and PO is created successfully in SRM SUS. But, while confirming the purchase order, its not generating outbound proxy message.
And when we check the interface PurchaseOrderConfirmation_Out(i.e dobule clicking) in SPROXY transaction of SRM SUS, getting the following LOG:
1. Logical port template is inconsistent, regenerate it and activate it
2. cannot create LPT without DT profiles
3. Regernate proxy(inactive version incorrect)
Let me know if you have any suggestions.
Regards,
Sreenivas.

Hello Srinivas,
1.Check your Port creation from ECC to XI  2 SRM.
2. Activate your proxies properly and check whethar your proxy communication working properly or not.
check this links for your reference.
MM -XI-SUS
MM System - XI - SUS
MM-XI
How to integrate MM using XI
SRM-XI
SRM  and XI Integration
http://service.sap.com/~sapidb/011000358700002897342004E/CCMConfig10_01_05.pdf
http://service.sap.com/~sapidb/011000358700003992672005E/Config_Guide_CCM200_640doc.pdf
http://service.sap.com/~sapidb/011000358700002897402004E/ServiceProcurementNEW.pdf
http://service.sap.com/~sapidb/011000358700002897382004E/Plan-DrivenwithSInew.pdf
SRM and XI
Is there pre-configured message mapping for SRM Content?
/people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
SRM XI scenario
Which version of SRM needs XI?
SRM  AND SAP XI
XI with SRM 4.0
Regards,
Mahesh

Similar Messages

  • Content aware move tool and recompose do not work.

    Content aware move tool and recompose do not work. Nothing happens...What can I possible do wrong?

    There is not Content Aware Move or Recompose tool in Premiere Elements.
    Have you tried taking this question to the Photoshop Elements forum, Dion?

  • Working on Tomcat Server but same code is not working on oc4j server of E-B

    Hello,
    I have a jsp page that is working properly in tomcat 6 server but when i deployed it on oc4j server 10.1.3.1.0 than it is not working. I am confuse.
    ERROR MESSAGE:
    500 Internal Server Error
    Servlet error: An exception occurred. The current application deployment descriptors do not allow for including it in this response. Please consult the application log for details.
    CODE JSP:
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*" %>
    <!DOCTYPE html PUBLIC
         "-//W3C//DTD HTML 4.01 Transitional//EN"
         "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta
         http-equiv="Content-Type"
         content="text/html; charset=ISO-8859-1" />
    <meta
         name="author"
         content="MAX" />
    <title>Test Register Page</title>
    <link
         rel="stylesheet"
         href="css/style.css"
         type="text/css"
         media="screen" />
    </head>
    <body>
    <div id="content">
    <form name="demo" onsubmit="return validate_form()" action="RegisterServlet" method="post">
    <fieldset>
         <legend>VIEW USER</legend>
         <table border=1>
              <tr>
                   <td width="200px" align="center"><b>Bank Name</b></td>
                   <td width="200px" align="center"><b>User Name</b></td>
              </tr>
              <%
                        Connection connection = null;
                        String connectionURL = "jdbc:oracle:thin:@10.38.60.55:1521:edwdevdb";
                        ResultSet rs = null;
                   Statement statement = null;
                   try
                        // Get a Connection to the database
                        Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();
                        connection = DriverManager.getConnection(connectionURL,
    "scott", "tiger");
                        statement = connection.createStatement();
                        rs = statement.executeQuery(" SELECT user_info.USER_KEY,user_info.FI_ID,d_fi.fi_nm, user_info.User_Name from user_info INNER join d_fi on user_info.fi_id = d_fi.fi_id order by fi_nm ");
                        //Set 'authentication' flag
                        while (rs.next())
         %>
                        <tr>
                                  <td width="200px"><a href="SearchUser?bankname=<%=rs.getString("USER_KEY")%">> <%= rs.getString("FI_NM")%></a> </td>
                                  <td width="200px"><%= rs.getString("User_Name")%></td>
                        </tr>
         <%                    
                   catch(SQLException e)
                   finally
                                            rs.close();
    statement.close();
    connection.close();
         %>
         </table>
         <label> </label>
    </fieldset>
    </form>
    </div>
    </body>
    </html>
    WEB xml:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <web-app     xmlns="http://java.sun.com/xml/ns/javaee"
                             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    version="2.5">
    <description>Register</description>
    <display-name>Register</display-name>
    <!-- Declare Servlets -->
    <servlet>
         <servlet-name>BaseServlet</servlet-name>
         <servlet-class>BaseServlet</servlet-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>CategoryServlet</servlet-name>
         <url-pattern>/Category</url-pattern>
    </servlet-mapping>
    <!-- Welcome File List -->
    <welcome-file-list>
         <welcome-file>login.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    Edited by: bappy007 on Oct 10, 2010 1:57 AM
    Edited by: bappy007 on Oct 10, 2010 1:58 AM

    ERROR IN LOG FILE:
    10/10/10 15:18:55.843 edwportal: Servlet error
    java.lang.NullPointerException
         at test.jspService(_test.java:93)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.1.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:453)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:591)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:515)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:711)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:619)

  • File Attributes from App Server by RFC (GET_FILE_ATTRIBUTES does not work )

    Hello,
    We have an Objects application that is started through an RFC BAPI call from a Java app. The Java app. passes a file to the BAPI. We want to test, as efficiently as possible, if the file is 0 bytes long. We have tried /epsf/get_file_attributes but there is a problem with it being called remotely. We have Remote Enabled the function module. Local tests work fine (GUI User), but when it is called by the Bapi(Technical User) we receive sy-subrc = 2. I think it is referring to a 'Communication Error'.
    I found a nice class, CL_GUI_FRONTEND_SERVICES for the workstation server, but nothing comparable for the application server.
    Help is greatly appreciated as I am pulling my hair out.
    Best Regards,
    Mark Lengel

    Hello Andreas,
    The GET_FILE_ATTRIBUTES fm is also from the EPS Function Group and provides the file size, it just does not work when called from Rfc/Bapi. Won't the GET_DIRECTORY_LISTING fm just return directory info ?
    I am afraid I will have to resort to the OPEN, READ, CLOSE DATASET steps in order to check for a zero length file.
    Regards,
    Mark

  • SQL Server 2012 Database Email is not working with AWS SES Services

    Hi Greetings to all,
    I have issue with the SQL Server Database mail Services. I have Configured Amazon Simple Email Services (AWS SES) as db profile in SQL Server and for last 2 years its working perfectly. But, from last two days on wards it is not working properly the Emails
    are queued but not sent to the recipients. the SES Services are working fine in outlook. but, not working in SQL Server. 
    Please help on this. tried changing the ports no result only one or two emails only sent remaining are failing.the info messages is as below
    Message
    The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 10 (2015-04-10T17:12:41). Exception Message: Cannot send mails to mail server. (The operation has timed out.).
    RehaanKhan. M

    Hello,
    Try to use port 465, port 2587 or port 587 instead of using port 25, as explained on the following articles.
    http://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-issues.html
    http://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-connect.html
    The first of above URLs is intended for troubleshooting SMTP issues in general.
    Verify you the mail account has not reached any limit. Limit of emails per day, per second, etc.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • 4.0 EA3 -- SQL Server Drag and drop still not working

    My clients love SQLD D because they can access SQL Server and Access as well as Oracle of course.
    Drag and Drop of tables  from the table view have not worked in a while.
    appear to only see things in the Master Database. Even if you retrieve the list of databases and set you still en up only in the MASTER.
    You then have to fully qualify to retrieve a table.

    What exactly is your question here?

  • Oracle Application Server 10g R3 documentation link not working

    The Oracle Application Server 10g R3 documentation link is not working:
    From otn.oracle.com if you click on Documentation and then select Application Server it is supposed to take you to http://www.oracle.com/technology/documentation/appserver.html but the link is broken.
    Can someone from OTN please look into this? I really need this documentation.
    Thanks,
    [email protected]

    Issue resolved; thanks.
    Cheers, OTN

  • [CS5 Server/JSX] allGraphics parent geometricBounds not working on InDesign Server

    Hi,
    The following script works fine on InDesign Desktop CS5:
    g = app.activeDocument.allGraphics;
    for (i=0; i<g.length; i++)
    g[i].parent.geometricBounds = [0,0,"150mm","150mm"];
    g[i].fit(FitOptions.PROPORTIONALLY);
    g[i].parent.fit (FitOptions.FRAME_TO_CONTENT);      
    When I run the script for InDesign Sever I get the following error:
    Error Number 30614
    Invalid object for this request,
    g[i].parent.geometricBounds = [0,0,"150mm","150mm"];
    Why does .parent not work on the server?

    g = myDocument.allGraphics;
    for (i=0; i<g.length; i++)
    g[i].parent.geometricBounds = [0,0,"150mm","150mm"];
    g[i].fit(FitOptions.PROPORTIONALLY);
    g[i].parent.fit (FitOptions.FRAME_TO_CONTENT); 
    if(myDocument.textPreferences.smartTextReflow)
          vDoc.recompose();
    The solution!
    Recompose() to automatically insert pages

  • Windows server 2008 R2 Standard edition time server problem: The computer did not resync because no time data was available.

    Hello,
    I'm trying to get my 2008 R2 server (physical server) to synch with an external time server. I've read other threads on the topic but have not found a solution. I'm sure i'm missing something.
    First the step leading to the error:
    w32tm /resync /rediscover
    Sending resync command to local computer
    The computer did not resync because no time data was available.
    Following is the history: 
    Here are the steps
    C:\>netdom /query fsmo
    Schema master               DC-01.coastal.local
    Domain naming master        DC-01.coastal.local
    PDC                         DC-01.coastal.local
    RID pool manager            DC-01.coastal.local
    Infrastructure master       DC-01.coastal.local
    The command completed successfully.
    next: 
    w32tm /config /manualpeerlist:time.nist.gov,0x1 /syncfromflags:manual /reliable:yes /update
    The command completed successfully.
    next:
    net stop w32time && net start w32time
    The Windows Time service is stopping.
    The Windows Time service was stopped successfully.
    The Windows Time service is starting.
    The Windows Time service was started successfully.
    Next:
    w32tm /resync /rediscover
    Sending resync command to local computer
    The computer did not resync because no time data was available.
    Next:
    Did a restart of the server and repeated:
    w32tm /resync /rediscover
    Sending resync command to local computer
    The computer did not resync because no time data was available.
    Next:
    Ran the following:
    w32tm /query /configuration
    C:\>w32tm /query /configuration
    [Configuration]
    EventLogFlags: 2 (Policy)
    AnnounceFlags: 10 (Policy)
    TimeJumpAuditOffset: 28800 (Local)
    MinPollInterval: 6 (Policy)
    MaxPollInterval: 10 (Policy)
    MaxNegPhaseCorrection: 172800 (Policy)
    MaxPosPhaseCorrection: 172800 (Policy)
    MaxAllowedPhaseOffset: 300 (Policy)
    FrequencyCorrectRate: 4 (Policy)
    PollAdjustFactor: 5 (Policy)
    LargePhaseOffset: 50000000 (Policy)
    SpikeWatchPeriod: 900 (Policy)
    LocalClockDispersion: 10 (Policy)
    HoldPeriod: 5 (Policy)
    PhaseCorrectRate: 1 (Policy)
    UpdateInterval: 100 (Policy)
    [TimeProviders]
    NtpClient (Local)
    DllName: C:\Windows\system32\w32time.dll (Local)
    Enabled: 1 (Local)
    InputProvider: 1 (Local)
    CrossSiteSyncFlags: 2 (Policy)
    AllowNonstandardModeCombinations: 1 (Local)
    ResolvePeerBackoffMinutes: 15 (Policy)
    ResolvePeerBackoffMaxTimes: 7 (Policy)
    CompatibilityFlags: 2147483648 (Local)
    EventLogFlags: 0 (Policy)
    LargeSampleSkew: 3 (Local)
    SpecialPollInterval: 3600 (Policy)
    Type: NT5DS (Policy)
    NtpServer (Local)
    DllName: C:\Windows\system32\w32time.dll (Local)
    Enabled: 1 (Local)
    InputProvider: 0 (Local)
    AllowNonstandardModeCombinations: 1 (Local)
    VMICTimeProvider (Local)
    DllName: C:\Windows\System32\vmictimeprovider.dll (Local)
    Enabled: 1 (Local)
    InputProvider: 1 (Local)
    Any feedback/guidance appreciated!!

    Hi,
    You may need to update command w32tm /config /syncfromflags:domhier /update, to change the IntranetServer w32time type to nt5ds (this sets the service to pull from the AD).
    For more detailed information, please refer to the thread below:
    The computer did not resync because no time data was available (w32tm)
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/127e7fe7-6fff-469d-8536-8da1c9825cb0/the-computer-did-not-resync-because-no-time-data-was-available-w32tm
    You could refer to the article below to configure time in Active Directory:
    “It’s Simple!” – Time Configuration in Active Directory
    http://blogs.technet.com/b/nepapfe/archive/2013/03/01/it-s-simple-time-configuration-in-active-directory.aspx
    Regards,
    Mandy
    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.

  • Adobe PDF iFilter SQL Server 2008 R2 Full Text not working

    Unable to get the SQL Server 2008 R2 to index PDF files for full-text searching.
    Environment: Windows 7 SP1 Enterprise 64-bit, SQL Server 2008 R2 Express SP3 64-bit, Adobe Reader 11.x
    Installed PDF iFilter 64 (11.0.01) from
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    Added its folder (C:\Program Files\Adobe\Adobe PDF iFilter 11 for 64-bit platforms\bin\;) to the PC system Path variable. Rebooted PC.
    Confirmed SQL Server sees the Adobe PDF iFilter ..... SELECT * from sys.fulltext_document_types where document_type = '.pdf' 
    Inserted PDF files to my table (see below for CREATE statement).
    The SQLFT log says  ... Warning: No appropriate filter was found during full-text index population for table or indexed view '[TestDB].[dbo].[pdfifiltertable]' (table or indexed view ID '2105058535', database ID '7'), full-text key value '1'.
    Some columns of the row were not indexed.
    Installed other filters for Office. Added files of type DOC, XPS. Confirmed the search query works for those file types. So as such SQL Full-Text is enabled and working.
    Below my T-SQL commands:
    Exec sp_fulltext_service 'load_os_resources', 1
    Exec sp_fulltext_service 'verify_signature', 0
    Exec sp_fulltext_database 'enable'
    CREATE TABLE pdfifiltertable(
    PdfID INT IDENTITY NOT NULL,
    PdfFileName VARCHAR(MAX),
    Ext VARCHAR(10) ,
    PdfText VARBINARY(MAX),
    CONSTRAINT PK_PdfID PRIMARY KEY (PdfID)
    GO
    CREATE FULLTEXT CATALOG pdfCatalog AS DEFAULT
    GO
    CREATE FULLTEXT INDEX ON pdfifiltertable([PdfText] Type column [Ext]
    ) KEY INDEX PK_PdfID with change_tracking auto
    GO
    SELECT pdfFileName FROM pdfifiltertable WHERE CONTAINS(pdftext, 'payment')

    What edition are you using? Like is it SQL-Express or SQL-Standard etc.
    Adding files using C# desktop application.
    Tested in another PC SQL-Server Express 2008 with Windows 7 64-bit. Same issue.
    C# source code ... add a button called uploadPDF and a datagridview called datagridview to the form.
    using System;
    using System.IO;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    namespace UploadPDF
    public partial class Form1 : Form
    #region Properties
    protected static string ConnectionString {
    get {return "Integrated Security=SSPI;database=Testdb;Data Source=localhost\\SQLEXPRESS;Workstation ID=localhost;";}
    protected static SqlConnection Connection {
    get {return new SqlConnection(ConnectionString);}
    protected DataTable pdfDataTable;
    #endregion
    public Form1()
    InitializeComponent();
    populateDataGrid();
    protected void populateDataGrid()
    SqlConnection con = Connection;
    con.Open();
    try
    pdfDataTable = new DataTable();
    SqlCommand cmd = new SqlCommand( "select * from pdfifiltertable", con);
    SqlDataAdapter adapter = new SqlDataAdapter(cmd);
    adapter.Fill(pdfDataTable);
    dataGridView.DataSource = pdfDataTable;
    dataGridView.Columns[3].Visible = false;
    finally {
    con.Close();
    private void uploadPDF_Click(object sender, EventArgs e) {
    if (DialogResult.Cancel == fileOpenDialog.ShowDialog()) return;
    try {
    byte[] content = FileToByteArray(fileOpenDialog.FileName);
    uploadPDFBlob2DataBase(fileOpenDialog.FileName,content);
    populateDataGrid();
    } catch (Exception ex) {
    MessageBox.Show(ex.Message, "PDFiFilter11", MessageBoxButtons.OK, MessageBoxIcon.Error);
    public byte[] FileToByteArray(string _FileName) {
    byte[] pdfBuffer = null;
    try {
    System.IO.FileStream _FileStream = new System.IO.FileStream(_FileName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
    System.IO.BinaryReader _BinaryReader = new System.IO.BinaryReader(_FileStream);
    long TotalNumberOfBytes = new System.IO.FileInfo(_FileName).Length;
    pdfBuffer = _BinaryReader.ReadBytes((Int32)TotalNumberOfBytes);
    _FileStream.Close();
    _FileStream.Dispose();
    _BinaryReader.Close();
    } catch (Exception _Exception) {
    Console.WriteLine("Exception caught in process: {0}", _Exception.ToString());
    return pdfBuffer;
    public void uploadPDFBlob2DataBase(String fName, byte[] content) {
    SqlConnection con = Connection;
    con.Open();
    String ext,filename;
    ext = Path.GetExtension(fName);
    filename = Path.GetFileName(fName);
    try {
    SqlCommand insert = new SqlCommand( "insert into pdfifiltertable ([PdfFileName],[Ext],[PdfText]) values ((@pdfFileName),(@extension),(@pdfcontent))", con);
    SqlParameter pdffilenameParameter = insert.Parameters.Add("@pdfFileName", SqlDbType.NText);
    pdffilenameParameter.Value = filename;
    pdffilenameParameter.Size = filename.Length;
    SqlParameter extParam = insert.Parameters.Add("@extension", SqlDbType.NVarChar);
    extParam.Value = ext;
    extParam.Size = ext.Length;
    SqlParameter pdfcontentParameter = insert.Parameters.Add("@pdfcontent", SqlDbType.Binary);
    pdfcontentParameter.Value = content;
    pdfcontentParameter.Size = content.Length;
    insert.ExecuteNonQuery();
    } finally {
    con.Close();
    } //class
    } //namespace

  • Server names and aliases do not work on client machines

    I have Leopard Server 10.5.6, Advanced setting, on a local machine behind a Time Capsule router. The server's IP was set at 10.0.0.100 (the Time Capsule is 10.0.0.1).
    After fiddling around with DNS names, I set the DNS name of the server (Server Admin -> Settings -> Network) to ABC-Server.local
    However, from any computer on the network, going to "All... -> Servers" in Finder displays two folders, "abc.server" and "abcserver.local". Inside both these folders, aliases are unreachable.
    1. Is there a way to remove these two folders and their aliases? I tried to "rm" or "sudo rm" them from a client and the server computer, but I get the "Operation not permitted".
    I am also wondering if this is related to the Workgroup Manager: Selecting a user, then "Home" displays
    afp://abc.server/Groups
    afp://abcserver.local/Rewriting
    etc.
    I cannot remove these paths (the "-" sign is greyed out).
    2. Is this related to the above? How can I remove these paths?
    Also, setting up a roaming home profile (so that users can log in from any workstation) has been difficult up to now. I tried following the official instructions manual, but it didn't work out for me, maybe due to the above problems?
    Thank you.

    Removing the server in Directory Activity seems to remove the above "Server" folder and its contents, so could this be related to the Open Directory service?
    From Server Admin, looks like I can't edit much. Are there any settings in Server Admin that I should check or fix?

  • New Server 2012 install - Active Directory not working properly

    We recently converted from 2003 to 2012. Our 2012 R2 server seems to be running fine. We did a DCPROMO on the OLD 2003 DC just fine but now there are all sorts of odd errors (Sharepoint can't authenticate users, Can't run Exchange 2013 on another 2012 server
    because it can't find AD, etc.)
    on the DC we have a Group Policy error 1096. "Group Policy Object LDAP://CN=User,cn={2B476B3E-2749-4B1B-8EC1-F5672A66F94F},cn=policies,cn=system,DC=mydom,DC=local\\mydom.local\SysVol\mydom.local\Policies\{2B476B3E-2749-4B1B-8EC1-F5672A66F94F}\User\registry.pol"
    So far I haven't found anything on how to fix this (and the AD itself.) There are some errors in the DCDIAG log, too:
          Starting test: NetLogons
             Unable to connect to the NETLOGON share! (\\ISD-DC1\netlogon)
             [ISD-DC1] An net use or LsaPolicy operation failed with error 67,
             The network name cannot be found..
    Starting test: FrsEvent
             There are warning or error events within the last 24 hours after the
             SYSVOL has been shared.  Failing SYSVOL replication problems may cause
             Group Policy problems.
    Any suggestions how we can fix these errors are greatly appreciated!

    Hi,
    Did you migrate the Active Directory from Windows server 2003 to Windows server 2012?
    Please refer to this article:
    https://blogs.technet.com/b/canitpro/archive/2013/05/27/step-by-step-active-directory-migration-from-windows-server-2003-to-windows-server-2012.aspx
    Regards.
    Vivian Wang

  • Windows Server 2012 Essentials Connection Software not working

    This comes in response to a ticket I got great help from a user on but I'm still stuck on the connection software bit.
    Original Thread: http://social.technet.microsoft.com/Forums/windowsserver/en-US/0a7e6d91-98c7-42f2-9cdd-66117df91d76/win-2012-essentials-not-allowing-client-connections?forum=winserveressentials#0a7e6d91-98c7-42f2-9cdd-66117df91d76
    Summary: All my machines 8 of them up to now have been adding machines using the servername/connect
    Well I have 2 new HP's here Win 7 Pro all updated that WILL NOT get past the asking for the server username/pass screen of the connects software install. I can get them onto the server manually and my GP applies fine, my roaming profiles are working, the
    computer is seen in AD but I have none of the features that are provided by the connect software like dashboard viewing and backups etc.
    The error I get is "The server is not available. Try connecting this computer again, or for more information, see Troubleshoot connecting computers to the server"
    Anyone have any ideas?

    Hi James,
    Based on your description, “Well I have 2 new HP's here Win 7 Pro all updated that WILL NOT get past the
    asking for the server username/pass screen of the connects software install.”, would you please let me confirm whether have reached the page of Windows Server Essentials Connector Configuration Wizard as below picture shows, then can’t go through?
    àI can get them
    onto the server manually and my GP applies fine, my roaming profiles are working, the computer is seen in AD
    Did you mean that add the client computer to windows essentials domain by using traditional method (change
    Workgroup to Domain in System Properties)?
    When this issue occurred, please ping server from the problematic client computer by using server name and
    IP address. Then monitor the result.
    Meanwhile, I noticed your
    original thread that Howtodo have provided some suggestions. As he mentioned, would you please check if Connector software had been installed? Please alos check ClientDeploy log file.
    By the way, did you add the client computer to windows server essentials network via wireless?
    Hope this helps.
    Best regards,
    Justin Gu

  • Server 2012 Essentials Restore files not working

    I have a brand new install of server 2012 essentials running on hyper-v. have connected 4 test computers using the essentials connect method, 7 Pro and 8.1. backups are working daily with no errors. thought I would test a restore and I am getting the
    message, "Restore Files and Folders wizard has stopped working. 
    unfortunately this is the very first time I tried a restore so I can't say if any updates are the issue.
    anyone else had similar issue?

    2 errors
    Log Name:      Application
    Source:        .NET Runtime
    Date:          2/19/2015 1:31:20 PM
    Event ID:      1026
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Windows8Eval.xxxxxxxxxxx.com
    Description:
    Application: MountBackupWizard.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.Reflection.TargetInvocationException
    Stack:
       at System.RuntimeMethodHandle.InvokeMethod(System.Object, System.Object[], System.Signature, Boolean)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(System.Object, System.Object[], System.Object[])
       at System.Delegate.DynamicInvokeImpl(System.Object[])
       at System.Windows.Forms.Control.InvokeMarshaledCallbackDo(ThreadMethodEntry)
       at System.Windows.Forms.Control.InvokeMarshaledCallbackHelper(System.Object)
       at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
       at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry)
       at System.Windows.Forms.Control.InvokeMarshaledCallbacks()
       at System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message ByRef)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr, Int32, IntPtr, IntPtr)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG ByRef)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG ByRef)
       at System.Windows.Forms.Application+ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr, Int32, Int32)
       at System.Windows.Forms.Application+ThreadContext.RunMessageLoopInner(Int32, System.Windows.Forms.ApplicationContext)
       at System.Windows.Forms.Application+ThreadContext.RunMessageLoop(Int32, System.Windows.Forms.ApplicationContext)
       at Microsoft.WindowsServerSolutions.DataProtection.UI.Program.Main(System.String[])
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name=".NET Runtime" />
        <EventID Qualifiers="0">1026</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2015-02-19T18:31:20.000000000Z" />
        <EventRecordID>1224</EventRecordID>
        <Channel>Application</Channel>
        <Computer>Windows8Eval.xxxxxxxxx.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Application: MountBackupWizard.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.Reflection.TargetInvocationException
    Stack:
       at System.RuntimeMethodHandle.InvokeMethod(System.Object, System.Object[], System.Signature, Boolean)
       at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(System.Object, System.Object[], System.Object[])
       at System.Delegate.DynamicInvokeImpl(System.Object[])
       at System.Windows.Forms.Control.InvokeMarshaledCallbackDo(ThreadMethodEntry)
       at System.Windows.Forms.Control.InvokeMarshaledCallbackHelper(System.Object)
       at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
       at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry)
       at System.Windows.Forms.Control.InvokeMarshaledCallbacks()
       at System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message ByRef)
       at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr, Int32, IntPtr, IntPtr)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG ByRef)
       at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG ByRef)
       at System.Windows.Forms.Application+ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr, Int32, Int32)
       at System.Windows.Forms.Application+ThreadContext.RunMessageLoopInner(Int32, System.Windows.Forms.ApplicationContext)
       at System.Windows.Forms.Application+ThreadContext.RunMessageLoop(Int32, System.Windows.Forms.ApplicationContext)
       at Microsoft.WindowsServerSolutions.DataProtection.UI.Program.Main(System.String[])
    </Data>
      </EventData>
    </Event>
    2nd error
    Log Name:      Application
    Source:        Application Error
    Date:          2/19/2015 1:31:21 PM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      Windows8Eval.xxxxxxxxxxxx.com
    Description:
    Faulting application name: MountBackupWizard.exe, version: 6.3.9600.16384, time stamp: 0x5215cf3c
    Faulting module name: KERNELBASE.dll, version: 6.3.9600.17415, time stamp: 0x54505737
    Exception code: 0xe0434352
    Fault offset: 0x0000000000008b9c
    Faulting process id: 0xac
    Faulting application start time: 0x01d04c723d6d8d89
    Faulting application path: C:\Windows\System32\Essentials\MountBackupWizard.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 7fa0d5c8-b865-11e4-8258-080027e87958
    Faulting package full name:
    Faulting package-relative application ID:
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2015-02-19T18:31:21.000000000Z" />
        <EventRecordID>1225</EventRecordID>
        <Channel>Application</Channel>
        <Computer>Windows8Eval.xxxxxxxxxxx.com</Computer>
        <Security />
      </System>
      <EventData>
        <Data>MountBackupWizard.exe</Data>
        <Data>6.3.9600.16384</Data>
        <Data>5215cf3c</Data>
        <Data>KERNELBASE.dll</Data>
        <Data>6.3.9600.17415</Data>
        <Data>54505737</Data>
        <Data>e0434352</Data>
        <Data>0000000000008b9c</Data>
        <Data>ac</Data>
        <Data>01d04c723d6d8d89</Data>
        <Data>C:\Windows\System32\Essentials\MountBackupWizard.exe</Data>
        <Data>C:\Windows\system32\KERNELBASE.dll</Data>
        <Data>7fa0d5c8-b865-11e4-8258-080027e87958</Data>
        <Data>
        </Data>
        <Data>
        </Data>
      </EventData>
    </Event>

  • Accessing individual server in load-balanced cluster not working as expected

    We have a cluster set up with multiple managed servers and hardware load
              balancers sitting in front to direct traffic. We have the frontend host
              configured to be the dns name of the single URL for the cluster, which maps
              to the IP address that the load balancers balance. When accessing part of
              our site (a WebLogic portal) at
              http://server1/portalApp/appmanager/portal/desktop
              (where server1 is the name of one of the managed servers)
              the portal performs a redirect to the login page at
              /portalApp/appmanager/portal/desktop?_nfbp=true&_pageLabel=login_page.
              The URL that results in the browser is not what I would expect, which would be
              http://server1/portalApp/...
              Instead, it is
              http://cluster/portalApp/...
              where cluster is the frontend host setting. Is there any way to avoid
              this, so we can perform directed testing on specific managed servers?
              Thanks,
              Andy
              

    Hi Maria, thanks for your help! I wrote a simple test jsp that does a
              redirect if a parameter is set, otherwise it doesn't do anything. When I
              accessed the jsp at server1/app/test.jsp?a=true, something (I assume
              either WebLogic or the load balancer) rewrote the URL after the redirect
              (the redirect was to /app/test.jsp). The URL that appears in the browser
              after the redirect is cluster/app/test.jsp. Do you know if this happens
              because of WebLogic or the load balancer? Our load balancers are Cisco
              11503's I believe.
              Do you think it would make any difference if I leave the frontend host
              for the cluster to be the dns name of the cluster, and then if I set the
              frontend host for each server to be the dns name of that specific server?
              Currently each server does not have any value entered for frontend host.
              Thanks!
              Andy
              Maria Carcedo <[email protected]> wrote in
              news:31424665.1108079763742.JavaMail.root@jserv5:
              > Hi Andy!
              >
              > We had basically the same problem and we fixed it by configuring the
              > F5 load balancer to maintain the session with whichever server it
              > started the connection with. We had to enable cookie persistence, more
              > specifically the Active HTTP Cookie, with Method insert (do not enter
              > any expiration or anything else in any other field other than what is
              > already there when the page loads -> F5 bug).
              >
              > So if the original request from the portal goes to server1, every
              > subsequent request will go to server1 as well. The next session
              > request will go to server2 and every subsequent request within that
              > session will go to server 2, and so on (assuming you have round
              > robin).
              >
              > I hope this helps!
              >
              > Maria
              

Maybe you are looking for

  • Currency in Report painter

    Hi, I have a question about report painter. Is it possible to create a report with report painter that displays the information in a currency different from operating concern currency? For example, in KE24 I can display the value fields in the entry

  • How to transfer a 8GB .MOV file from MacBook Air (late 2013) via external HD (Samsung S2 Portable) to a Dell laptop ?

    Hi guys and galls, How can I transfer a 8GB .MOV file from MacBook Air (mid 2013) via external HD (Samsung S2 Portable) to a Dell laptop ? The mentioned file currently will not let me transfer it to my ext HD. I want to upload it afterwards to a Dell

  • Reverse proxy rule

    Hi, I have confiugure apache 2.2 as reverse proxy which will be interacting with my portal as well as ECC ITS. Everything is working fine but the problem is when user gives the path: http://<hotst>/sap/bc/its/gui/sap/webgui he able to access logon pa

  • Testing MRP scope of planning and MRP lists

    Hi,       I am configuring the scope of planning and want to know how can I test if the planning is happening in the sequence as specified in the scope of planning. I would have around 20 plants in the scope. I thought of going after the time stamp o

  • Working with Exported PDF in Word - text jumps around

    I just purchased an Adobe Export PDF subscription and am having trouble working with the document once it has been exported to Word.  The cursor jumps from place to place, as do words.