Problem routing documents with Content Organizer Timer Job

Hi,
We have a farm that has two front-end servers with SharePoint Server 2010 Standard and one back-end with SQL Server 2008 R2. We are using a multiple site collections with the record center template to route documents in different document libraries. The farm
has SP1 and cumulative update of December 2012.
The problem is that the Content Organizer Job cannot route documents in a one of the sites, and reports the error in the log: “Routing Engine: Rule 'Move_Document' incorrectly specified the target folder /sites/Energy/DocumentLibrary was not found”. This is
happening only in one of the front-ends, because, if the other front-end runs the job for this specific site, the problem doesn't replicate.
We try to restart the two front-ends, and restart the SharePoint Timer 2010 service, but none of the solutions corrects the problem.
Thanks for your help

Do you have NLB in use and are you using Kerberos authentication? My gut feel is that you might have issues where one WFE is trying to work with the other one but is failing to authenticate for some reason.
Try logging onto each box and browsing to the sites given as the timer service user identity, see if you can browse to the site.

Similar Messages

  • Creating document with content from a remote system

    Any sample code that I have seen for creating a new document requires that the file (the content) of the document resides on the Server machine.
    What is the best way to create a document with content that comes from a remote file?

    The Java code which is trying to load a file into IFS must have access to the file to load it.
    If the file you are trying to load is in a remote location from the Java code, then you would need to use some remote access protocol, such as NFS, to ensure the file was accessible to the Java code.

  • How to resize document with content?

    ID CC 2014
    How do you resize a document with content so that the scale of everything is maintained, but the final output is just a smaller size?
    I have a 7x7 square booklet, laid out with content, I want to make this a  6x6 square booklet.

    Thank you.
    …The more I use InDesign and Illustrator the more and more amazed I am at Adobe's ability to entirely disregard features that seem obvious and required. This process should be no more complex than a dialog box, much like Photoshop's "image size" - Enter a new desired page size, and all objects scale up or down in uniform to match the new page size.
    How is this not in the software already?
    I can't be the only one who has had a output size change after the project has started or is finished.

  • Problem veryfing document with more than one signature element ...

    hello everyone,
    Sorry for my english. I've got a short question (but interesting).
    I know how to write simple application which correctly sign and verify xml document (dsig and xades).
    When I sign the same xml document for a few times it looks like this:
    <data>
    <Signature 1 />
    <Signature 2 />
    <Signature 3 />
    </data>
    But only last signature element I can verify correctly. I use Transform.ENVELOPED, and haven't got any ideas what I do wrong. Maybe I have to remove all signature elements before sign next ? Maybe I have to remove other signature elements before verify right ?
    Best regards, kk

    Take a look at business area and groupings in they payment program settings...
    I am not sure what version you are on but the following link for 4.7 should provide some valuable information...
    http://help.sap.com/saphelp_47x200/helpdata/en/01/a9be64455711d182b40000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/01/a9be64455711d182b40000e829fbfe/frameset.htm
    Grouping Open Items and Individual Payments
    Wherever possible, the payment program will always group items together for payment.
    The payment program can only group together open items for payment if the open items in an account have the same:
    1. Currency
    2. Payment method in the item
    3. Bank in the item
    4. Contents of the grouping fields (if a grouping key is specified in the customer or vendor master record)
    You can also pay open items from different company codes together, as well as customer and vendor line items.
    Items in an account are not grouped together if you:
    1. Make payments separately per business area. This procedure entails separate payments being created per business area.
    2. Want to make individual payments
    Items in which a payment method is specified are not grouped with items in which no payment method is specified.
    You define the required grouping key in the IMG for Financial Accounting under Accounts Receivable and Accounts Payable -> Business Transactions -> Outgoing Payments -> Automatic Outgoing Payments -> Payment Method/Bank Selection for Payment Program -> Define Payment Groupings.
    In our system, if the business area is the same, there will be one ZP document with one line with a posting key of 25. Otherwise there will be many individual 25 posting key lines with.

  • Issues with 'Content Organizer Rules' of SharePoint 2010

    Hi Everyone,
    Hope all's going well. I have configured Content Organizer Rules for my SharePoint application. It's configured properly and its routing documents to the desired folder in other libraries of the site.
    I want these rules to be applied to a particular library, however they get applied to all libraries in the site collection.
    Is there any way to restrict 'Content Organizer Rules' not to be applied on some specific library.
    Thanks in advance,
    Waseem Khan

    Hi,
    We can create a New Rule in Content Organizer Rules, then set the particular library in
    Target Location.
    More information:
    http://community.bamboosolutions.com/blogs/sharepoint-2010/archive/2010/11/03/sharepoint-2010-cookbook-content-organizer-for-document-library.aspx
    http://blog.scosby.com/post/2011/03/16/SharePoint-2010-Content-Organizer-Client-Object-Model.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Locking problem - unique documents with external numbers

    Hello,
    I have following problem:
    In external system documents are generated with unique numbers. When they come to SAP (via RFC calls) corresponding documents in SAP are created with internal SAP numbering (the external document number is saved in "Ref. Doc No." field).
    Recently we had a situation when the external documents were posted twice (with two different internal SAP numbers). There is a check if the document with "Ref. Doc No." already exists in database table but it doesn't work when double posting is performed in very short period of time (the document from first posting is not yet written in DB while the second posting checks if it is already there - in result the second posting is also performed).
    I thought about using ENQUEUE/DEQUEUE mechanism but it seems to work only on records which are already in DB table.
    Do you have any idea what "lock mechanism" could be used in this case?

    Boinjour,
    You said :
    "I thought about using ENQUEUE/DEQUEUE mechanism but it seems to work only on records which are already in DB table."
    My point of view is that you can lock an entry that is not already existing in the DB.                                          
    Example : in the transaction code se11 try to create a LOCK OBJECT named eztest. During this creation and before saving, open an other sap session and try to create the same object. You will have an error message because a lock already exist.
    The entry is locked but does not exist in DB.
    "Do you have any idea what "lock mechanism" could be used in this case?"
    Create a specific lock object with Lock parameter = a sap field to will correspond to the external number.
    ==&gt; It will generate 2 function modules (ENQUEUE and DEQUEUE).
    In the abap that is integrating incoming data :
    add a CALL to the "ENQUEUE" function module ===&gt; try to lock an entry
    If the lock was OK (return code of enqueue function module is 0)
    Then you continue
    Else.
    The entry that you are trying to lock is already locked.
    ENDIF.
    Cordialement,
    Chaouki.
    It is easy to test :
    Cordialement,
    Chaouki.

  • Problem creating document with function ISH_N2_MEDICAL_DOCUMENT

    Hello,
    first of all, creating a document with correct data works. But our customer wants the documents also to be created if the name of the responsible employee is wrong or not existing.
    Can this be done in some way? Because when i try to use the function "ISH_N2_MEDICAL_DOCUMENT" i get the message "message employee NAME is not employee responsible" and the document is not created.
    regards
    Daniel

    Dear Daniel,
    basically you cannot create a medical document without an existing employee responsible (business partner). Depending on your system configuration the EmR may to be assigned to the documenting ou.
    So how you can deal with that restriction?
    a) use a dummy bp for these onces which doesn't exists. You can check BP by the IS-H BAPI for Business partners.
    b) create the BP on the fly before creating the document.
    Regards,
    Axel

  • Problems opening documents with Adobe Reader XI

    I tried to open a file from my email account. I got a message from Adobe Reader XI that it could not open ecause it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded.  I get this message with some documents which I have been able to open in the past and now I  can't.  I do not have Microsoft Office on my computer.  I have Microsoft Word Starter 2010.  I am a home user and this program works well as my Word software.  I have downloaded a trial of Adobe Acrobat Pro XI and that hasn't solved my problem.  Can anyone help me?

    If you don't have Word but want to view Word docs, you can download and install the MS Word Viewer from http://www.microsoft.com/en-us/download/details.aspx?id=4.
    In fact, istalling it may clear up the file association problem all on it's own.

  • Problems sending documents with "send to"

    I have a several problem to send documents via File -> Send To -> Mail recipient
    When I click send , ). the application will appear to hang and Outlook crash doesnt start.
    No process instable found in windows task manager.
    The only solution is "kill" Explorer process and Run > New task> Explorer, or disconnect current user.
    Thank you for help
    A.M.
    Windows XP Professional SP3
    Microsoft Outlook 2003 Standard Edition SP3
    Oracle Connector for Outlook rel. 10.1.3.04.80907 (i've try also the last version)

    Hi,
    Check out the following commands under Content Management -> User Interface -> Commands:
    MSOL_send_as_attachment_Applet
    MSOL_send_as_attachment_Vbs
    MSOL_send_as_link_Applet
    MSOL_send_as_link_Vbs
    they allow you to attach the resource to an Outlook mail Item either by using an applet or an activex control.
    You have to add it to the right Command Group in order to see it on the menu.
    Best regards,
    Avishai Zamir

  • Problem attach document with the FileUpload UI.

    I am trying to attach a document to a CRM Notification from application Web Dynpro for ABAP, I have build a FM that includes the method
    cl_crm_documents=>create_with_file
    When I test the FM from SE37 transaction, I am able to attach a file from a local disk succesfully. But If I call this FM from Web Dynpro, trying to do the same operation, document cannot attach to notification and Method returns the following error: “Error loading file ” (Class of message CRM_DOCUMENTS and number 100).
    Thanks in advance.
    FUNCTION z_crm_anexar_docs_inc.
    ""Interfase local
    *"  IMPORTING
    *"     VALUE(GUID) TYPE  CRMT_OBJECT_GUID
    *"     VALUE(FILENAME) TYPE  SDOK_FILNM
    *"     VALUE(PATH) TYPE  SDOK_CHTRD OPTIONAL
    *"     VALUE(DESCRIPTION) TYPE  STRING
      DATA: ls_bor   TYPE sibflporb,
            lv_loio  TYPE skwf_io,
            lv_phio  TYPE skwf_io,
            lv_error TYPE skwf_error.
    MOVE: 'BUS2000116' TO ls_bor-typeid, "aqui le pasamos el tipo de objeto que estemos tratando
            'BO'         TO ls_bor-catid,
            guid         TO ls_bor-instid.
      DATA: wa_result_tab TYPE string.
      DATA: result_tab TYPE STANDARD TABLE OF string.
      DATA: lin TYPE i.
      DATA: long_nombre TYPE i.
      DATA: long_total TYPE i.
      DATA: desplazamiento TYPE i.
      DATA: filename_aux TYPE skwf_descr.
      SPLIT filename AT '' INTO TABLE result_tab.
      DESCRIBE TABLE result_tab LINES lin.
      READ TABLE result_tab INDEX lin INTO wa_result_tab.
      IF sy-subrc EQ 0.
        long_total = STRLEN( filename ).
        long_nombre = STRLEN( wa_result_tab ).
        desplazamiento = long_total - long_nombre.
        path = filename(desplazamiento).
        filename = wa_result_tab.
        filename_aux = wa_result_tab.
      ENDIF.
    aqui le pasamos el guid del documento sap crm que estemos tratando
      CALL METHOD cl_crm_documents=>create_with_file
        EXPORTING
        aqui le pasamos el nombre del fichero que queremos anexar
          file_name       = filename
        'c:' "aqui le pasamos la ruta del fichero que queremos anexar
          directory       = path
          business_object = ls_bor
        IMPORTING
          loio            = lv_loio
          phio            = lv_phio
          error           = lv_error.
    aqui llamamos a este método porque de lo contrario el sistema crea el anexo con el nombre que
    le da la gana y no con el que hemos indicado en el punto anterior. por eso renombramos el fichero
      CALL METHOD cl_crm_documents=>rename_object
        EXPORTING
          is_io   = lv_loio
          iv_name = filename_aux.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
      IMPORTING
        RETURN        =
    ENDFUNCTION.
    Call from WDA.
      CALL FUNCTION 'Z_CRM_ANEXAR_DOCS_INC'
        EXPORTING
          guid              = guid_jarcode
        guid              = stru_importing-guid
          filename          = stru_importing-filename
        PATH              =
          description       = stru_importing-description.
    ENDMETHOD.
    Thanks in advance.

    Hi,
    you can use below steps,
    1. Create attribute file_content of type xstring and bind it to data attribute of FileUpload UI .
    2.Put the button Upload next to your FileUpload UI element and write action upload.
    3. in action, read the attribute file_content and pass it to below code
    Convert XString to String
      CALL METHOD cl_abap_conv_in_ce=>create
        EXPORTING
          input       = file_content
          encoding    = 'UTF-8'
          replacement = '?'
          ignore_cerr = abap_true
        RECEIVING
          conv        = loc_conv.
    *Read the file contents
      TRY.
          CALL METHOD loc_conv->read
            IMPORTING
              data = file_content_string
        CATCH cx_sy_conversion_codepage.
    *-- Should ignore errors in code conversions
        CATCH cx_sy_codepage_converter_init.
    *-- Should ignore errors in code conversions
        CATCH cx_parameter_invalid_type.
        CATCH cx_parameter_invalid_range.
      ENDTRY.
    4. After that u may want to put the contents into internal table so use
      SPLIT file_content string AT crlf INTO TABLE itstring_tab.
    5. At last, fill the internal table
    loop AT it_string_tab INTO wa_string.
        CHECK sy-tabix GT 1 .    "skip the first line
        SPLIT wa_string AT ',' INTO .....
    endloop.
    here in my code i have splitted the contents at comma as i had .csv file . so based on file type u can split it and fill internal table.
    hope this will help you.
    Regards,
    Chandra
    (Award points if Helpful)

  • Problem: Word document with Thai font to PDF

    I have a MS Office 2007 Word document (.doc) that contains both English and Thai language. I need to convert this document to PDF with Acrobat 9 Pro. However, after going through the conversion process from the ribbon within MS Word, all of the Thai language in the Word document becomes garbled nonsense in the Acrobat PDF file.
    1. How can I successfully create a PDF file from a Word file that includes Thai language?
    2. If I have a PDF file that contains Thai language, how can I convert it to a MS Word file?
    Hope someone can help. I'm sure the answer must be quite easy, but I cannot find it anywhere.
    I forgot to mention that this is all running on Windows Vista / Pentium 4D 3.0 GHz / 2Gb RAM.

    3 days has passed and no answers, it's either unclear what i'm asking or it's a comlicated issue.

  • SharePoint Online - Generate or create PDF documents with content

    Hi,
    We are in the process of evaluating SharePoint Online for a project that requires to create PDF documents. These documents are kind of reports that can be generated in the system. In case of on-premise we would have created a custom farm solution probably
    using some PDF creation DLL to create the document.
    However, wanted to know what are the options in SPOnline? The word automation service might not help because in that case we will need to generate a word document first and then convert it to PDF. Also, creation of this word document would again be a question
    to answer.
    Any suggestion/thoughts?

    There is no create a PDF option in SharePoint. (not in on-prem and not in online)
    You can print to PDF in most of the Operating systems and/or browsers by default.
    And you can of course create a document and save that to PDF (or export to PDF or Print to PDF)
    The Word Automation service..... is for Word... as you mention you dont't want to use word.... so that is not an option.
    In general ... WHY?
    If it is for Locking down the posibilities for a end user who sees the document you can also implement IRM (based on AADRM or just in Word itself)
    If it is for publishing... you also need a "source document" and that can be Word. 
    So without the whole story it is difficult to advice....  In general if you want to create PDF document and edit it right from PDF and also don't want to use the Office suite, maybe a solution of Adobe like: https://www.adobe.com/creativecloud.html 
    Michiel Hamers www.SharePointman.nl Don't hesitate to contact me for a SharePoint/O365 question.

  • Looking for a wireless router / accespoint with radio time restriction

    I am looking for a wireless router / accespoint with a radio time restriction but didn't find any information about this option. Are there any routers with the option to turn off the wireless signal between a specific time?
    The router will be used at a small office .
    I hope you can tell me more.
    Cheers
    Michel

    Well there is No router which linksys/cisco manufacture that can stop the wireless signals to be broadcast for a specific time..
    However what you can do is you can get into the setup interface of the router and disable the SSID broadcast and that will stop the router to broadcast the wireless signals...and whenever you need to enable it you can just go back into the setup page of the router and enable the broadcast again.

  • Nokia 6131 Sync with Lotus Organizer

    Hi
    I have a problem when syncronizing with Lotus Organizer, 50% of the time it will work but sometimes I get an error with the following:-
    Organiser 5.0/6.0
    Unable to initialize Organizer
    Unknown error :0
    Any help appretiated
    WIN XP
    SP2
    NOKIA PC SUITE VER 6.80.22
    BLUETOOTH CONNECTION

    Yes you can -- but you need a 3rd party plug in to sync to Outlook first -- then you sync Outlook with your iPhone.
    I don't believe Microsoft maintains a direct sync relationship with Lotus Organizer anymore without the 3rd party plug in. Do a google search for "sync Lotus Organizer with Outlook" and you will find a batch of programs that will do that.
    Each time you sync your iPhone with Outlook, you will then need to resync your Outlook with Lotus Organizer to keep it up to date - and vice versa. It won't automatically sync everything up.

  • OWSM: problem with content routing

    Hi,
    I am working on OWSM and i have registerd a service on owsm and tested it through it. it works fine. But the problem is when i click on content routing it gives me this error "The following exception occurred when processing the JSP:
    Could not connect to Gateway using its URL.The Gateway is not running or there was a problem establishing connection with the Gateway. Please ensure the Gateway is running before trying this operation.
    Use your browsers "Back" button if you would like to try again."
    i cant use the content routing option in policy management link , otherwise the service is running fine.
    Thanks in advance.
    Regards,
    Abhi...
    Message was edited by:
    Abhishek saurabh

    Hi all,
    Any updates??
    If case of any clues, please let me know because its urgent.
    Regards,
    Abhi...

Maybe you are looking for

  • Color box in a 2D Array

    Hi, I am a beginner in Labview , i want to color a box in a 2D Array of color boxes.  So if the user clicks on a box inside the 2D array, the box will turn into a specific color. I think i need to get the column and  row of the element that has been

  • How do I change the name and author of the book I have downloaded?

    I have bought and downloaded a book which has turned up in my library with the title Dokument1 and the author as Pero - to say the least, not correct.  How can I change the name so I know what it actually is and who actually wrote it?  Gotta say - I'

  • Recovering Music After Wiping The Hard-Drive

    I just recently had to do a full system restore on my comp. All the songs I had bought from itunes was deleted in the process. I can access my purchase history though itunes and was wondering if there was anyway to get them back.

  • Change name of track

    how can I change a name of a track in itunes?

  • IPhone not reconized can't fix it!

    When I plug my iPhone into my dell NOTHING happens the phone doesn't even charge. I have reinstalled iTunes and unistalled it and everything. I looked on my device manager and the iPhone device has a yellow exclamation point next to it. I unistalled