KCC Generated Replication Topology for 3 sites - not a full mesh

A fairly old topic but a question still - in a 3 site AD domain/forest, 2003 forest and domain level, 2x 2012R2 DC, 1x 2008R2 DC, and a single site link that all 3 are members of (cost 100, replication 15 min) - KCC doesn't end up creating a full mesh but
a hub and spoke topology.
So it ends up being Site A connects to both B and C, but B and C just go back to A and don't set up links to each other - which I'd prefer a bit more redundant, but without manually creating any links.
Is there any reason/logic for hub and spoke even though 3 sites really should be a ring/mesh?

> Is there any reason/logic for hub and spoke even though 3 sites really
> should be a ring/mesh?
Is direct communication between B and C possible? Then create site links
according to your topology :)
Greetings/Grüße,
Martin
Mal ein
gutes Buch über GPOs lesen?
Good or bad GPOs? - my blog…
And if IT bothers me -
coke bottle design refreshment (-:

Similar Messages

  • Safari shows the IP for many site, not the normal URL

    When I type a site like cnn.com into the safari browser, 3 out 4 times it will resolve and display the IP address in the URL bar, not the normal english text.  This happens on most large sites like espn.com and it breaks functionality the of the site.  I got so frustrated with it that I reinstalled the OS and for a while the problem was gone.  Then it came back, same as before.  The only thing that changed when it came back is that I installed flash.  Any ideas?
    Macbook pro 11,1
    OSX 10.9.4
    Current on updates

    Try another browser.
    Firefox
    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About

  • Mobile site not spanning full page

    After creating a desktop website I then went to create a mobile device site, I used the default page size but when viewing it on iPhone etc it would not span the full screen. I then tried increasing the page width and it would still not work. See the dark grey on the right of the screen shot from my phone

    You might have a stray object on the Master page to the right of your design, this will push the page over.
    Go to your Master page and do a select all and see if anything appears to the right of your page.

  • Sharpoint 2010 architecture for internet sites..

    Hi,
    we are trying to build a new fresh sharepoint  2010 farm for internet sites(not intranet). Can some one please help me know what needs to be considered when creating a fresh sharepoint 2010 farm for internet based sites.
    Cheers,
    Kotamarthi Veera

    Refer to this post on design recommendations to create a internet facing SharePoint site
    http://technet.microsoft.com/en-us/magazine/gg457886.aspx
    http://designshare.wordpress.com/2012/11/14/internet-facing-sites-with-sharepoint-2010-tips-tricks-gotchas/
    --Cheers

  • Transactional Replication - Generate a snapshot for a new art only

    I will apreciate any help on this, thanks ahead!
    We are running the below script that works well for us at dev and other environments but when running on prod the generated snapshot is for all articles in the publication rather than the desired results, for the new art only.
    I have copied below the code being used.
    SET NOCOUNT ON; SET TRANSACTION ISOLATION LEVEL READ COMMITTED;
    DECLARE @rc int, @publication sysname, @article sysname, @subscriber sysname, @destination_db sysname
    ,@delete_article_from_replication_configuration bit ,@debug bit = 1;
    SELECT @publication = N'MyPub'
    ,@destination_db = N'dest_database'
    ,@subscriber = N'MyServer'
    SELECT @article = N'MyArt'
    -- SET immediate_sync and allow_anonymous to false
    EXEC sp_changepublication
    @publication = @publication,
    @property = N'immediate_sync',
    @value = N'false';
    EXEC sp_changepublication
    @publication = @publication,
    @property = N'allow_anonymous',
    @value = N'false';
    -- add article
    DECLARE @error_message nvarchar(4000);
    IF NOT EXISTS (SELECT * FROM dbo.sysarticles a INNER JOIN dbo.syspublications p ON a.pubid = p.pubid WHERE a.name = @article AND p.name = @publication)
    BEGIN;
    EXEC @rc = sp_addarticle
    @publication = @publication
    ,@article = @article
    ,@source_owner = N'dbo'
    ,@source_object = @article
    ,@destination_table = @article
    ,@type = N'logbased'
    ,@creation_script = null
    ,@description = null
    ,@pre_creation_cmd = N'none'
    ,@schema_option = 0x000000000803100D /* 0x000000000803FFDF */
    ,@status = 16 /* 8 */
    ,@vertical_partition = N'false'
    ,@ins_cmd = N'SQL'
    ,@del_cmd = N'SQL'
    ,@upd_cmd = N'SQL'
    ,@filter = null
    ,@sync_object = null
    ,@auto_identity_range = N'false'
    ,@identityrangemanagementoption = N'manual';
    IF ( (@@ERROR <> 0) OR (@rc <> 0) )
    BEGIN;
    SELECT @error_message = ERROR_MESSAGE(); RAISERROR(@error_message, 16, 1);
    IF (@@TRANCOUNT > 0) ROLLBACK TRAN; RETURN;
    END;
    PRINT 'The article ''' + @article + ''' has been added to publication ''' + @publication + '''';
    END;
    -- add subscription
    IF NOT EXISTS (SELECT * from syssubscriptions WHERE dest_db NOT LIKE 'virtual' AND srvname LIKE @subscriber AND artid IN
    (SELECT artid FROM dbo.sysarticles a INNER JOIN dbo.syspublications p ON a.pubid = p.pubid WHERE a.name = @article AND p.name = @publication ))
    BEGIN;
    EXEC @rc = sp_addsubscription
    @publication = @publication
    ,@subscriber = @subscriber
    ,@destination_db = @destination_db
    ,@subscription_type = N'Pull'
    ,@sync_type = N'automatic'
    --,@sync_type = N'replication support only'
    ,@article = @article
    ,@update_mode = N'read only'
    ,@subscriber_type = 0
    ,@subscriptionstreams = 4;
    IF ( (@@ERROR <> 0) OR (@rc <> 0) )
    BEGIN;
    SELECT @error_message = ERROR_MESSAGE(); RAISERROR(@error_message, 16, 1);
    IF (@@TRANCOUNT > 0) ROLLBACK TRAN; RETURN;
    END;
    PRINT 'The subscription ''' + @subscriber + ''' for article ''' + @article + ''' has been created''';
    END;
    EXEC sp_changepublication
    @publication = @publication
    ,@property = N'sync_method'
    ,@value = N'native'
    ,@force_invalidate_snapshot = 0
    ,@force_reinit_subscription = 0;
    -- create snapshot
    EXEC sp_addpublication_snapshot
    @publication = @publication
    ,@frequency_type = 1
    ,@frequency_interval = 1
    ,@frequency_relative_interval = 0
    ,@frequency_recurrence_factor = 0
    ,@frequency_subday = 0
    ,@frequency_subday_interval = 0
    ,@active_start_time_of_day = 0
    ,@active_end_time_of_day = 235959
    ,@active_start_date = 0
    ,@active_end_date = 0;
    Yaniv Etrogi
    site |
    blog | linked in |
    mail
    Please click the Mark as Answer button if a post solves your problem! or
    Vote As Helpful

    Hello,
    1. Verify if you are using CONCURRENT or NATIVE method for synchronization by running the following command.
    Use yourdb
    select sync_method from syspublications
    If the value is 3 or 4 then it is CONCURRENT and if it is 0 then it is NATIVE.
    For more information check
    http://msdn.microsoft.com/en-us/library/ms189805.aspx
    2) Then add the subscription for this new article using the following command
    EXEC sp_addsubscription @publication = 'yourpublication', @article = 'test',
    @subscriber =‘subs_servername', @destination_db = 'subs_DBNAME',
    @reserved='Internal'
    If you are using the NATIVE method for synchronization then the parameter
    @reserved=’Internal’ is optional but there is no harm in using it anyways. But if it is CONCURRENT then you have to use that parameter. Else the next time you run the snapshot agent it is going to generate a snapshot for all the articles.
    Lastly start the SNAPSHOT AGENT job from the job activity monitor. To find
    the job name follow these steps.
    · select * from msdb..sysjobs where name like '%yourpublication%'
    · Right click on each of those jobs and find which one contains the step
    ‘Snapshot Agent startup message’. This is the job that you want to
    start from the first step.
    3. Verify that the snapshot was generated for only one article.
    Regards, Pradyothana DP. Please Mark This As Answer if it solved your issue. Please Mark This As Helpful if it helps to solve your issue. ========================================================== http://www.dbainhouse.blogspot.in/

  • SharePoint 2013: A web analytics report is not available for this site.

    Hello,
    I have SharePoint Server 2013 and the enable usage data collection is enabled.  There is usage logs and data being generated, but SharePoint says there is not data available.
    A web analytics report is not available for this site. Usage processing may be disabled on this server or the usage data forthis site has
    not been processed yet.
    What can I do?
    Thanks,
    Paul
    Paul

    hi,
    Web Analytics is now part of the 2013 Search.
    You can refer the below links, :
    http://blogs.msdn.com/b/chandru/archive/2013/08/31/sharepoint-2013-web-analytics-report-where-is-it.aspx
    http://www.collabshow.com/2013/05/23/sharepoint-2013-analytics-a-big-step-backward/
    http://usamawahabkhan.blogspot.com/2013/06/sharepoint-2013-analytics-features-how.html 
    if you wanna use  API, there is a blog,which talk about the same:
    retrieve  Search Analytics Reports
    using SharePoint 2013 API:
    http://radutut.wordpress.com/2013/01/27/how-to-get-search-analytics-reports-programmatically-in-sharepoint-2013/

  • CR runtime for VS2010 (v13) not generating report

    I installed Crystal Reports Runtime for VS2010 version 13 on Win2003 Server 64 bit (for intranet website that is used to execute reports). The web site is executed under Integrated security. The user account and the network service account have write and modify access to the designated temp folder on the web server. But for some reason when I execute the report, "Database Logon Failed" error is getting generated. Crystal Reports 10.5 runtime under same settings worked fine, but when I installed CR13 runtime and changed Web.config to point to CR13 version, it is generating this error. The correct version 13 is getting picked up as I checked the ReportDocument object's Class Version after the ReportDocument.Load() is executed, and it points to version 13. It is generating this error when executing " ReportDocument.ExportToDisk". Does any account other than the user account (logged in NT account) and service account require permissions to temp folder. Does any other folder require permissions? What is new in version 13 regarding the temp folder that CR uses to generate the report? The temp folder that is used in our intranet web site to generate CRs is a special folder (not C:\Win\Temp but another designated folder) that has the user account & Network service account have write and modify access. Has anything regarding the temp folder that CRs uses changed between CR10.5 and CR13. The web site, Crystal Reports(.rpt) and SQL server (Network is set up for Kerberos Authentication) are all set up for integrated security, and this set up worked with CR10.5 runtime, but does not work with CR13 runtime.
    Error Details:
    Server Error in '/' Application.
    Database logon failed.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: Database logon failed.

    I have the same issue as you. I have converted my reports from CR10 to CR13. I can execute them locally (I'm in "Administrator Group"), but when I deploy the reports to my DEV environment I have this error :
    CrystalDecisions.CrystalReports.Engine.LogOnException: Echec de la connexion à la base de données. ---> System.Runtime.InteropServices.COMException (0x8004100F): Echec de la connexion à la base de données.
       à CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext)
       à CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
       --- Fin de la trace de la pile d'exception interne ---
       à CrystalDecisions.ReportAppServer.ConvertDotNetToErom.ThrowDotNetException(Exception e)
       à CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext)
       à CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
       à CrystalDecisions.CrystalReports.Engine.FormatEngine.Export(ExportRequestContext reqContext)
       à CrystalDecisions.CrystalReports.Engine.FormatEngine.Export()
       à CrystalDecisions.CrystalReports.Engine.ReportDocument.Export()
       à
    I don't understand how it could be a database connection problem, because the report crash on CrystalDecisions.CrystalReports.Engine.ReportDocument.Export() call and, at this point, data are loaded into the dataset from my Data Tier (which did not fired an exception).

  • Not able to generate multiple lines for headers in report

    Hi,
    I am new to BI publisher and not able to generate multiple lines for headers. Please help me to resolve.
    I am using RTF template, data source as PS Query and XML file (system generated from the data source)
    When I am using system generated 'First XML' file, I am getting output in the follwoing format.
    TEAM_MEMBER, PROJECT_ID, NAME, START_DT
    e.g.
    EMP1 , 71000, Sample, 01-Jan-2010
    EMP1 , 72000, Sample, 01-Feb-2010
    EMP1 , 73000, Sample, 01-March-2010
    But I want the report to be generate with multiple projects for one employee like below format , for that I used 'Second XML' file but I am getting blank report.
    In short if there is one to many case, how to show in reports??? Please correct if I am going wrong.
    TEAM_MEMBER
    PROJECT_ID, NAME, START_DT
    PROJECT_ID, NAME, START_DT
    PROJECT_ID, NAME, START_DT
    e.g.
    EMP1
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010
    **********First XML**************System generated XML ****************************
    <?xml version="1.0"?>
    <query numrows="2" queryname="SY_EMP_PROJECT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="">
    <row rownumber="1">
    <TEAM_MEMBER>TEAM_MEMBER </TEAM_MEMBER>
    <PROJECT_ID>PROJECT_ID samp</PROJECT_ID>
    <NAME>NAME sample data</NAME>
    <START_DT>2010-08-25</START_DT>
    </row>
    <row rownumber="2">
    <TEAM_MEMBER>TEAM_MEMBER</TEAM_MEMBER>
    <PROJECT_ID>PROJECT_ID samp</PROJECT_ID>
    <NAME>NAME sample data</NAME>
    <START_DT>2010-08-25</START_DT>
    </row>
    </query>
    **********Second XML**************Manually created XML and using to show multiple projects for one employee****************
    <?xml version="1.0"?>
    <TEST numrows="2" queryname="SY_EMP_PROJECT" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="">
    <TEAM_MEMBER rownumber="1">
    <TEAM_MEMBER>1</TEAM_MEMBER>
    <EMPLOYEE_NAME>SAMPLE</EMPLOYEE_NAME>
    <PROJECT>
    <PROJECT_ID>1111</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01012010</START_DATE>
    </PROJECT>
    <PROJECT>
    <PROJECT_ID>1112</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01022010</START_DATE>
    </PROJECT>
    </TEAM_MEMBER>
    <TEAM_MEMBER rownumber="2">
    <TEAM_MEMBER>2</TEAM_MEMBER>
    <EMPLOYEE_NAME>SAMPLEC</EMPLOYEE_NAME>
    <PROJECT>
    <PROJECT_ID>1111</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01012010</START_DATE>
    </PROJECT>
    <PROJECT>
    <PROJECT_ID>1112</PROJECT_ID>
         <PROJECT_DESCR>SAMPLE</PROJECT_DESCR>
    <START_DATE>01022010</START_DATE>
    </PROJECT>
    </TEAM_MEMBER>
    </TEST>
    Edited by: ganeshtw on Aug 25, 2010 12:14 AM

    Hi,
    With your first xml you can print like
    EMP1
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010While creating the RTF template you can use the Group by option.
    <?for-each-group:ROW;./columnname> then print the column name
    <?columnname?>
    --Then your table format
    71000, Sample, 01-Jan-2010
    72000, Sample, 01-Feb-2010
    73000, Sample, 01-March-2010
    <?end for-each-group?>
    Thanks.

  • I have problem with fonts for my site, i have used "Lucida sans unicode " family for certain texts. it shows perfect in mozilla 3.5 and mozilla 4. But the font not supporting in mozilla 5.0? please help me

    i have problem with fonts for my site, i have used "Lucida sans unicode " family for certain texts. it shows perfect in mozilla 3.5 and mozilla 4. But the font not supporting in mozilla 5.0? please help me

    i have problem with fonts for my site, i have used "Lucida sans unicode " family for certain texts. it shows perfect in mozilla 3.5 and mozilla 4. But the font not supporting in mozilla 5.0? please help me

  • My iPod touch was stolen and recovered.  I can use my Apple id for this site but the theif changed the Apple id needed to update apps etc and I do not know how to delete his acct. Any help with this will be greatly

    My iPod touch was stolen and recovered.  I can use my Apple id for this site but the theif changed the Apple id needed to update apps etc and I do not know how to delete his acct. Any help with this will be greatly appreciate

    If the thief enabled activation lock on the device, then there is nothing that can be done.  Only the password for the Apple ID that it is locked with can disable activation lock.

  • View 'CUT Home Page View (CME)' is not licensed for this site.(SBL-DAT-0032

    Hi Siebel guru,
    I am getting below error when i login in to sibel server.
    View 'CUT Home Page View (CME)' is not licensed for this site.(SBL-DAT-00327)
    can any one help me out to solve this issue ASAP.
    Regards
    Prabhat

    Hi Goud,
    In Installtion time it asked pls update your license key.
    then i updated my license key from http://licensecodes.oracle.com/siebel.html.
    Ifound ther is four row license key information.
    I updated only first row licencse key.
    Is there any workaround for updating license key.
    pls provide me steps.
    Regards
    Prabhat

  • In Security, clicking on the "Saved Password" button displays your current saved password for each site. It does not allow you to change a password. How would you do that?

    In Security, clicking on the "Saved Password" button displays your current saved password for each site. It only allows you to view and delete site passwords. It does not allow you to change a password. How would you do that?

    If you enter a new password Firefox should offer to change the password.
    *You may not need to delete the old password. Try "Refreshing" the page, entering the site again, you may need to let Firefox fill in the old password, then enter the new password, and Firefox should ask to save the new password. See:
    **http://kb.mozillazine.org/Deleting_autocomplete_entries
    *If you delete the old password, you may need to "Refresh" the site after deleting the old password.
    If you want to delete the password that has been saved do the following:
    #In the Tools menu select Options to open the options window
    #Go to the Security panel
    #Click the "Saved Passwords" button to open the passwords manager
    #Select the site in the list, then click Remove
    <br />
    <br />
    '''You need to update the following.''' The Plugin version(s) shown below was/were submitted with your question and is/are out of date. You should update to avoid known security issues with the version(s) you have installed. Click on "More system info..." to the right of your question to see what was included with your question.
    *Adobe PDF Plug-In For Firefox and Netscape 8.3.0 (''Note: this is a very old version and installing the current version may not delete it or overwrite it. To avoid possible problems with having 2 versions installed on your system, you may want to remove the old version in Windows Control Panel > Add or Remove Programs before installing the new version'').
    *Shockwave Flash 10.3 r181 (''this may be current but a new version was released on 2011-06-14 with a ".26" after the "181". You can use the Plugin Check below and/or look in Add-ons > Plugins for the version of Shockwave Flash that you have installed. The newest version will be shown in Add-ons > Plugins as "Shockwave Flash 10.3.181.26"'').
    *Next Generation Java Plug-in 1.6.0_24 for Mozilla browsers
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**SAVE the installer to your hard drive (save to your Desktop so that you can find it after the download). Exit/Close Firefox. Run the installer you just downloaded.
    #**Use either of the links below:
    #***https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox ''(click on "Installing and updating Adobe Reader")''
    #***''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #**'''''Be sure to <u>un-check the Yahoo Toolbar</u> option during the install if you do not want it installed.
    #*Also see "Manual Update" in this article to update from the Java Control Panel in Windows Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Firefox_:_FAQs_:_Install_Java#Multiple_Java_Console_extensions
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • Bridge CS6 not generating correct thumbnails for RAW files

    I'm running Bridge CS6 (the latest version, 5.0.2.4) on a 2013 MacBook Pro (OSX 10.9.1) and suddenly as of today Bridge is no longer updating the thumbnails for my RAW files. All other image and video file formats are having thumbnails generated but not my Nikon NEF raw files including those which I have previously worked on in ACR. I have tried purging the entire cache, restarting Bridge and even rebooting my computer and still the raw thumbnails are not being generated.
    Any advice would be appreciated thank you.
    Eric
    Actually I've just noticed that thumbnails for jpegs are not being generated either. A thumbnail is only generated if I work on a file in Photoshop and then save it.

    Check you cache disk free space.  You should have at least 15%.  For a 700g drive that that 100g free.
    Have you reset preferences?  Hold down option key and start bridge.  You will get a reset window.

  • F110 payment run completed but not generated all check for the payments

    Do any one have an idea or the potential answer on my query
    I've run F110 and generated one Payment all 45 open items for one vendor
    Now after the print done only the first 20 items got into the check register, and left over the remaining 25 items
    So my question is why system not generated the check for the remaining 25 items and what is the remedy

    No all settings are available, but still the same situation the all checks are not generated for all items of the vendor open items clearing in the one payment documents
    single vendor
    single payment for all 25 open items
    After print activity compelted
    checks created for items 5
    leftover items 20 not created check
    can anyone tell why system is behaving like this

  • Fi Document is not generating in MIGO for multiple account assignment in PO

    Hi,
    I have have created  asset po DG set 111 quanity is 4, i have created 4 different assets and assign quanity 1 to each dg sets in account assignment. While doing GRN system is not generating FI document for this po. if  i am giving one quanity or single account assignment for as 4 then it is generating FI quantity.
    PLease help me out why system is not generating FI document for multiple accont assignment in MIGO.
    Thanks in advance
    KISHORE

    Hi
    There is no option if you are not on EhP4... Do MIRO and see if the FI doc is generated
    Only way is to do MIRO immediately after MIGO.. OR Schedule ERS (Evaluated Receipt Settlement) which runs every hour in the background so that MIRO is posted automatically based on MIGO document.... Basically, you have to do MIRO after MIGO.. Whether you do it manually or through ERS is a matter of choice
    Regards
    Ajay M

Maybe you are looking for

  • Payment terms in Credit Memo

    Hi Experts This refers to credit memo to vendors thru FB65.The vendor master has payment terms populated which gets carried forward in case of a credit memo. The solution of entering a "credit memo" payment terms in the vendor master has been explore

  • How do you burn a data disc  in ML

    Hi I would like to burn  a few install programs to a data disc  so that should I ever need to I can reinstall them  but I  am a a loss as how to do this in mountain lion on 2012 imac  I do have a superdrive  but since i haven't done this before  not

  • Maximum number of contract accounts in IS-U per businesspartner

    Hello, i've got a question about contract accounts in IS-U. To delimit the range where a report is looking for contract accounts in IS-U. I need to know how many contract accounts are allowed per businesspartner. Is there any one who knows the answer

  • Is there any way to turn off the Skype update mess...

    Hello, I am using the Skype 6.21 version on Windows 7, for now I do not want to update to the newer version (mostly due to not liking the interface). My problem is every time I turn on Skype, the updater message pops up (sometimes several times, once

  • Gmail buttons not showing up

    firefox isn't showing navigation and settings buttons on gmail, making it hard to see where things are. The tooltips show up when rolled over with the mouse but all buttons don't show, just outline where they should be. Only site doing this. Already