Mesage was struck in SMQ1

Hi
     I'm sending data from ECC to XI   through RFC .. but the thing is working fine. in Development server .. after moved the objects from Development to Qualityserver  .. when ever i execute the report in ECC for triggering the Proxy.. the data was send to the OutBound Queue(SMQ1) and message was displayed in the ECC system SXMB_MONI level(Green , scheduled) .. if go to the SMQ1 there i can able to see a Queue was pending.. that status is Ready only.. just i manually Activated that queue. then messages was processed successfully..
so, for this. what can we do.. I'm thinking we need to do the Quese Registration. but Queus already registered...
any suggestion will be appriciated..
regards
Jain

solved

Similar Messages

  • IDOC was struck due to assignment to a profitability segment

    Hi all,
    Idoc was struck with 51 error for an intercompany billing as follows
    IDOC was struck due to" assignment to a profitability segment has no effect for account 500000".
    What may be the route cause for this .

    Hello,
    I suppose you have account-based CO-PA active.  Then goto OKB9.
    Regards
    Waza

  • I started to publish an iMovie project in iDVD but it failled .... the mesage was start up disk needsmore space. deleate files to make more space.  how can I do that, please? in help menue thre are no entris on start up... Thank you VERY much.  Michael

    I started to publish an iMovie project in iDVD but it failled .... yhe mesage was start up disk needs more space. delete files to make more space.  how can I do that, please? in help menue tehre are no entris on start up... Thank you VERY much.  Michael

    Startup disc is Macintosh HD. If your HD is getting near full capacity you'll need to offload some files to an external drive or drives.
    Freeing space on your Mac OS X startup disk:
    http://www.thexlab.com/faqs/freeingspace.html
    How to free up my disk space:
    http://www.macmaps.com/diskfull.html

  • Torx screw was struck in my macbook pro

    I was tried to re-check my macbook pro if it does okay, in previous, I was replaced the new HDD in MBP but it was defective then replaced back to stock HDD. I wasn't means to screw the torx so tightly in near to RAM, on bottom of MBP, there's 2 torx screw in, one was struck and other one is fine. It was rotate but cannot get out, what would I should to do with MBP? how can remove it?
    There's pic like that with red circle of 2 torx screw in nearly to RAM, left was struck and can rotate it but cannot come out, other right is fine.
    http://www.ifixit.com/Guide/115/images_large/07.jpg

    You should sharpen your tool. Hold the tool exactly perpendicular to a flat grindstone. A sheet of sandpaper will work in a pinch, but make sure it is flat. Grind the tool lightly until you think the corners of the torx grippers are sharp and square. It should work now. Probably better than new. I've been disappointed at the sharpness of new torx wrenches. You need to routinely sharpen them before you ruin fasteners.

  • Computer was struck by lightning. what should I change?

    computer was struck by lightning.  what should I change?

    Hi tsysteph?
             Fist of all I would recomend you to buy a surge protector to plug in your expensive appliances is such as TV's and computer. How much damage did your computer sustain? I would open up HP Support Assiant and run systems checks on every thing. Then go from there in repairing it. Surge protectors aborbs excess electricty and prevents it from intering what ever is plug into it. Most sure protectors have a warranty that covers appliances that are plug into it if it should fail. Mine have up to $50,000.00 coverage for damages caused by it failing.

  • I was strucked in BDC recording scenario help me?

    Hi expertsu2026u2026u2026
    I am working on the scenario BDC Recording for fk01 and I am getting an error?
    Error is : Different number of parameters in FORM and PERFORM(routine:BDC_FIELD,number of normal parameters:2,number of actual parameters:3).
    Following is as follows source code.
    report ZROHIT_BDC_FK01 no standard page heading line-size 255.
    include bdcrecx1.
    DATA:BEGIN OF ITAB OCCURS 0,
         LIFNR(16),
         BUKRS(4),
         KTOKK(4),
         ANRED(15),
         NAME1(35),
         SORTL(35),
         STRAS(3),
         ORT01(35),
         ORT02(35),
         LAND1(10),
         AKONT(10),
         END OF ITAB.
    start-of-selection.
    CALL FUNCTION 'UPLOAD'
    * EXPORTING
    *   FILENAME                      = 'D:\'
    *   ACT_FILETYPE                  =
      TABLES
        DATA_TAB                      = ITAB
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    perform open_group.
    LOOP AT ITAB.
    perform bdc_dynpro      using 'SAPMF02K' '0105'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-KTOKK'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RF02K-LIFNR'
                                  ITAB-LIFNR                  'ROHIT100'.
    perform bdc_field       using 'RF02K-BUKRS'
                                  ITAB-BUKRS                  '1000'.
    perform bdc_field       using 'RF02K-KTOKK'
                                  ITAB-KTOKK                  '0002'.
    perform bdc_dynpro      using 'SAPMF02K' '0110'.
    perform bdc_transaction using 'FK01'.
    END LOOP.
    perform close_group.
    thanks in advance
    Moderator message - Please respect the 2,500 character maximum when posting. Post only the relevant portions of code and please use code tags.
    Edited by: Rob Burbank on Oct 7, 2009 10:34 AM

    Hi,
    The performs should be like this:
    FORM bdc_dynpro USING program TYPE bdc_prog
                          dynpro TYPE bdc_dynr.
      CLEAR wa_bdcdata.
      wa_bdcdata-program = program.
      wa_bdcdata-dynpro = dynpro.
      wa_bdcdata-dynbegin = 'X'.
      APPEND wa_bdcdata TO gi_bdcdata.
    ENDFORM .                    " bdc_dynpro
    *&      FORM  BDC_FIELD
    FORM to get the field name and field value
    FORM bdc_field  USING fnam TYPE any
                          fval TYPE any.
      CLEAR wa_bdcdata.
      wa_bdcdata-fnam = fnam.
      wa_bdcdata-fval = fval.
      APPEND wa_bdcdata TO gi_bdcdata.
    ENDFORM .                    " bdc_field
    and make the changes as stated in your code:
    LOOP AT ITAB.
    perform bdc_dynpro      using 'SAPMF02K' '0105'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-KTOKK'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    >>perform bdc_field       using 'RF02K-LIFNR'
            >>                      ITAB-LIFNR                  " 'ROHIT100'.
    >>perform bdc_field       using 'RF02K-BUKRS'
        >>                          ITAB-BUKRS                "  '1000'.
    >>perform bdc_field       using 'RF02K-KTOKK'
        >>                          ITAB-KTOKK                  " '0002'.
    perform bdc_dynpro      using 'SAPMF02K' '0110'.
    perform bdc_transaction using 'FK01'.
    END LOOP.
    Regards,
    Rajesh Kumar

  • My macbook pro was defective from the beginning. what to do?

    I bought my macbook pro about 4 yrs ago in my college year, and right after I found out there was some weird noise being made while the laptop was running.
    And compared to my school mates' macbook, mine got easily heated up and had a loud noise while running.
    So I took it to my school tech department and they said since its warranty is effective, why don't I go to apples, and so I did.
    At first, at the genius bar, a technician said it will cost me 400 and i was struck with shock ..
    fortunately, the technician found out that the laptop was defectively manufactured from the factory from the beginning and I was free of the fixing charge.
    However, my macbook pro's got a new problem. The screen goes black while running. I can hear the computer running but the screen is total pitch black.
    I went to apple store again to the genius bar to ask for the fixing fee.- It was 300 bucks for fixing it and they said there was a problem with
    the computer's logic board whatever. I bought the laptop for 1200$ and they are asking me for 1/4 of the price the laptop.
    The genius bar asked me if I ever dropped the laptop or left it somewhere near water whatever. I HAVE NEVER DONE THAT and the laptop was
    sitting on my loveseat in my room and when I came back from work and turned it on to get on internet...it didn't turn on.
    What am I supposed to do?
    I am so upset bc I have a paper to turn in for the beginning fo the next month, but since I can't afford to fix the computer, I am totally at a loss.
    I bought the laptop at Bestbuy when there was the event going on, which if you buy a mac, it comes with an ipod 2nd gen.
    When I bought it, there was a lil scratch like thin on top of the cover of the laptop, but I just thought like
    it will get a scratch while using it anyway and i just let it go and I bought a cute plastic cover for that laptop.
    If I knew that that was something like a defective product, I wouldn't have bought it or exchanged it with a new one.
    Where do I complain about this? whom do I talk to? why does apple distribute defective products to customers and make us to pay so much money to fix it after the warranty is done?
    Apple should be responsible for this.
    For someone like me, who's a poor student who can't get anymoney from anywhere (I am being supported by my church), what am I supposed to do?
    I want a responsible answer from Apple.
    or if anyone knows how I should deal with this, please answer me.
    I am really at a loss and desperate due to my financial situation. Thank you.

    I had a very similar issue.  I am not sure which machine you have.  I purchased 2 MacBook Pro's mid 2010 2.66ghz.  One is dead the other failing.  I am with you, you shouldn't have to purchase an extended warranty on a premium product.  I have seen a lot of posts on this subject.  Seattle Rex took Apple to court last year over the same issue and won in small claims court.
    http://www.seattlerex.com/seattle-rex-vs-apple-the-verdict-is-in/
    I am sure a class action lawsuit is not far off.  It is fraudulent to sell a product that is known to be defective.  I purchased my laptops from Apple.com in 2011 after the testing program had already started.  From what I can deduce the logicboard and Lion do not get along.  CNET has several articles on this issue.  Here is the notice from Apple that is very hard to find.
    http://support.apple.com/kb/TS4088
    Here is an article from CNET
    http://reviews.cnet.com/8301-13727_7-57586703-263/graphics-related-crashes-resur face-for-mid-2010-macbook-pro-systems/
    Maverick is supposed to help but for me that is a day late and $4000 dollars short. 
    If you do bring your laptop in, print out the notice.  The guys and gals at the Genius Bar will not know about this issue.  They tried to sell me a new MLB too as well as trying to wipe my hard drive.  Good luck, I hope this helps.

  • Screen output without connection to user, Message struck at inbound queue

    Chaps,
    I executed inbound proxy form PI 7.0, the message was struck in the inbound queue of ECC 6.0,
    with status text "Screen output without connection to user" then when I apply execute LUW then it is converted to
    "ThiSend:bad tm type /connection closed (no data)".
    when i test the same message from 'SPROXY' t.code, inbound proxy class was working fine.
    I came to know that when we call an ABAP program in side a proxy then it will throw same error what I got by checking the below url
    Message struck at inbound que in server proxy
    But in my proxy. I am just putting the data into z table and on some condition I am calling some other BAPI call.
    Here my doubt is calling the SUBMIT for other ABAP program is same as calling the BAPI call?
    because in the above thread clearly saying that don't use the other ABAP program in proxies. is the same case for calling the BAPI call into the proxy?
    In proxy, the logic is I am just simply reading the data from IS(integration server, PI7.0 SP 18) to ECC 6.0(SP14) if the row is not there the data is reading into table. If row is already there then it is stuck up in SMQ2 (inbound queue) of the ECC
    am I missing any basic things? please guide.

    But in my proxy. I am just putting the data into z table and on some condition I am calling some other BAPI call.
    Here my doubt is calling the SUBMIT for other ABAP program is same as calling the BAPI call?
    I too believe ..
    because in the above thread clearly saying that don't use the other ABAP program in proxies. is the same case for calling the BAPI call into the proxy?
    It is saying not suggestable...!!!! BAPI calls work perfectly !1
    In proxy, the logic is I am just simply reading the data from IS(integration server, PI7.0 SP 18) to ECC 6.0(SP14) if the row is not there the data is reading into table. If row is already there then it is stuck up in SMQ2 (inbound queue) of the ECC
    am I missing any basic things? please guide.
    Seems so,
    Lets try below things..
    1. Plz check the user is having auth to run the executable program in ECC.
    2. It seems that you are not using the proxy structures in a correct way..and check the calling program also..!!
    Edited by: Santosh Rawat on Jul 30, 2009 1:12 PM

  • Message struck at inbound que in server proxy

    Sub :Message struck in SMQ2 with status text"ThiSend:bad tm type" .
    HI,
    I executed inbound proxy form PI 7.0, the message was struck in the inbound queue of ECC 6.0,
    with status text "ThiSend:bad tm type /connection closed (no data)".
    when i test the same message from 'SPROXY' t.code, inbound proxy class was working fine.
    I came to know the message scheduled due to function
    module sxms_async_exec
    and raising an exception as ThiSend:bad tm type/
    connection closed (no data)
    please provide the details like when this function
    module throw an exception as connection closed(no data).
    inside inbound proxy,
    could you please suggest us, what should be avoided inside the proxy
    method.
    warm regards
    mahesh.

    Hi Chaitanya,
                       previouly, i have the same problem.
                       At that time, we are using 'submit' command inside proxy method i.e i ABAP program.
                         because of that, the message was struck in the inbound que.
                       'submit' is not suggestable inside proxy method.
                       so, pls check your ABAP Program.
    warm regards
    mahesh.

  • My ipad is struck at apple logo during restore and isnt starting

    my IPAD was working fine & saw my IPAD after charging it, the screen was balck out later when i connected it to itunes...my ipad was recognized & displayed a msg...IPAD IN RECOVERY MODE & NEED TO BE RESTORED...during the restore process my IPAd was strucked at apple logo & isnt starting now

    FORCE IPAD INTO RECOVERY MODE
    1. Turn off iPad
    2. Turn on computer and launch iTunes (make sure you have the latest version of iTune)
    3. Plug USB cable into computer's USB port
    4. Hold Home button down and plug the other end of cable into docking port.
    DO NOT RELEASE BUTTON until you see picture of iTunes and plug
    5. Release Home button.
    ON COMPUTER
    6. iTunes has detected iPad in recovery mode. You must restore this iPad before it can be used with iTunes.
    7. Select "Restore iPad"...
    Note:
    1. Data will be lost if you do not have backup
    2. You must follow step 1 to step 4 VERY CLOSELY.
    3. Repeat the process if necessary.

  • Inbound Queuing in SAP XI

    Hello Friends,
                       please help me on the below issue. my error is when i am sending 1000 messages from jms to jms through  SAP XI all the
    inbound queues are residing in smq2 . can i release all the queues at  a time once. please help me.

    Hi!
    As our SDN contributors already provided few links I  want t provide some information which is useful to you..
    NOTE: Also please try to send one by one or atlease few messages other than sending 1000 at at time
    I hope it will be useful to you in final case...because even I faced the same problem in BW- XI Integration but in those times I did the same... and also in final case if they restart the server once...all the messagse are gone I mean went to BW from XI by next day when I came there were no of messages
    But before doing this please note these points:::
    Even though you did this please make sure ...
    1. Actually First check what is your Service Pack..as you told that it is XI check are you using SP22...in
        XI 3.0
    2. Next check whether is it correct way to send 1000 messaegs at a time because may be your system  
        may be using some one and also if they are sending at the same time means...both of your queues wil
        be strucked..
    3 First Go to SMQ1 (Outbound queue) and SMQ2 (Inbound Queue)and check how many messaegs are
       there See also make sure the status of those queues some may be SYS FAIL means system fail first
       delete those queues and then RESEND the remaining queues...
    4.Also please go to RWB-->Communication monitoring and check your Communication Channel Status
        whether it was green or RED...and also check the AUDIT LOG..
    5. Suppose if any errors are there or not even though once go to RWB--MEssage Monitoring and check on
        which basis and on which part it was strucked I mean whether the partiular message fails at Integration
        Engine level or else ADapter Engine level... and finally Check AUdit log...on due to which basis the
        messages are queues I mean due to huge size... of for what reason..
    5.  Once do this if Still if you are facing same problem go to Transaction Code: SXI_CACHE and do cache
        refresh so that it may be reflected by refreshing all the IR and ID objects.
        Also do ADapter cache refresh...refresh in same Transaction code...
        Or else if you are adminstrator go to TCode : SMICM and go to MEnu--> As JAva and --> Do j2EE soft   
        Restart instead of Soft Restart...or else ask your basis poeple to do the same...
    Note: WHile doing J2EE engine restart please make sure any Transactions or else any one or working on PI because it may take 20-25 mins to become server up again ...
    NOTE: Also please try to send one by one or atlease few messages other than sending 1000 at at time
    I hope it will be useful to you in final case...
    I hope it will be useful to you in final case...Suppose if it is useful to you please close this and award points to the repective contributors if it is useful to you..
    Regards:
    Amar Srinivas ELi

  • IDOCs in status 12 not reaching the Legacy System

    Hi Experts,
    I am facing problem with a specific set of IDOCs in R/3.
    the IDOCs are with status 12.
    Queues are fine. SMQ1, SMQ2 are clear.
    Also I don’t find any communication errors : (SM58 in XI)
    All adapters were also working fine
    <b>And in SXMB_MONI we found messages with “still waiting acknowledgement”</b>
    Can anybody give me an idea about what might went Wrong.
    I performed all the necessary checking but couldn't trace any errors.

    Hi Santosh
    There may be a problem in ur configurations. Please check the status of our idoc in the tcode : sm58 (in R/3).
    I think your IDOC was strucked here. Check the status.
    **Award the Points if it is useful**
    Cheers...
    Vasu

  • Not displaying Log Message

    Hi All,
    I facing problem in displaying the log message.
    Here is what I am doing.
    I have created a RDF Report, In that In Before Report Trigger I have called Packaged.Procedure.
    (Packaged.Procedure has all code that  is needed.
    I have used the
    fnd_file.put_line(fnd_file.log,'Message') to display message in log.
    But when I ran the report I am getting the expected output. But when in Log I am not seeing the Message.
    Please help me how to display message. Or is there any way to display message in Log.
    Note: I didn't register the package as Concurrent Program. I have Concurrent program of type Oracle Report.
    In package I didn't use parameter ERRBUFF and RETCODE, since it is necessary only if we register as Concurrent program.
    Thanks in advance.
    Regards,
    Uva.

    Hi!
    Lets try these once again even if u followed previously....
    1. First go to SXI_CACHE and do cache refresh once inorder to reflect the IR and ID Objects once again....
    2. Also do Adapter Cache refresh once again some times adapters may not reflect the updated changes and then now make some changes in the SUBject and save and activate it..
    3. THis Point is Optional Suppoe if you are using any FTP FILE ADAPTER
    Check the source and destination folders are same as give in your channel and FTP also please check the file name mentioned is exactly same and make sure there may not be any spaces
    4. If possible if u r admin do once J2EE Soft Restart instead of restarting entire server..or else instead of doing hard restart..
    5. After making changes and saving and activating try the scenario once aand also go to Run time work bench and communication channel Monitoring onceagain check the status...
    6. Most important thing is Go To RWB--> Message Monitoring--> Check the status of the message in both Integration Engine and Adapter ENgine so that you can get where it is failing and also where it was strucked....whether in Integration server side or else Adapter Engine side...
    7. Also please check one again SXMB_MONI, SMQ1 and SMQ2 and ST01 ( which is used to Trace the message by using this ST01),,,
    I hope it works....also check once mapping side once again...
    Regards:
    Amar Srinivas Eli

  • My Apple TV does not show up under devices, and more.

    Okay, firstly, I am relatively new to Apple ptoducts.  I was recently purchased an Apple TV and a 27 inch iMac by my lady.  And yes, I realize how amazng she is.  She bought me these gifts to ensure that the last two and the next 4 months go by smoothly.  I was struck by a car while it was doing 65+ mph, than struck again by the same car, than ran over and jumped off of.  Yeah.... So needless to say I have severe brain damage, lost memory, a leg that is now 52% titanium and worse, I can not use my right arm.... for now, it may recover with the next two years.  so, I tell you this for a little "guilt" but mostly to excuse the formatting of this email.  It was typed entirely on my iMac and entirely using one hand, and not my primary hand at that.
    I am not new to iTunes, I had a few purchases before this issue.  Between those purchases and my Apple TV "FUN" I have amassed quite a few: Seasons of TV and Movies. 
    1:   When I log in to my Apple TV, I can see all of the purchases that I made using both the Apple TV and those that I made previously using iTunes on my Windows based PC.  All is well.  They are organized by type and sorted perfectly.  That plus they stream quicky and completely.
    2:   When I turn on my iMac and start iTunes, I do not see my TV seasons or Movies under the "Library" section on the left side of my iTunes screen.  I see the options, they are simply empty.  I see no content listed within them.
    3:   I can however select the "Purchased" option under the "Store" section on the left hand side of the screen.  Once inside that options area, I can click on "Download Previous Purchases" in the lower right hand corner of the screen.  From there I can see all of my purchased TV and Movies, including those that I had previously purchased on my old windows PC and those purchased recently on my Apple TV set.  That and I can download them and make them available to my iMac version of iTunes.
    5:   I am unable to see my Apple TV listed under the "Devices" section.  I also do not see the "Devices" section at all, however I assume that is because it is currently emty.
    QUESTIONS:
    A:   Can you stream data such as TV seasons or Moies while using iTunes on an iMac.  Similar to the way that you stream them from your iTunes purchase histor while viewing them on an Apple TV?  Or do I need to download them inorder to view them?
    B:   Is Apple TV shown under connected devices while it is connected to the Wi-Fi netwok?  I can see my Iphone under devices when I connect it with a cable to my iMac.  So I know that my devices section is working.  I simply fear that my Appl TV is not showing up brcause of existing issues.
    NOTES:
    A:   All of my devices are updated with the latest available drivers.
    B:   My Apple TV, iMac and iPad all work on the same Wi-Fi network.  That and they are all connected to the same iTunes account.
    C.   My lady is using a different login for the iMac.  Her iTunes is setup but is not usng my iTunes account, it is using her account and has access to her DATA.  When I log in to the iMac, my iTunes is working and is different from the iTunes that is operating under her username.
    Ok Guys..and Gals please help me out.  The thing is, none of this is truly effecting me in a substantial manor.  I can see my purchase history, I can download parts of it to my iMac via iTunes, and my Apple TV is smoooooooth.  I mainly need clarification on the questions that I asked.  Can I stream using the iMac, should I see my Apple TV under devices, and why do I not see my DATA under the library section of iTunes?
    THANK YOU for you time.  Remember, I am relatively new to Apple as a product.  And I fricking LOVE it. 
    When I was in my accident, my arm, my leg, my skull, my brain, my clothing, my key chain and my wallet, were all destroyed.  But my iPhone survived.  I have records both police and medical to prove this.  The one way I had to have any initial memory of my friends and family was in that phone.  I still have that phone, I always will.  So Apple if you need an awesome commercial for your iPhone, Vince has got your back!!!

    Ok thank you so much, for your timely response.
    RESPONSES:
    1)   When I set up my iMac, I did not transfer any data directly from my windows PC.  I simply used the same iTunes login and account.  I have access to all of the files via the "Purchased" section of the iTunes store.  If I click "Download Previous Purchases"  text, I can download ALL of the purchases I have ever made.
    2)   I have the Apple TV 2, so good news, question answered.  I thought maybe it was the Apple TV 1, but it is the Black model, so bam.  Good response for you.  Well the whole damned reply is an awesome response, just pointing out that one piece of awesome.  I stated that it was an Apple TV 2, and yet you were still good enough to figure I could be mistaken, and provide me with knowleedge just incase.
    QUESTIONS:
    3)   So can my iMac not stream the data directly from itunes, without download?  Apple TV can, but perhaps that is something among many things that maker it unique, and awesome.
    SERIOUSLY.... THANK YOU... 
    I work in the computer support section for the Military.  The only problem is we use Windows , lol.  Well that and i've been gone for nearly 6 months on recover.  I go back next month though I hope.  But working in that field gives me the abilty to judge responses that run inside the same vein.  Your response was so awesome that I half thought I might have written it myself. 

  • User Profile Service - User Profile Incremental Synchronization Timer job stuck at 33% Status: Pausing

    User Profile Service - User Profile Incremental Synchronization Progress: 33% Status: Pausing
    It has been almost 15 days.
    Both User Profile Service and User Profile Synchronization Service are in Started state and FIM service also starting 
    I tried clearing sharePoint config cache.
    I also restarted the sharepoint timer service.
    I tried almost everything that is on Internet but nothing helped me.
    Is there any other way to solve the issue as I was struck on production server (ASAP) 
    In synchronization serivce manager status of MOSS_DeltaImport is Inprogress from past 2 days  
    Best Regards.

    Hi,
    Please follow the steps in the link below to clear the configuration cache.
    http://blogs.msdn.com/b/jamesway/archive/2011/05/23/sharepoint-2010-clearing-the-configuration-cache.aspx
    Here is a similar thread for your reference:
    https://social.technet.microsoft.com/Forums/en-US/beaa852c-6f40-428a-b97c-20722864e045/user-profile-service-user-profile-incremental-synchronization-timer-job-stuck-at-88-status?forum=sharepointadminprevious
    Or try to clear the file system cache on all servers in the server farm on which the Windows SharePoint Services Timer service is running. Microsoft has provided a step by step procedure on clearing file system cache from the SharePoint front-end servers
    in this kb article.
    You can also see the ULS logs and check error messages.
    http://sharepointlogviewer.codeplex.com/
    Best Regards
    Dennis Guo
    TechNet Community Support

Maybe you are looking for

  • CS3 Adobe Media Encoder: HDV to PSP 720x480 ?

    Using the factory setting 'Sony PSP Widescreen High Quality' I am able to encode this material at 368x208 29.97fps, but I am losing way too much quality at this setting. I cannot seem to encode to a playable Sony PSP (3000) video at 720x480. I have t

  • Airwaves Survey shows duplicate entries per WLAN SSID

    Hello Cisco WLAN-experts, I have a nice problem for You: Our WLAN-networks appear twice in every WiFi-Catcher ! We are running 1131LAPs in HREAP-Mode together with a 4402WLC and use two WLANs. One is the typical "Guest WLAN", another a more secure on

  • What DVD formats can read iMac recorded DVDs?

    Hello All, I have a new intel based 20 inch iMac. When I record a video to a DVD with my iMac I'm I safe in assuming that everyone I send it to will be able to view it on their players? Is there a list someone that lists the formats that will read iM

  • Custom ldap authenticator to retrieve user bean ldap profile

    Hi, Wondering if we could use a custom ldap authenticator to get the user profile from Ldap and put the data bean into session. This will allow to use the same connection to Ldap and to benefit from Bea security authentication configuration. Any inpu

  • How to create new canvas at photoshop and apply a layer by layer name?

    How to create new canvas at Photoshop and apply a layer by layer name ? So simply what i want is Create a new canvas certain size such as 150x40 pixels Apply a layer to that canvas. Script will select the layer by layer name How can i do that these 2