Master not elected

I am testing my replication code with two nodes. When I open two clean new environments on my localhost, the master is successfully elected. The second time I open the environments the master is never elected. The console output is below. There is something obviously wrong with the second node. It keeps reporting a request for an unknown service called "Acceptor". I would be very grateful for any clues as to what might be happening.
James
Node 1:
Opening replicated environment with:
GroupName: Cheese
NodeName: Reypenaer
NodeHostPort: localhost:5002
NodeHelper: localhost:5002
100309 20:50:20:046 INFO [Reypenaer] Started ServiceDispatcher. HostPort=localhost:5002
100309 20:50:20:133 INFO [Reypenaer] Current group size: 2
100309 20:50:20:133 INFO [Reypenaer] Existing node Reypenaer querying for a current master.
100309 20:50:20:148 INFO [Reypenaer] Node Reypenaer started
100309 20:50:20:148 INFO [Reypenaer] Election initiated; election #1
100309 20:50:20:151 INFO [Reypenaer] Started election thread Tue Mar 09 20:50:20 CET 2010
<it just waits in this state>
Node 2:
Opening replicated environment with:
GroupName: Cheese
NodeName: Parmesan
NodeHostPort: localhost:5003
NodeHelper: localhost:5002
100309 20:50:28:150 INFO [Parmesan] Started ServiceDispatcher. HostPort=localhost:5003
100309 20:50:28:239 INFO [Parmesan] Current group size: 0
100309 20:50:28:240 INFO [Parmesan] New node Parmesan(-1) unknown to rep group
100309 20:50:34:165 INFO [Parmesan] Request for unknown Service: Acceptor Registered services: [Learner, LogFileFeeder, LDiff, NodeState]
100309 20:50:50:168 INFO [Parmesan] Request for unknown Service: Acceptor Registered services: [Learner, LogFileFeeder, LDiff, NodeState]
100309 20:51:22:171 INFO [Parmesan] Request for unknown Service: Acceptor Registered services: [Learner, LogFileFeeder, LDiff, NodeState]
<it keeps reporting a request for an unknown service>

Linda,
Thanks. I am digging through the options. I am pretty certain that my code to open the entity store does not get called until after the ReplicatedEnvironment constructor returns.
I have included a code fragment here. From the console output it looks like the sync up does get completed.
I will look into the other options in the morning. It's getting late here.
Thanks for the quick support.
James
          TimeConsistencyPolicy consistencyPolicy = new TimeConsistencyPolicy(
                    1, TimeUnit.SECONDS,
                    3, TimeUnit.SECONDS);
          replicationConfig.setConsistencyPolicy(consistencyPolicy);
          Durability durability = new Durability(Durability.SyncPolicy.WRITE_NO_SYNC, Durability.SyncPolicy.WRITE_NO_SYNC,                               
               Durability.ReplicaAckPolicy.SIMPLE_MAJORITY);
          environmentConfig.setDurability(durability);
          repDbEnv = createReplicatedEnvironment(dbEnvDir, replicationConfig, environmentConfig);
          log.info("Replicated environment was created");
          environment = repDbEnv;
     } else {
          // stand alone mode
          log.info("Starting in STANDALONE mode");
          environment = new Environment(dbEnvDir, environmentConfig);
initializeDatabase(); // This goes into a 'retry loop' and calls the ReplicatedEnvironment constructor
Output is:
100310 19:55:32:889 INFO [Parmesan] Started ServiceDispatcher. HostPort=localhost:5003
100310 19:55:32:979 INFO [Parmesan] Current group size: 0
100310 19:55:32:980 INFO [Parmesan] New node Parmesan(-1) unknown to rep group
100310 19:55:32:994 INFO [Parmesan] Master changed to Reypenaer
100310 19:55:32:995 INFO [Parmesan] New node Parmesan located master: Reypenaer(1)
100310 19:55:33:004 INFO [Parmesan] Node Parmesan started
100310 19:55:33:004 INFO [Parmesan] Replica loop started with master: Reypenaer(1)
100310 19:55:33:025 INFO [Parmesan] Replica-feeder handshake start
100310 19:55:33:084 INFO [Parmesan] Replica-feeder Reypenaer handshake completed.
100310 19:55:33:087 INFO [Parmesan] Replica-feeder Reypenaer syncup started. Replica range: first=-1 last=-1 sync=-1 txnEnd=-1
100310 19:55:33:093 INFO [Parmesan] Rollback to matchpoint -1 at 0x0/0x0 status=No active txns, nothing to rollback
100310 19:55:33:093 INFO [Parmesan] Replica-feeder Reypenaer start stream at VLSN: 1
100310 19:55:33:093 INFO [Parmesan] Replica-feeder Reypenaer syncup ended. Elapsed time: 6ms
100310 19:55:33:097 INFO [Parmesan] Replica initialization completed. Replica VLSN: -1 Heartbeat master commit VLSN: 34 VLSN delta: 35
100310 19:55:33:120 INFO [Parmesan] Refreshed 0 monitors.
Mar 10 19:55:33 EPGBooking[8891] INFO com.chello.booking.repository.BdbStore - Replicated environment was created
Mar 10 19:55:33 EPGBooking[8891] WARN NSLog - A fatal exception occurred: (JE 4.0.92) The current state is:REPLICA. The node transitioned to this state at:Wed Mar 10 19:55:33 CET 2010
[2010-3-10 19:55:33 CET] <main> com.sleepycat.je.rep.ReplicaWriteException: (JE 4.0.92) The current state is:REPLICA. The node transitioned to this state at:Wed Mar 10 19:55:33 CET 2010
     at com.sleepycat.je.rep.txn.ReadonlyTxn.lockInternal(ReadonlyTxn.java:62)
     at com.sleepycat.je.txn.Locker.lock(Locker.java:454)
     at com.sleepycat.je.dbi.CursorImpl.putLN(CursorImpl.java:1138)
     at com.sleepycat.je.dbi.DbTree.doCreateDb(DbTree.java:473)
     at com.sleepycat.je.dbi.DbTree.createDb(DbTree.java:362)
     at com.sleepycat.je.Database.initNew(Database.java:118)
     at com.sleepycat.je.Environment.setupDatabase(Environment.java:788)
     at com.sleepycat.je.Environment.openDatabase(Environment.java:537)
     at com.sleepycat.compat.DbCompat.openDatabase(DbCompat.java:364)
     at com.sleepycat.persist.impl.PersistCatalog.<init>(PersistCatalog.java:204)
     at com.sleepycat.persist.impl.Store.<init>(Store.java:187)
     at com.sleepycat.persist.EntityStore.<init>(EntityStore.java:186)
     at com.chello.booking.repository.BdbDataWrapper.initializeDatabase(BdbDataWrapper.java:266)

Similar Messages

  • Return PO Price is picked up from MAP of materia master,not from info.recod

    User Requirement :
    When creating return po ,the price is picked up from MAP of material master ,not from info.record
    I wrote a code at PO Enhancement "MM06E005" user exit  "EXIT_SAPMM06E_017",but don't change the price ,pls help me check what  the problem is ,thanks.
    The below is my code.
    DATA : M_VERPR LIKE MBEW-VERPR,
           M_PEINH LIKE MBEW-PEINH,
           M_MEINS LIKE MARA-MEINS.
    CLEAR :M_VERPR,M_PEINH,M_MEINS.
    CHECK SY-TCODE = 'ME21N ' OR   SY-TCODE = 'ME22N' OR   SY-TCODE = 'ME23N' .
    IF I_EKKO-BSART = 'ZNB7'.
        LOOP AT TEKPO.
      SELECT SINGLE VERPR PEINH FROM MBEW INTO (M_VERPR,M_PEINH)
                                             WHERE MATNR = I_EKPO-MATNR AND BWKEY = I_EKPO-WERKS.
        SELECT SINGLE MEINS FROM MARA INTO M_MEINS WHERE MATNR = I_EKPO-MATNR.
        TEKPO-INFNR = '  '.
        TEKPO-NETPR = M_VERPR.
        TEKPO-PEINH = M_PEINH.
        TEKPO-MEINS = M_MEINS.
        TEKPO-BPRME = M_MEINS.
        TEKPO-NETPR = TEKPO-NETPR * I_EKKO-WKURS.
        MODIFY TEKPO TRANSPORTING NETPR PEINH MEINS BPRME NETPR.
        CLEAR TEKPO.
      ENDLOOP.

    Hi  Gunawan,
    According your meaning ,I change the logic as following:
    IF I_EKKO-BSART = 'ZNB7'.
      SELECT SINGLE VERPR PEINH FROM MBEW INTO (M_VERPR,M_PEINH)
                                           WHERE MATNR = I_EKPO-MATNR AND BWKEY = I_EKPO-WERKS.
      SELECT SINGLE MEINS FROM MARA INTO M_MEINS WHERE MATNR = I_EKPO-MATNR.
      TKOMV-KNUMH = ''.
      TKOMV-KAWRT = M_VERPR  *  I_EKKO-WKURS.
      TKOMV-KPEIN = M_PEINH.
      TKOMV-KMEIN = M_MEINS.
    EndIF.
    But the values of the fields are not updated,I need to write the code in EXIT_SAPMM06E_017 of PO Enhancement,may you help me ,thanks.

  • Failed to instantiate file "v4.master" from module "DefaultMasterPage": Source path "v4.master" not found.

    Brand new install of SharePoint 2013. No modifications. Made one collection from the Admin site.
    I attempt to create a sub-site.
    Sorry,
    something went wrong
    Failed to instantiate file
    "v4.master" from module "DefaultMasterPage": Source path "v4.master" not
    found.
    David Jenkins

    Hi David,
    Here is the reference for using ULS log:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Failed to instantiate "MWSdefault.master" from module "MWSMasterPage": Source path "global/MWSdefaul.master" not found.

    Hello,
    When my users are trying to create a Meeting Workspace they always get the following message:
    Failed to instantiate "MWSdefault.master" from module "MWSMasterPage": Source path "global/MWSdefaul.master" not found.
    I have checked \...\12\TEMPLATE\GLOBAL\m@ster pages, and the master page is there. Does anyone know what might be causing this issue and how I can solve it?
    I am working with SharePoint 2007 (MOSS). We haven't customized the Meeting Workspace Templates, so they should just work as standard SharePoint.
    Thank you!
    Inge

    Hi David,
    Here is the reference for using ULS log:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Reconnexion of two isolated master environments: election fails

    First some details about my configuration:
    * Berkeley DB 4.7.25, no patches applied
    * Replication enabled, two sites on two different servers
    * Using the base replication API, not the replication manager
    Initial state is: two servers up and communicating (let's say S1 and S2), one BDB environment on each server, S1 is master and S2 slave.
    Then the Ethernet interface is stopped on S2.
    Loss of connectivity detection occurs on S1 and S2, S2 triggers an election (not needed on S1), determines it's alone, becomes master.
    Then the Ethernet interface is restored on S2.
    Connectivity between the 2 servers is detected at both sides, the two isolated "partitions" have to be merged. Election triggered on both sides: nsites=2, nvotes=0 (thus nvotes=2).
    I never succeed in making the election process successful. It appears that the two election "gen" numbers differ between the two servers (here, gen(S2) > gen(S1)), and that makes S1 always raise "DUPMASTER", triggering again an election, while S2 may miss one vote in its election process, and also fails electing a master.
    Of course, the sequence of events may differ from time to time, but even in case of one environment winning the election, the other environment never succeed in synchronizing with the master.
    The only work-around I found so far is to dynamically close both environments when a merge has to be done, remove the files "__db.rep.egen" and "__db.rep.gen", and re-open them. It's always successful.
    Thanks for your help.

    I have several questions to ask. Do you ever call rep_start with DB_CLIENT after
    the isolation is complete and communication is restored? If you call rep_elect
    while a master, it will send out a message asserting its mastership. From your
    description that is what S2 is doing, and S1 raises the DB_REP_DUPMASTER error.
    Even at that point, S1 should both return the DB_REP_DUPMASTER error as well as
    broadcast out a DUPMASTER message, and therefore S2 should receive that
    and return the DB_REP_DUPMASTER error. At that point, the application at
    both sites should call rep_start(DB_CLIENT) and then call rep_elect again.
    Is your application downgrading and then calling an election in this case?
    You should not ever remove the __db.rep files yourself.
    Sue LoVerso

  • Incorrect master after election?

    I've noticed a scenario and wondering if anyone else has seen this particular problem, or not.
    I'm running 4.6.21 on Windows, compiled using Microsofts Visual C++ 2008 express kit. I'm running the replication code via the java repquote test program.
    I've managed to consistently produce a scenario which I can't quite explain. The scenario can be produced by using the repquote test application. It works as follows:
    1) Two sights, 1 (higher priority) and 2 (lower priority) are started.
    2) One becomes the master and 2 the client. Replication proceeds normally.
    3) I terminate one by telling it "exit". 2 is elected the master.
    4) I make some additional changes to 2. 2 has noplace to replicate them to, but keeps trying to reconnect to 1.
    5) I do a clean shutdown of 2. So at this point, on disk, 2 has the most recent data committed in it, and 1 is actually a bit behind the times.
    6) I restart the two processes at roughly the same time so that they can connect and hold an election.
    7) 1 wins the election (based on its priority?) even though it has older data than 2 contained. 2 rolls back to match 1.
    I'm trying to figure out why it isn' t apparent to 1 and 2 upon restarting and holding an election that 2 has the most recent log records, etc.
    Note that if I don't shut down 2 in step 5, and instead just bring 1 back up, then things work as expected. i.e. I see 1 catch up with the changes 2 has made. This only seems to apply to replication groups in which a lower-priority master has the latest set of changes when the entire group is shut down.

    Hi Alen,
    Downloaded, rebuilt, and reran this whole scenario using a pristine build of BerkeleyDB, just to be safe. At this point, my java repquote example is running with a DLL built from pristine sources (4.6.21). I did however, make the changes that you requested previously to the java repquote example. These were:
    * Added dbenv.logFlush() just before the one dbenv.close() call in the example.
    * Changed all db.close(true) to db.close(false) to encourage DB flush.
    * Changed dbenv.setTxnNoSync(true) to false, to discourage any loss of data.
    Reran the tests, and I am still able to produce the error. I am building BerkeleyDB using Visual C++ Express Edition (free) 2008. The Java version I am running with is JDK 1.5.0_14, available from Sun. You'll know that you're running with the right JDK version if you have to hit Control^C at the end of execution (after giving the exit command.) The reason for that is in a metalink bug I entered a couple days ago - minor incompatibility between the Swig generated JNI code and the 1.5 JVM ( I think. )
    The bug still appears.
    Here's the sequence I'm running and the results that I'm seeing:
    I have two instances of repquote, repquote1.sh and repquote2.sh. These shell scripts are as follows:
    jrepquote1.sh:
    export CLASSPATH='C:\Program Files\Oracle\Berkeley DB 4.6.21\db-4.6.21.pristine\
    build_windows\Debug\dbexamples.jar;C:\Program Files\Oracle\Berkeley DB 4.6.21\db
    -4.6.21.pristine\build_windows\Debug\db.jar'
    java -Dsleepycat.db.libfile='C:\Program Files\Oracle\Berkeley DB 4.6.21\db-4.6.2
    1.pristine\build_windows\Debug\libdb_java46d.dll' \
    db.repquote.RepQuoteExample -h C:\\env1 -m localhost:8089 -o localhost:8087 -n 2
    -p 100 $@
    jrepquote2.sh:
    export CLASSPATH='C:\Program Files\Oracle\Berkeley DB 4.6.21\db-4.6.21.pristine\
    build_windows\Debug\dbexamples.jar;C:\Program Files\Oracle\Berkeley DB 4.6.21\db
    -4.6.21.pristine\build_windows\Debug\db.jar'
    java -Dsleepycat.db.libfile='C:\Program Files\Oracle\Berkeley DB 4.6.21\db-4.6.2
    1.pristine\build_windows\Debug\libdb_java46d.dll' \
    db.repquote.RepQuoteExample -h C:\\env2 -m localhost:8087 -o localhost:8089 -n 2
    -p 1 $@
    So the only difference between the two scripts is the priority being given (100 for repquote1, 1 for repquote2)
    Here's the sequence of execution:
    1) Start both processes at roughly the same time.
    2) Election occurs, and 1 becomes the master. It then creates the Database, and both processes are now able to connect.
    3) I enter some stock quotes into the master terminal, I see them in the client (repquote2), and all seems well. (nothing wrong) For simplicity, I change existing values by using ever ascending values (if only the real market worked like that.)
    4) After some time, I type "exit" into the shell for repquote1.sh. It finishes. Repquote2 detects the disconnect, and holds a new election, electing itself the new master.
    5) Note: I DON'T restart repquote1.sh at this point.
    6) I enter some additional changes in repquote2. For example, taking APPL up to 200. It was at 150 when I did my exit.
    7) I now shut down repquote2.sh by typing "exit" in it's shell. It completes.
    8) To recap: At this point, the environment under C:\env1, used by repquote1 has APPL 150 in it. The environment under C:\env2, used by repquote2, has APPL 200 in it.
    9) I restart both processes at roughly the same time. Both come up initially in client mode. I can hit enter on both of them, before the first election completes, and see APPL 150 on repquote1, and APPL 200 on repquote2.
    10) When the election completes, repquote1 gets elected the master. Repquote2 seems to rollback to sync with it, and then has APPL 150. I have effectively lost work.
    Note that repquote1.sh always seem to get elected the master, based on its higher priority, and without regard to the highest LSN. (Or so it seems to me.) If I set the priorities of the two programs equal, this problem does not occur. In that case, the process with the highest LSN seems to get correctly elected, and the behavior is consistently right.
    If you want debug traces of these programs running, I can send them to you. I have been asked to created a MetaLink bug about this scenario.

  • XML data inserting into Master, not Page

    First, I fully admit that I jumped into the deep end of the pool.  This is my first InDesign project and I'm trying to set up a 2-page spread master to support loading my content from XML.
    Thanks to the great online help, these forums/community resources, and my growing bookshelf, I've successfully (or so it seems) created my Master layout, with frames appropriately tagged for my XML (as confirmed by the Structure).  Since I'm very novice at InDesign, my testing isn't always unambiguous, but I HAVE successfully loaded my external XML (including graphics and anchored text, plus the story) into my document.
    The problem is that the data seems to be flowing into the Master, and not the Page.  So if I create all the pages I need ahead of time (right now just 2 spreads for my test), both pages are populated with the first record.
    If I only create the first spread, then the data flows and I get the magic "+" for overflow, but I can't click on it in the Page.  If I change to the Master I can click on it, which seems the major clue as to why this isn't working.  I just have no idea how to fix it.
    From everything I've read it seems that I should be able to tag my frames in the Master (which I want to reuse for other documents) and have the data flow into the Pages.
    Am I missing something obvious? 
    Or is what I'm trying to do just not possible?  (if so, does that mean I have to keep re-tagging the frames every time I make a new Document?  ugh)
    I've spent hours trying to resolve this, and would really appreciate a pointer to get me moving again.
    Thanks!
    julie

    Hm, that seems contradictory to everything I've read and the examples I've seen  (although I may have misunderstood the examples - none are quite as complicated as my layout).  My text frame has several anchors for XML data that doesn't just flow with the story.  How do I set up the tagged anchor frames I need if the story text frame is in the Master but not tagged?
    I thought that the story text frame and the anchor frames (some graphics and some text) all needed to be in the same context.  If I put them in the Master I get the XML flowing into the Master.  If I put them into the Page then the new pages created don't have the proper frames.  If I just put the story text frame in the Master, how do I associate it with the anchor frames (I only know how to do this by using the Story editor on the tagged frame as described in A Designer's Guide To Adobe InDesign and XML)?
    I'll go back and work through the samples again, but I definitely don't understand how it all fits together.
    Thanks!
    j

  • Customer master - Note  or attachment creation

    Hi All,
    In customer master screen I need to create a note or attachment for particular customer..Whenever customer is entered in  the sales order as a sold to party a pop message has to be provided saying that "This customer has some attachment or note".This can be done in user exit..But How the customer is linked with note..
    In SOOD table objectid,and title of the note is stored.By using SO_OBJECT_GET_CONTENT function module I can see the entire contents.But I don´t have an idea about how the customer is linked with this particular object id..
    Do you have any idea.It will be very useful..
    Thanks & Regards
    Bala

    Hi All,
    In customer master screen I need to create a note or attachment for particular customer..Whenever customer is entered in  the sales order as a sold to party a pop message has to be provided saying that "This customer has some attachment or note".This can be done in user exit..But How the customer is linked with note..
    In SOOD table objectid,and title of the note is stored.By using SO_OBJECT_GET_CONTENT function module I can see the entire contents.But I don´t have an idea about how the customer is linked with this particular object id..
    Do you have any idea.It will be very useful..
    Thanks & Regards
    Bala

  • In material master not all fields show the description of their value

    Gurus -
    Certain fields in the material master show their description text along.
    Example -
    Base Unit of Measure  - EA      each
    The description Text 'Each' which represent 'EA' comes from text Table T006A-MSEHT
    Not all fields in material master show the description of what they represent. (only appear on F4 popup)
    I want this description to come up for MARA-MAGRV field.
    I want the configured value description for this field to appear on the screen.
    I have 3 values put in this MARA-MAGRV
    Z001 - description text 1
    Z002 - description text 2
    Z003 - description text 3
    in MM01/MM02/MM03 only Z001 is see, not it description.
    Here is what i tried
    Added TVEGRT-BEZEI (desc field) in Transaction OMSR and assigned selection group 103 which holds MARA-MAGRV field too
    any config missing?? what say?
    Advises appreciated!
    Thanks

    You have to find out the conversion routine for domain MAGRV and enter in the convers. routine field.
    if did not find one than you have create custom (take ABAPer help)
    go to SE11 adn enter the domain MAGRV and hit display
    on the definition tab you will see the conversion routine
    here you need to populate the appo. conversion routine to see the text on the materia screen.
    Conversion takes place when converting the contents of a screen field   
    from display format to SAP-internal format and vice versa and when      
    outputting with the ABAP statement WRITE, depending on the data type of 
    the field.                                                                               
    If standard conversion is not suitable, it can be overridden by         
    specifying a conversion routine in the underlying domain.                                                                               
    A conversion routine is identified by its five-place name and is stored 
    as a group of two function modules. The function modules have a fixed   
    naming convention. The following function modules are assigned to       
    conversion routine xxxxx:                                               
    o  CONVERSION_EXIT_xxxxx_INPUT                                          
    o  CONVERSION_EXIT_xxxxx_OUTPUT                                                                               
    The INPUT module performs the conversion from display format to internal
    format. The OUTPUT module performs the conversion from internal format to
    display format.                                                                               
    If a screen field refers to a domain with a conversion routine, this    
    conversion routine is executed automatically each time an entry is made 
    in this screen field or when values are displayed with this screen field.

  • RID Master not allocating new rid pool

     Hi guys,
    I am having some problems with my server. I am unable to create new AD objects with the message, the directory has exhausted the pool of relative identifiers. I have a SBS 2003 environment with only that as the DC. However, a while ago, the previous
    admin promoted another server (Server 2003) as a Backup DC and later on the network was split and the Secondary DC no longer connected to the domain. It was not demoted or anything like that. The network was split in two and now after almost a year I am unable
    to create new objects. The PDC has all the FSMO roles as indicated when i run the netdom query fsmo command. Below is the dcdiag /v output:
    Domain Controller Diagnosis
    Performing initial setup:
    * Verifying that the local machine wsgpdc, is a DC.
    * Connecting to directory service on server wsgpdc.
    * Collecting site info.
    * Identifying all servers.
    * Identifying all NC cross-refs.
    * Found 2 DC(s). Testing 1 of them.
    Done gathering initial info.
    Doing initial required tests
    Testing server: Default-First-Site-Name\WSGPDC
    Starting test: Connectivity
    * Active Directory LDAP Services Check
    * Active Directory RPC Services Check
    ......................... WSGPDC passed test Connectivity
    Doing primary tests
    Testing server: Default-First-Site-Name\WSGPDC
    Starting test: Replications
    * Replications Check
    [Replications Check,WSGPDC] Inbound replication is disabled.
    To correct, run "repadmin /options WSGPDC -DISABLE_INBOUND_REPL"
    [Replications Check,WSGPDC] Outbound replication is disabled.
    To correct, run "repadmin /options WSGPDC -DISABLE_OUTBOUND_REPL"
    ......................... WSGPDC failed test Replications
    Test omitted by user request: Topology
    Test omitted by user request: CutoffServers
    Starting test: NCSecDesc
    * Security Permissions check for all NC's on DC WSGPDC.
    * Security Permissions Check for
    DC=ForestDnsZones,DC=WSG,DC=local
    (NDNC,Version 2)
    * Security Permissions Check for
    DC=DomainDnsZones,DC=WSG,DC=local
    (NDNC,Version 2)
    * Security Permissions Check for
    CN=Schema,CN=Configuration,DC=WSG,DC=local
    (Schema,Version 2)
    * Security Permissions Check for
    CN=Configuration,DC=WSG,DC=local
    (Configuration,Version 2)
    * Security Permissions Check for
    DC=WSG,DC=local
    (Domain,Version 2)
    ......................... WSGPDC passed test NCSecDesc
    Starting test: NetLogons
    * Network Logons Privileges Check
    Verified share \\WSGPDC\netlogon
    Verified share \\WSGPDC\sysvol
    ......................... WSGPDC passed test NetLogons
    Starting test: Advertising
    The DC WSGPDC is advertising itself as a DC and having a DS.
    The DC WSGPDC is advertising as an LDAP server
    The DC WSGPDC is advertising as having a writeable directory
    The DC WSGPDC is advertising as a Key Distribution Center
    The DC WSGPDC is advertising as a time server
    The DS WSGPDC is advertising as a GC.
    ......................... WSGPDC passed test Advertising
    Starting test: KnowsOfRoleHolders
    Role Schema Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    Role Domain Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    Role PDC Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    Role Rid Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    Role Infrastructure Update Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    ......................... WSGPDC passed test KnowsOfRoleHolders
    Starting test: RidManager
    * Available RID Pool for the Domain is 2609 to 1073741823
    * wsgpdc.WSG.local is the RID Master
    * DsBind with RID Master was successful
    * rIDAllocationPool is 2109 to 2608
    * rIDPreviousAllocationPool is 2109 to 2608
    * rIDNextRID: 2608
    * Warning :Next rid pool not allocated
    * Warning :There is less than 0% available RIDs in the current pool
    ......................... WSGPDC passed test RidManager
    Starting test: MachineAccount
    Checking machine account for DC WSGPDC on DC WSGPDC.
    * SPN found :LDAP/wsgpdc.WSG.local/WSG.local
    * SPN found :LDAP/wsgpdc.WSG.local
    * SPN found :LDAP/WSGPDC
    * SPN found :LDAP/wsgpdc.WSG.local/WSG
    * SPN found :LDAP/2af33017-abf3-4f05-9b9c-c19eb3868401._msdcs.WSG.local
    * SPN found :E3514235-4B06-11D1-AB04-00C04FC2DCD2/2af33017-abf3-4f05-9b9c-c19eb3868401/WSG.local
    * SPN found :HOST/wsgpdc.WSG.local/WSG.local
    * SPN found :HOST/wsgpdc.WSG.local
    * SPN found :HOST/WSGPDC
    * SPN found :HOST/wsgpdc.WSG.local/WSG
    * SPN found :GC/wsgpdc.WSG.local/WSG.local
    ......................... WSGPDC passed test MachineAccount
    Starting test: Services
    * Checking Service: Dnscache
    * Checking Service: NtFrs
    * Checking Service: IsmServ
    IsmServ Service is stopped on [WSGPDC]
    * Checking Service: kdc
    * Checking Service: SamSs
    * Checking Service: LanmanServer
    * Checking Service: LanmanWorkstation
    * Checking Service: RpcSs
    * Checking Service: w32time
    * Checking Service: NETLOGON
    ......................... WSGPDC failed test Services
    Test omitted by user request: OutboundSecureChannels
    Starting test: ObjectsReplicated
    WSGPDC is in domain DC=WSG,DC=local
    Checking for CN=WSGPDC,OU=Domain Controllers,DC=WSG,DC=local in domain DC=WSG,DC=local on 1 servers
    Object is up-to-date on all servers.
    Checking for CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local in domain CN=Configuration,DC=WSG,DC=local on 1 servers
    Object is up-to-date on all servers.
    ......................... WSGPDC passed test ObjectsReplicated
    Starting test: frssysvol
    * The File Replication Service SYSVOL ready test
    File Replication Service's SYSVOL is ready
    ......................... WSGPDC passed test frssysvol
    Starting test: frsevent
    * The File Replication Service Event log test
    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.
    An Error Event occured. EventID: 0xC0003500
    Time Generated: 04/29/2014 06:19:58
    (Event String could not be retrieved)
    ......................... WSGPDC failed test frsevent
    Starting test: kccevent
    * The KCC Event log test
    Found no KCC errors in Directory Service Event log in the last 15 minutes.
    ......................... WSGPDC passed test kccevent
    Starting test: systemlog
    * The System Event log test
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/29/2014 18:58:21
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/29/2014 18:58:22
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/29/2014 18:58:22
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/29/2014 18:58:22
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/29/2014 18:58:23
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/29/2014 18:58:23
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/29/2014 18:58:24
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/29/2014 18:58:31
    (Event String could not be retrieved)
    ......................... WSGPDC failed test systemlog
    Test omitted by user request: VerifyReplicas
    Starting test: VerifyReferences
    The system object reference (serverReference)
    CN=WSGPDC,OU=Domain Controllers,DC=WSG,DC=local and backlink on
    CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    are correct.
    The system object reference (frsComputerReferenceBL)
    CN=WSGPDC,CN=Domain System Volume (SYSVOL share),CN=File Replication Service,CN=System,DC=WSG,DC=local
    and backlink on CN=WSGPDC,OU=Domain Controllers,DC=WSG,DC=local are
    correct.
    The system object reference (serverReferenceBL)
    CN=WSGPDC,CN=Domain System Volume (SYSVOL share),CN=File Replication Service,CN=System,DC=WSG,DC=local
    and backlink on
    CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    are correct.
    ......................... WSGPDC passed test VerifyReferences
    Test omitted by user request: VerifyEnterpriseReferences
    Test omitted by user request: CheckSecurityError
    Running partition tests on : ForestDnsZones
    Starting test: CrossRefValidation
    ......................... ForestDnsZones passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... ForestDnsZones passed test CheckSDRefDom
    Running partition tests on : DomainDnsZones
    Starting test: CrossRefValidation
    ......................... DomainDnsZones passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... DomainDnsZones passed test CheckSDRefDom
    Running partition tests on : Schema
    Starting test: CrossRefValidation
    ......................... Schema passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... Schema passed test CheckSDRefDom
    Running partition tests on : Configuration
    Starting test: CrossRefValidation
    ......................... Configuration passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... Configuration passed test CheckSDRefDom
    Running partition tests on : WSG
    Starting test: CrossRefValidation
    ......................... WSG passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... WSG passed test CheckSDRefDom
    Running enterprise tests on : WSG.local
    Starting test: Intersite
    Skipping site Default-First-Site-Name, this site is outside the scope
    provided by the command line arguments provided.
    ......................... WSG.local passed test Intersite
    Starting test: FsmoCheck
    GC Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    PDC Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    Time Server Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    Preferred Time Server Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    KDC Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    ......................... WSG.local passed test FsmoCheck
    Test omitted by user request: DNS
    Test omitted by user request: DNS
    Also, another problem I am experiencing seems to point to my DNS service which also runs on the same machine. When I try to open Active Directory snap ins, it indicates that the domain does not exist or cannot be contacted and the AD is unable to load. 
    I'd really appreciate any help at the moment. Thanks in advance.
    Shawn

    Idan,
    Yes I followed the article regarding removing data in AD with NTDSUTIL. There is one domain and one site, but it states that there is "no current server" and "no current naming context"
    My TCP/IP config was set to 127.0.0.1 but then I changed it to point to its static IP Address, but I stumbled onto a best practice article which indicated that the 127 address was preferred, so I changed it back. I changed it as you said and ran the commands
    you asked for:
    Domain Controller Diagnosis
    Performing initial setup:
    * Verifying that the local machine wsgpdc, is a DC.
    * Connecting to directory service on server wsgpdc.
    * Collecting site info.
    * Identifying all servers.
    * Identifying all NC cross-refs.
    * Found 2 DC(s). Testing 1 of them.
    Done gathering initial info.
    Doing initial required tests
    Testing server: Default-First-Site-Name\WSGPDC
    Starting test: Connectivity
    * Active Directory LDAP Services Check
    * Active Directory RPC Services Check
    ......................... WSGPDC passed test Connectivity
    Doing primary tests
    Testing server: Default-First-Site-Name\WSGPDC
    Starting test: Replications
    * Replications Check
    [Replications Check,WSGPDC] Inbound replication is disabled.
    To correct, run "repadmin /options WSGPDC -DISABLE_INBOUND_REPL"
    [Replications Check,WSGPDC] Outbound replication is disabled.
    To correct, run "repadmin /options WSGPDC -DISABLE_OUTBOUND_REPL"
    ......................... WSGPDC failed test Replications
    Test omitted by user request: Topology
    Test omitted by user request: CutoffServers
    Starting test: NCSecDesc
    * Security Permissions check for all NC's on DC WSGPDC.
    * Security Permissions Check for
    DC=ForestDnsZones,DC=WSG,DC=local
    (NDNC,Version 2)
    * Security Permissions Check for
    DC=DomainDnsZones,DC=WSG,DC=local
    (NDNC,Version 2)
    * Security Permissions Check for
    CN=Schema,CN=Configuration,DC=WSG,DC=local
    (Schema,Version 2)
    * Security Permissions Check for
    CN=Configuration,DC=WSG,DC=local
    (Configuration,Version 2)
    * Security Permissions Check for
    DC=WSG,DC=local
    (Domain,Version 2)
    ......................... WSGPDC passed test NCSecDesc
    Starting test: NetLogons
    * Network Logons Privileges Check
    Verified share \\WSGPDC\netlogon
    Verified share \\WSGPDC\sysvol
    ......................... WSGPDC passed test NetLogons
    Starting test: Advertising
    The DC WSGPDC is advertising itself as a DC and having a DS.
    The DC WSGPDC is advertising as an LDAP server
    The DC WSGPDC is advertising as having a writeable directory
    The DC WSGPDC is advertising as a Key Distribution Center
    The DC WSGPDC is advertising as a time server
    The DS WSGPDC is advertising as a GC.
    ......................... WSGPDC passed test Advertising
    Starting test: KnowsOfRoleHolders
    Role Schema Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    Role Domain Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    Role PDC Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    Role Rid Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    Role Infrastructure Update Owner = CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    ......................... WSGPDC passed test KnowsOfRoleHolders
    Starting test: RidManager
    * Available RID Pool for the Domain is 2609 to 1073741823
    * wsgpdc.WSG.local is the RID Master
    * DsBind with RID Master was successful
    * rIDAllocationPool is 2109 to 2608
    * rIDPreviousAllocationPool is 2109 to 2608
    * rIDNextRID: 2608
    * Warning :Next rid pool not allocated
    * Warning :There is less than 0% available RIDs in the current pool
    ......................... WSGPDC passed test RidManager
    Starting test: MachineAccount
    Checking machine account for DC WSGPDC on DC WSGPDC.
    * SPN found :LDAP/wsgpdc.WSG.local/WSG.local
    * SPN found :LDAP/wsgpdc.WSG.local
    * SPN found :LDAP/WSGPDC
    * SPN found :LDAP/wsgpdc.WSG.local/WSG
    * SPN found :LDAP/2af33017-abf3-4f05-9b9c-c19eb3868401._msdcs.WSG.local
    * SPN found :E3514235-4B06-11D1-AB04-00C04FC2DCD2/2af33017-abf3-4f05-9b9c-c19eb3868401/WSG.local
    * SPN found :HOST/wsgpdc.WSG.local/WSG.local
    * SPN found :HOST/wsgpdc.WSG.local
    * SPN found :HOST/WSGPDC
    * SPN found :HOST/wsgpdc.WSG.local/WSG
    * SPN found :GC/wsgpdc.WSG.local/WSG.local
    ......................... WSGPDC passed test MachineAccount
    Starting test: Services
    * Checking Service: Dnscache
    * Checking Service: NtFrs
    * Checking Service: IsmServ
    IsmServ Service is stopped on [WSGPDC]
    * Checking Service: kdc
    * Checking Service: SamSs
    * Checking Service: LanmanServer
    * Checking Service: LanmanWorkstation
    * Checking Service: RpcSs
    * Checking Service: w32time
    * Checking Service: NETLOGON
    ......................... WSGPDC failed test Services
    Test omitted by user request: OutboundSecureChannels
    Starting test: ObjectsReplicated
    WSGPDC is in domain DC=WSG,DC=local
    Checking for CN=WSGPDC,OU=Domain Controllers,DC=WSG,DC=local in domain DC=WSG,DC=local on 1 servers
    Object is up-to-date on all servers.
    Checking for CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local in domain CN=Configuration,DC=WSG,DC=local on 1 servers
    Object is up-to-date on all servers.
    ......................... WSGPDC passed test ObjectsReplicated
    Starting test: frssysvol
    * The File Replication Service SYSVOL ready test
    File Replication Service's SYSVOL is ready
    ......................... WSGPDC passed test frssysvol
    Starting test: frsevent
    * The File Replication Service Event log test
    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.
    An Error Event occured. EventID: 0xC0003500
    Time Generated: 04/30/2014 06:17:45
    (Event String could not be retrieved)
    An Warning Event occured. EventID: 0x800034FA
    Time Generated: 04/30/2014 06:17:45
    (Event String could not be retrieved)
    ......................... WSGPDC failed test frsevent
    Starting test: kccevent
    * The KCC Event log test
    Found no KCC errors in Directory Service Event log in the last 15 minutes.
    ......................... WSGPDC passed test kccevent
    Starting test: systemlog
    * The System Event log test
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:45:49
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:45:49
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:45:50
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:45:50
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:45:51
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:45:51
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:45:58
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:46:26
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:56:39
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:56:39
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:56:40
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:56:40
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:56:40
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:56:42
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:56:43
    (Event String could not be retrieved)
    An Error Event occured. EventID: 0x00000457
    Time Generated: 04/30/2014 15:56:43
    (Event String could not be retrieved)
    ......................... WSGPDC failed test systemlog
    Test omitted by user request: VerifyReplicas
    Starting test: VerifyReferences
    The system object reference (serverReference)
    CN=WSGPDC,OU=Domain Controllers,DC=WSG,DC=local and backlink on
    CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    are correct.
    The system object reference (frsComputerReferenceBL)
    CN=WSGPDC,CN=Domain System Volume (SYSVOL share),CN=File Replication Service,CN=System,DC=WSG,DC=local
    and backlink on CN=WSGPDC,OU=Domain Controllers,DC=WSG,DC=local are
    correct.
    The system object reference (serverReferenceBL)
    CN=WSGPDC,CN=Domain System Volume (SYSVOL share),CN=File Replication Service,CN=System,DC=WSG,DC=local
    and backlink on
    CN=NTDS Settings,CN=WSGPDC,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=WSG,DC=local
    are correct.
    ......................... WSGPDC passed test VerifyReferences
    Test omitted by user request: VerifyEnterpriseReferences
    Test omitted by user request: CheckSecurityError
    Running partition tests on : ForestDnsZones
    Starting test: CrossRefValidation
    ......................... ForestDnsZones passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... ForestDnsZones passed test CheckSDRefDom
    Running partition tests on : DomainDnsZones
    Starting test: CrossRefValidation
    ......................... DomainDnsZones passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... DomainDnsZones passed test CheckSDRefDom
    Running partition tests on : Schema
    Starting test: CrossRefValidation
    ......................... Schema passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... Schema passed test CheckSDRefDom
    Running partition tests on : Configuration
    Starting test: CrossRefValidation
    ......................... Configuration passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... Configuration passed test CheckSDRefDom
    Running partition tests on : WSG
    Starting test: CrossRefValidation
    ......................... WSG passed test CrossRefValidation
    Starting test: CheckSDRefDom
    ......................... WSG passed test CheckSDRefDom
    Running enterprise tests on : WSG.local
    Starting test: Intersite
    Skipping site Default-First-Site-Name, this site is outside the scope
    provided by the command line arguments provided.
    ......................... WSG.local passed test Intersite
    Starting test: FsmoCheck
    GC Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    PDC Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    Time Server Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    Preferred Time Server Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    KDC Name: \\wsgpdc.WSG.local
    Locator Flags: 0xe00001fd
    ......................... WSG.local passed test FsmoCheck
    Test omitted by user request: DNS
    Test omitted by user request: DNS
    Computer Name: WSGPDC
    DNS Host Name: wsgpdc.WSG.local
    System info : Microsoft Windows Server 2003 (Build 3790)
    Processor : x86 Family 6 Model 15 Stepping 11, GenuineIntel
    List of installed hotfixes :
    KB2079403
    KB2115168
    KB2121546
    KB2124261
    KB2229593
    KB2264107
    KB2296011
    KB2345886
    KB2347290
    KB2360937
    KB2378111
    KB2387149
    KB2393802
    KB2412687
    KB2416451
    KB2419635
    KB2423089
    KB2440591
    KB2443105
    KB2443685
    KB2476490
    KB2476687
    KB2478953
    KB2478960
    KB2478971
    KB2481109
    KB2483185
    KB2485663
    KB2492386
    KB2497640
    KB2497640-IE8
    KB2503658
    KB2503665
    KB2506212
    KB2506223
    KB2507618
    KB2507938
    KB2508272
    KB2508429
    KB2509553
    KB2510531-IE8
    KB2510587
    KB2511455
    KB2524375
    KB2524426
    KB2530548-IE8
    KB2535512
    KB2536276
    KB2536276-v2
    KB2544521-IE8
    KB2544893
    KB2544893-v2
    KB2555917
    KB2559049-IE8
    KB2562485
    KB2564958
    KB2566454
    KB2567053
    KB2567680
    KB2570222
    KB2570947
    KB2571621
    KB2572069
    KB2584146
    KB2585542
    KB2586448-IE8
    KB2592799
    KB2598479
    KB2601626
    KB2603381
    KB2604078
    KB2607712
    KB2616676
    KB2618444-IE8
    KB2618451
    KB2620712
    KB2621146
    KB2621440
    KB2624667
    KB2631813
    KB2633171
    KB2638806
    KB2639417
    KB2641653
    KB2641690-v2
    KB2644615
    KB2645640
    KB2646524
    KB2647170
    KB2647516-IE8
    KB2653956
    KB2655992
    KB2656358
    KB2656376
    KB2656376-v2
    KB2659262
    KB2660465
    KB2661254
    KB2675157-IE8
    KB2676562
    KB2685939
    KB2686509
    KB2691442
    KB2698032
    KB2698365
    KB2699988-IE8
    KB2705219
    KB2707511
    KB2709162
    KB2712808
    KB2718523
    KB2718704
    KB2719985
    KB2722913-IE8
    KB2724197
    KB2727528
    KB2731847
    KB2742604
    KB2744842-IE8
    KB2748349
    KB2749655
    KB2753842
    KB2753842-v2
    KB2758857
    KB2761226
    KB2761465-IE8
    KB2770660
    KB2772930
    KB2778344
    KB2779030
    KB2780091
    KB2792100-IE8
    KB2797052-IE8
    KB2799329-IE8
    KB2799494
    KB2803821
    KB2803821-v2
    KB2807986
    KB2808735
    KB2809289-IE8
    KB2813170
    KB2813345
    KB2817183-IE8
    KB2820197
    KB2820917
    KB2829361
    KB2829530-IE8
    KB2833949
    KB2834886
    KB2838727-IE8
    KB2839229
    KB2845187
    KB2846071-IE8
    KB2847204-IE8
    KB2847311
    KB2849470
    KB2850851
    KB2850869
    KB2859537
    KB2862152
    KB2862330
    KB2862335
    KB2862772-IE8
    KB2864058
    KB2864063
    KB2868038
    KB2868626
    KB2870699-IE8
    KB2876217
    KB2876315
    KB2876331
    KB2879017-IE8
    KB2883150
    KB2892076
    KB2893294
    KB2893984
    KB2898715
    KB2898785-IE8
    KB2898860
    KB2900986
    KB2901115
    KB2909210-IE8
    KB2909921-IE8
    KB2914368
    KB2916036
    KB2922229
    KB2923392
    KB2925418-IE8
    KB2929961
    KB2930275
    KB2936068-IE8
    KB923561
    KB925398_WMP64
    KB925876
    KB925902-v2
    KB927891
    KB929123
    KB932168
    KB933854
    KB936357
    KB938127
    KB938759-v4
    KB941569
    KB942831
    KB943055
    KB943729
    KB944653
    KB946026
    KB948496
    KB950762
    KB950974
    KB952004
    KB952069
    KB952954
    KB953298
    KB954155
    KB954550-v5
    KB956263
    KB956572
    KB956802
    KB956844
    KB958469
    KB958644
    KB959426
    KB960803
    KB960859
    KB961063
    KB961118
    KB961501
    KB967715
    KB967723
    KB968389
    KB969059
    KB969883
    KB970483
    KB971029
    KB971032
    KB971513
    KB971657
    KB971737
    KB972270
    KB973507
    KB973540
    KB973815
    KB973825
    KB973869
    KB973904
    KB973917-v2
    KB974112
    KB974318
    KB974392
    KB974571
    KB975025
    KB975467
    KB975558_WM8
    KB975560
    KB975562
    KB975713
    KB976323
    KB977816
    KB977914
    KB978338
    KB978542
    KB978601
    KB978695
    KB978706
    KB979309
    KB979482
    KB979687
    KB979907
    KB980232
    KB980436
    KB981322
    KB982132
    KB982632-IE8
    KB982666
    Q147222
    Netcard queries test . . . . . . . : Passed
    Per interface results:
    Adapter : Server Local Area Connection
    Netcard queries test . . . : Passed
    Host Name. . . . . . . . . : wsgpdc
    IP Address . . . . . . . . : 192.168.1.2
    Subnet Mask. . . . . . . . : 255.255.255.0
    Default Gateway. . . . . . : 192.168.1.1
    Dns Servers. . . . . . . . : 192.168.1.2
    AutoConfiguration results. . . . . . : Passed
    Default gateway test . . . : Passed
    NetBT name test. . . . . . : Passed
    [WARNING] At least one of the <00> 'WorkStation Service', <03> 'Messenger Service', <20> 'WINS' names is missing.
    No remote names have been found.
    WINS service test. . . . . : Skipped
    There are no WINS servers configured for this interface.
    Global results:
    Domain membership test . . . . . . : Passed
    NetBT transports test. . . . . . . : Passed
    List of NetBt transports currently configured:
    NetBT_Tcpip_{5995589E-FC82-4DD9-8A92-33B572B20DE3}
    1 NetBt transport currently configured.
    Autonet address test . . . . . . . : Passed
    IP loopback ping test. . . . . . . : Passed
    Default gateway test . . . . . . . : Passed
    NetBT name test. . . . . . . . . . : Passed
    [WARNING] You don't have a single interface with the <00> 'WorkStation Service', <03> 'Messenger Service', <20> 'WINS' names defined.
    Winsock test . . . . . . . . . . . : Passed
    DNS test . . . . . . . . . . . . . : Passed
    PASS - All the DNS entries for DC are registered on DNS server '192.168.1.2' and other DCs also have some of the names registered.
    Redir and Browser test . . . . . . : Passed
    List of NetBt transports currently bound to the Redir
    NetBT_Tcpip_{5995589E-FC82-4DD9-8A92-33B572B20DE3}
    The redir is bound to 1 NetBt transport.
    List of NetBt transports currently bound to the browser
    NetBT_Tcpip_{5995589E-FC82-4DD9-8A92-33B572B20DE3}
    The browser is bound to 1 NetBt transport.
    DC discovery test. . . . . . . . . : Passed
    DC list test . . . . . . . . . . . : Passed
    Trust relationship test. . . . . . : Skipped
    Kerberos test. . . . . . . . . . . : Passed
    LDAP test. . . . . . . . . . . . . : Passed
    Bindings test. . . . . . . . . . . : Passed
    WAN configuration test . . . . . . : Skipped
    No active remote access connections.
    Modem diagnostics test . . . . . . : Passed
    IP Security test . . . . . . . . . : Skipped
    Note: run "netsh ipsec dynamic show /?" for more detailed information
    The command completed successfully
    Replication Summary Start Time: 2014-04-30 16:16:23
    Beginning data collection for replication summary, this may take awhile:
    Source DC largest delta fails/total %% error
    WSGBDC >60 days 5 / 5 100 (8457) The destination server is currently rejecting replication requests.
    Destination DC largest delta fails/total %% error
    WSGPDC >60 days 5 / 5 100 (8457) The destination server is currently rejecting replication requests.
    Experienced the following operational errors trying to retrieve replication information:
    58 - wsgbdc.WSG.local
    In the event viewer there are two errors in the Directory Service, Error ID 2089 and 1864 both regarding replication not taking place. 

  • Default Payment terms from Vendor Master not from Reference PO

    Hello guys,
    I am creating a PO in reference to another PO and payment terms are copied from the old PO but not updating from Vendor Master. Our payment terms are changed very frequent and our users don't want to create a new PO with too many line items so they just copy an old PO.
    IS there a way to update payment terms form Vendor Master after copying an Old PO? I know this is pretty standard functionality but just trying to see if we can trick the system,
    Thanks
    Ronnie.

    If so then convert this into an error message ensuring that the correct payment term to appear in the message, that the users need not search themselves and find out for updating the payment term
    One thing is that there is no configuration available for you take care of this automatically, there has to be user exit solution.

  • F110 - Pmt Method in Vendor Master not carried over

    Hi SAP Experts,
    Am relatively new to SAP-FI and would like to ask for your invaluable tips on my problem.
    Am using F110 where my payment method is "C" and all of my vendor open items don't have any payment method for each invoice.
    When I run F110, the payment method "C" in the vendor master is not taken by the system and so all of my open items are marked as "exceptions".
    Did I miss out on any settings in my vendor master or in my payment method set-up so that when F110 is ran, the payment method in the vendor master will be used by the system if the invoice does not contain a payment method.
    Thank you all for your help!

    Hi, upload vendor open items with requaired method using FBL1N. Select required items and click Button Mass change.
    Payment method in master data will be picked up to Item by default if you don't maintain it manually or by substitution.

  • Shelf life from material master not flowing into purchase order

    Hai friend
    I have set a shelf life value in material master ( both minimum & Total shelf life). 
    But while creating purchase order, values are not flowing from material master to purchase order.
    The field is empty.
    How to configure, please help.
    Regards
    Rammohan

    1.activate batch management
    2.to calculate SLED production date/date of goods receipt is mandatory during GRN
    3.Maintain characteristic for production date MCH1 - LFWRT
    4.assign this to class
    5.Maintain this class to material
    6.Now do GR ,it will prompt for production date .based on this ,sytem will calciulate SLED
    hope it helps

  • Incoterms to default from Vendor Master not Contract Header

    Afternoon all,
    Is it possible to default the Incoterms, on a PO, from the Vendor Master instead of the Contract?
    I have several contracts with blank Incoterms in their headers (if possible I would like to keep these blank).  The Vendor Master contains the correct Incoterms.  When I create a PO if I don't enter in the contract the Vendor Master Incoterms default correctly.  When I enter in the contract the Incoterms on the PO header will populate blank.  Is there a way to prevent this?
    Thank you

    The Incoterms usually default from a vendor master to a contract.
    If your contract has no incoterms, then it just means that someone has removed them from the contract on purpose or they have not  been in the vendor at the time the contract was created.
    There is a mass maintenance transaction to update all your contracts with the correct Incoterms.
    Getting the incoterms from vendor master instead from contract is not the way how SAP is designed, because SAP takes the values always from the most specific source, which is the contract.
    If you want it different, then you may have to use an exit or BADI or may even need a modification.

  • Background Master Not Showing In PDF

    I have a 90 page ebook I've design in InDesign. I'm self taught and new(ish) to InDesign, so please bear with me.
    My client needs the book for print and as an Interactive PDF. So, I've designed the file for print and am converting it to RGB when exporting it for web.
    Regardless of if I export the file for print or web, RGB or CMYK almost all of the pages are missing the background. The strange this is I'm using Masters for the background and some pages show up properly while most don't even though the same Master is applied.The Master has a transparency (opacity) on it, but I've also tried removing this and exporting the file without it and still have the same problem.
    Any help with this is MUCH appreciated.
    Here you will see how Page 1 is exporting properly with a background texture and opacity overlay:
    Here you will see how Page 2 is exporting with no background image even though the very same Master is applied to it.

    Awesome you're so quick! Thanks! I'm probably just being a picky designer, but check out the screen shot from mine and yours. I am look at it in Adobe Acrobat Pro. It looks a little thicker and more rugged to me. Not smooth and crisp.
    Or you could open my file and open yours from the link above and compare.

Maybe you are looking for

  • Synching Iphone5 with up to date iOS to Macbook Pro

    I am having problems synching podcasts from my phone to my macbook pro. I subscribe to podcasts on my phone, and when I connect my iphone to my macbook, they appear under devices: podcasts. Ever since I upgraded to iOS7, while my phone shows I have 7

  • Scanning photos and Adobe Photoshop Elements 9 system requirements

    Hello all- A long, involved question here, so bear with me. I have a Power Mac G4, still working fine even though it's almost 8 years old. I want to scan a number of photos for use in a Final Cut Pro 5 project. (I have an Epson Workforce 610 all-in-o

  • Encountering STATUS_CODE_ERROR

    Hi, This is the first time I'm encountering this weird error. Every time I try to log in to my Apple ID in the Mac App Store or trying to update an app, an error shows up: "STATUS_CODE_ERROR". Here's a screenshot: https://www.dropbox.com/s/arfk1rpp9e

  • When i use f/fox, i get tiny google bar and everything else disappears

    When I press m/Firefox, a much smaller google bar than usual comes up. Apart from the smaller bar the page is blank ie no File, Edit, View etc, no go back a page, not even a start button!

  • How to create a navigation that resizes with browser window

    Hello, I came upon this site http://www.smetana.net/. In it the navigation components resize with the browser window change of size but the content remains the same size. I would like to build something similar for my site but I have no idea how this