Execute ME32K and ME35K: missing update

Dear All,
I have a report with execute this call transaction:
1) execute transaction 'ME32K' -> update price condition;
1a) if lock is present on Purch. order, wait 2 second and repeat 1a (*);
2) execute transaction 'ME35K' - release code '01';
2a) if lock is present on document, wait 2 second and repeat 2a;
3) execute transaciont 'ME35K' - release code '02'.
3a) if lock is present on document, wait 2 second and repeat 3a;
When report is terminated, not all documents are released.
I thinks that, when lock object is released, the update on table EKKO
is present into a system queue (see SM13).
How can I check if my document is present into a queue?
how can I resolve this problem?
Moreover, I use CALL TRANSACTION ... UPDATE 'S', but the problem is still
present.
Thanks,
Andrea.
For execute this check, I use 'ENQUEUE_READ':
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = iv_ebeln
IMPORTING
output = iv_ebeln.
CONCATENATE sy-mandt iv_ebeln INTO lv_garg.
DO 1000000 TIMES.
CALL FUNCTION 'ENQUEUE_READ'
EXPORTING
gclient = sy-mandt
gname = 'EKKO'
garg = lv_garg
TABLES
enq = lt_seqg3
EXCEPTIONS
communication_failure = 1
system_failure = 2
OTHERS = 3.
IF NOT lt_seqg3[] IS INITIAL.
WAIT UP TO 2 SECONDS.
ELSE.
EXIT.
ENDIF.
ENDDO.

John, computers either work all the time or have a bug. I suspect it is the latter.
To find it [faster] you need to log what the resulting expression was used in the package.
I am baffled how rebuilding a package would fix anything like setting a date.
It might be even dependant on when you run the package.
Why
DATEADD("minute",-20,GETDATE())
DATEADD( "day", -8 , GETDATE() )
It must be enough to set the week (that appears to be a date) as above.
Arthur
MyBlog
Twitter

Similar Messages

  • I just bought 15' Mac book pro. as i work a lot on Garageband. I even downloaded all the drummers and loops to update the new Garageband 10.0.1 now my problem is that all my past work which i did on older version on GB, has missing sounds in it.

    I just bought 15' Mac book pro. as i work a lot on Garageband. I even downloaded all the drummers and loops to update the new Garageband 10.0.1
    now my problem is that all my past work which i did on older version on GB, has missing sounds in it. so here are my questions
    1. DO i have to install JAMPACKS on my new Macbook pro?
    2. Are JAMPACKS still compatable with the new GB?
    3. There is an UPDATE on the new GB on Appstore and once i click it, it goes to billing no detail is provided what this update is for so help!
    thanks

    3. There is an UPDATE on the new GB on Appstore and once i click it, it goes to billing no detail is provided what this update is for so help!
    See: This document explains what the in-App purchase is about.
    Expanding GarageBand for Mac (v10.0) content with an in-app purchase
    Do you still have your old Mac?
    How did you migrate from the old Mac to the new Mac? Did you transfer your old software and documents using Setup Assistant? Then your old GarageBand '11 version should have been migrated, and all your instruments.
    if you did  not migrate GarageBand '11, copy your old Instruments Library and Loop Library over from the old mac. Copy the following folders to a thumbsdrive and merge the missing dontents into the corresponding folders on your new mac:  (from the system library - the top level library folder on your Macintosh HD):
    /Library/Application Support/GarageBand/
    /Library/Audio/Apple Loops/
    And if you would like to continue to use GarageBand '11 for access to missing features, copy also /Applications/GarageBand over, but to a subfolder of Applications. I recommend, to install the old GarageBand as well. It can be used in parallel to GB 10.0, and will come in handy, if your old projects are having problems.
    1. DO i have to install JAMPACKS on my new Macbook pro?
    2. Are JAMPACKS still compatable with the new GB?
    The JamPacks are nice to have, a terrific collection of instruments and loops, but if you did not have them previously, that will not help with your missing instruments. You can instll them by buying Mainstage 3. They work well with GarageBand 10.0
    -- Léonie

  • I updated Itunes today to the latest version. Windows 7 64bit. None of my drivers work and get an error when itunes starts, about registry setting for reading and writing dvds and cds missing. Anyone else have the same issue. I downloaded itunes again, re

    I updated Itunes today to the latest version. Windows 7 64bit. None of my drivers work and get an error when itunes starts, about registry setting for reading and writing dvds and cds missing. Anyone else have the same issue. I downloaded itunes again, reinstalled still have same issue.

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • After software update (Sept. '09) apps don't work and some missing

    Plugged my phone in and itunes said there was an update I needed to install. Did that then it said there was a problem with the phone and it needed to be formatted before itunes could read it, did that too. Then while it was syncing up again after formatting it kept telling me there was a problem and items could not be found. All downloaded apps, some are missing completely from the phone, are no longer working. HELP!

    expresso3 wrote:
    yes i am fully aware of that!!!
    This "i do not see an update when i connect to itunes!!!!" suggested otherwise.
    the post says "after software update (sept. '09) apps don't work and some missing"
    there has been no update in sept 09!!!!
    Perhaps the OP doesn't connect the iPhone to the computer very often.
    Phil

  • HT1766 How do I restore music library I created prior to update and also missing all apps.

    How do I restore music library I created prior to update and also missing apps. How do I reverse an update?

    You sync your content back by connecting and selecting your iPhone in computer iTunes.
    You cannot reverse an update. Downgrading was never supported.

  • Execute SQL Task does not Update from a Date Variable Reliably

    I'm using a DateTime variable in SSIS 2008 that is used to set the SQLStatement property of an Execute SQL Task.
    "DELETE FROM Labor WHERE Week = '" + (DT_WSTR, 100) @[User::Week] + "'"
    Week is the next Sunday:
    DATEADD( "day", @[User::DaysTillSunday] , @[User::TheDayThatIsTwentyMinutesPrior] )
    DaysTillSunday:
    DATEPART( "dw", @[User::TheDayThatIsTwentyMinutesPrior] ) == 1 ? 0 : 8 - DATEPART( "dw", @[User::TheDayThatIsTwentyMinutesPrior] )
    TheDayThatIsTwentyMinutesPrior:
    (DT_DATE)(DT_DBDATE)DATEADD("minute",-20,GETDATE())
    The SSIS Package deletes the current week's data, reloads it with fresh data, then calculates the difference between the current week and last week.
    The problem is that randomly, instead of deleting the current week, it will delete the previous week.  This happens maybe 5-10% of the time.  At least it does until I rebuild the package and import it into SQL Server again.
    I'm guessing that the Execute SQL Task is not updating the value of the Week variable before it executes.  I started with the source type being a variable.  Then I decided to try Direct input and pass in the Week as a parameter (OLE DB Connection
    Type).  That didn't work either.
    Most recently I tried writing the Week variable to a table first, then having a sequence container with all the tasks second.  Slightly better but I still saw the date was wrong 2 times in about 90 executions.  I was hoping that writing the Week
    variable out to the database would force an update of any associated connections to it, but that didn't seem to work.
    Any ideas?  Is this a known issue, am I missing a setting?
    thanks,
    John

    John, computers either work all the time or have a bug. I suspect it is the latter.
    To find it [faster] you need to log what the resulting expression was used in the package.
    I am baffled how rebuilding a package would fix anything like setting a date.
    It might be even dependant on when you run the package.
    Why
    DATEADD("minute",-20,GETDATE())
    DATEADD( "day", -8 , GETDATE() )
    It must be enough to set the week (that appears to be a date) as above.
    Arthur
    MyBlog
    Twitter

  • Update (0 new / 0 changed) Warning received Message Missing Update Finished

    The FULL load is running for long time and after some time it fails with processing Overdue. ( It is loading directly into datatargets no PSA as this is Daily FULL load to cube, deleting the previous request) The job overview is successfully finished in source system.
    While load running in details tab under processing..
    1)Data Package 6 ( 7407 Records ) : Missing messages -->
    2)Update ( 0 new / 0 changed ) : Warning received
    3)Message Missing: Update Finished for Cube
    4)Processing end : Missing messages .
    When clicked on helpnode on each step:-
    1)Data Package
    A data packet is either sent with transfer method IDoc or PSA to BI. You have the option here of viewing the data received and of editing it where necessary, of posting the data packet in simulation, and of canceling in simulation, and, if it has not yet been posted successfully, of starting the update manually.
    2)Update
    See also Data packet processing steps
    By this the persistent saving of data is understood in its final target object
    3)Processing Message
    see also Data Packet Processing Steps
    Single message from the processing of a data packet. Some messages contain references to application logs or other requests. The monitor then allows corresponding jumps.
    4)Processing End
    see also Data packet processing steps
    If the processing of a data packet has been finished then any error messages for each process in the step up until this point are delivered to the monitor and to the called program (in the case of transferring by IDoc thus to the IDoc management). If no errors arose then a success message is logged per process.
    Messages from source system
    see also Processing Steps Request
    These messages are sent by IDoc from the source system. Both the extractor itself as well as the service API can send messages. When errors occur, several messages are usually sent together.
    From the source system, there are several types of messages that can be differentiated by the so-called Info-IDoc-Status. The IDoc with status 2 plays a particular role here; it describes the number of records that have been extracted in a source system and sent to BI. The number of the records received in BI is checked against this information.

    Hi
    Try to transport the request again and check...
    Perform the consistency test with 'RSRV'...
    Check notes in this link if they could help u....UNCAUGHT_EXCEPTION
    Regards
    Gaurav

  • Office 2013 small business version is missing UPDATE NOW

    Hi
    I'm  currently running office 2013 version 15.0.4433.1508 and trying to update, however it doesn't seem to auto update even though option is selected to auto update.
    The option to update manually is missing  i.e. "File-> Office Account-> Update Options->
    Update Now"
    please advise why my office is not updating or doesn't allow the option to update now?
    thanks

    How did you configure the Update option when deploy your Office 2013?
    Please publish your configuration.XML file. If this is a corporation network env, you might also want to check with your admin and see if they have re-configured your Office installation.
    Aravindhan Battepati

  • Audio cut out and midi miss sync

    Lately I have been getting audio cut out, and the missing, 'error while trying to sync audio and midi'.
    I thought it was that I had too many instances of virtual instruments. So I mixed the song down. Imported that into a NEW song, with only one audio track, and then proceeded to try to do an organ overdub...Well Logic still drops out and gives me the message, even though there is NO midi information in this file...
    Then I noticed that even AIF or mp3 files, didn't play properly from the desktop preview mode. They stop too. Activity monitor doesn't seem to be showing anything overworking..
    Disk Warrior fixed some volume errors,
    Anyone have any ideas to try?

    I'm using a motu828. I disconnected the firewire connection, and ran audio from the headphone jack to the motu, and VOILA, no problems... Last year, I went thru two motu units, not really sure if they are the issue.
    I think it might be LOGIC's firewire circuitry. Apple techs couldn't find the issue, I had the G5 motherboard replaced. Another factor was I had 3 Lacie firewire drives (2 firewire 800, 1 400) I have had 4 Lacie drives die on me in the last 3 years. They are the only firewire drives I have, so I don't know if the fault lies with them, or the again Apples firewire circuitry, stressing the drives out???
    I also put a firewire 800 card in my system.
    I have now switched to an external ESATA raid setup. No more firewire drives. So far so good. Since I had the whole motherboard replaced, I don't know what that means in terms of MOTU connected via firewire..
    For now, I'm running audio out of headphone jack, using all virtual instruments, so I know it will sound better when I get firewire audio up and running, but I got tired of it cutting out every 3 - 30 minutes. I'm thinking about the apogee duet unit. But again if it's connected via firewire, I don't know where that leaves me..
    My G5 is three and half years old, perhaps it's tired and wants to be retired....
    The dark part of me wonders, if Apple computers don't start crapping out after three years of heavy use, or is it that technology, software, updates, push the hardware beyond it's capacity after a few years.

  • IPhoto events and pictures missing from iPhoto after restoring new hard drive and upgrade to iLife11

    My iPhoto events and pictures are ALL missing from my iPhoto Library after I tried restoring my programs on a new hard drive AND upgrading to iLife11!  Over the last few months, I upgraded my 2008 Macbook Pro's hard drive from a 250 GB to a 500 GB hard drive and since then have been manually installing and restoring programs and software.  I decided to do things manually because I had problems with doing Time Machine backups/restores in the past, so before I upgraded the drive, I manually saved everything to a Western Digital MyStudio 1 TB hard drive that I had just for the purposes of a second back up.  Anyway, I tried importing the pictures onto the new library, but couldn't find the hard copies at first, so that didn't work.  I then tried deleting the iPhoto Library that came with new operating system, then copying my old backup onto the new hard drive...that didn't work either.  However, when I right clicked on the iPhoto Library icon on my external hard drive (the original) and clicked on "show package contents," the folder not only contained the originals, but they were still organized by year and event just as I had them originally! 
    So, then I thought "why don't I try just importing the pictures directly into the new iPhoto Library!"
    I tested it out, and sure enough, it worked!  I then tried importing an entire folder (which, was actually the name of the event), and again it worked!  So, I literally clicked and dragged my entire 2007-2009 library of pictures (which was about 35 GB) back into my iPhoto Library!  AND, this only took about 30 minutes to download, enough time for me to write this post and the following instructions to Recap: 
              1. Open your new iPhoto Library
              2. Go to wherever your ORIGINAL iPhoto Library is saved/backed up, then Right-click (or Control click) on the iPhoto icon 
              3. Click on "Show Package Contents"
              4. Go to the folder called "Originals" or "Master"
              5. Click and drag everything INSIDE the folder (not the folder itself) to your new iPhoto Library
              6. DO NOT try Importing from inside iPhoto!  For some reaseon, iPhoto can't see these images, but I promise, they're there! 
    I assume this could work on other iLife programs, but luckily I have MobileMe and my iCalendar updated itself, though I did have to do some tweeking...
    Hope this helps other people out, GOOD LUCK! 

    I'm re-posting the answer to this problem so I can show it has been answered: 
    Open your new iPhoto Library 
    Go to wherever your ORIGINAL iPhoto Library is saved/backed up, then Right-click (or Control click) on the iPhoto icon
    Click on "Show Package Contents"
    Go to the folder called "Originals" or "Master"
    Click and drag everything INSIDE the folder (not the folder itself) to your new iPhoto Library
    DO NOT try Importing from inside iPhoto!  For some reason, iPhoto can't see these images, but I promise, they're there!
              GOOD LUCK!!!

  • MDT 2012 upd 1 and Windows / Component updates

    I am trying to create a deployment for Win 7 x64 in MDT 2012, and it is going quite well.  My problem is with the Windows Update passes -- for some reason it misses many Office and Component updates until I go to deploy.  Then it takes another
    hour to grab and install those.  I don't understand why it does not grab them during the TS process.
    I am doing a staged capture in a VM environment, starting with a zero-touch capture that includes Office 2010 and all the updates.  This is my thin image and it takes about 5.5 hours through capture.  Then I take this thin image, add standard apps
    that cannot be silently installed, customize desktop options that cannot be easily automated (another huge pain, but another topic), and, I was hoping, install all the updates for Office 2010 and other non-OS components.
    In the first TS, I run the updates pre-installation, use the TS step to install Office, and run them again post-installation.  It does pick up a few, but then the logs say the system is fully updated and goes on to the next step.
    In the second TS, I use the post-installation update step.  One of the apps I use installs SQL components, and the TS picks up on this and installs several updates it finds.  Then it decides the machine is up to date and moves on, skipping about
    40 updates as of this writing.
    As a test, I inserted a reboot step between app installation and the post-install Update step, but it still ignored the Office updates.  Research on the issue turned up the idea that at some point ZTIWindowsUpdate turns on the extra updates, and also
    several suggestions that this is how it is supposed to work (and why the standard TS is designed this way).
    I rolled my VM back to the suspended point and I'm running WU manually at the console.  I had to enable "Microsoft Update" manually, and now it is happily pulling down the updates.  I just hope there's enough smarts left in the VM to
    run to  the task to completion.
    I'm hoping that some whiz with the process can enlighten us on how to force ZTIWindowsUpdate to search for critical updates for all Microsoft components, not just the OS ones.
    UPDATE:
    Digging into the code and logs, it seems that a certain condition is not occurring to trigger the Microsoft Update service; bFoundMU must be true for this to happen.  A ServiceID hard coded is not being matched--the reason escapes me.  Near as
    I can tell, after a magic reboot it finally finds a match for this ServiceID.  Hopefully this snippet does not get munged...
        On Error Resume Next
                Item = oFSO.GetFileVersion ( ees("%SystemRoot%\System32\WUAUENG.DLL" ) )
                oLogging.CreateEntry "Ready to Opt-In to Microsoft Update: WUA Version: " & Item , LogTypeInfo
                Set ServiceManager = nothing
                Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")
            On Error Goto 0
            If ServiceManager is nothing then
                oLogging.CreateEntry "Failed to Create Object: Microsoft.Update.ServiceManager" , LogTypeWarning
            Else
                bFoundMU = False
                For each Item in ServiceManager.Services
                    WScript.Echo "Registered Update Service: " & Item.ServiceID & "   " & Item.Name
                    If Item.ServiceID = "7971f918-a847-4430-9279-4a52d1efe18d" then
                        bFoundMU = True
                    End if
                Next
                oLogging.CreateEntry "Microsoft Update Service:  Enabled = " & bFoundMU, LogTypeInfo
                If not bFoundMU then
                    On Error Resume Next
                        Err.clear
                        ServiceManager.ClientApplicationID = "My App"
                        If Err.Number <> 0 then
                            oLogging.CreateEntry "There was an error getting Windows Update to opt into Microsoft Update. Please verify you are running the latest version
    of Windows Update Agent." , LogTypeWarning
                        End if
    The logs look virtually identical between the two runs.  This is getting way deeper than I understand the update process or about service IDs.
    UPDATE 2:
    Digging further, it seems that the the condition of bFoundMU has no bearing on whether or not MU is used, but possibly the existence of muauth.cab.  From the deploy log where it actually started, bFoundMU is still false, but at that point the Office
    updates started to come in:
    <![LOG[Property MSIT_WU_Count is now = 1]LOG]!><time="11:05:32.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Configuring Windows Update settings (manual update, use server)]LOG]!><time="11:05:32.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Archive NoAUtoUpdate State: Was [<empty>].]LOG]!><time="11:05:32.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Property NoAutoUpdate_Previous is now = <empty>]LOG]!><time="11:05:32.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Windows Update Agent verion 6 found, OK to continue]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Ready to Opt-In to Microsoft Update: WUA Version: 7.5.7601.17514]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Microsoft Update Service:  Enabled = False]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[FindFile: The file muauth.cab could not be found in any standard locations.]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1"
    thread="" file="ZTIWindowsUpdate">
    <![LOG[ about to begin add service []]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[ Status: 3]LOG]!><time="11:05:35.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[Command Line Procesed Query=False Registered=False  UpdateCommand=[IsInstalled = 0 and IsHidden = 0]]LOG]!><time="11:05:36.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1"
    thread="" file="ZTIWindowsUpdate">
    <![LOG[Start Search...]LOG]!><time="11:05:36.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    __bunch of skipped updates__
    <![LOG[  SKIP  - 258b6ca1-a8ec-4dfa-b619-fb8cecac6e2e - Turkish Language Pack - Windows 7 Service Pack 1 for x64-based Systems (KB2483139) - 56 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 48f7e3b7-2c8f-4900-ae32-f3d8f29c988d - Microsoft SQL Server 2005 Express Edition Service Pack 4 (KB2463332) - 55 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - d68e0cb2-9501-405e-af9c-156f352d6735 - Security Update for Microsoft Visual C++ 2010 Redistributable Package (KB2467173) - 8 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 719584bc-2208-4bc9-a650-d3d6347eb32e - Security Update for Microsoft Visual C++ 2010 Service Pack 1 Redistributable Package (KB2565063) - 9 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - eb7a169f-6bca-4e00-a52a-623c063c162d - Update for Office File Validation 2010 (KB2553065), 32-bit Edition - 2 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - f51a0e5b-24a9-4be1-8b36-0f22f99949e7 - Security Update for Microsoft SharePoint Workspace 2010 (KB2566445), 32-Bit Edition - 17 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 35eb79df-cb34-491c-ab0a-34b63f32b45c - Update for Microsoft Office 2010 (KB2553092), 32-Bit Edition - 9 KB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - a6309b2e-7ee4-4b02-8ce9-cf39796a2411 - Update for Microsoft OneNote 2010 (KB2553290) 32-Bit Edition - 7 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - f5202a56-ff34-401d-a040-f97c7f70891c - Update for Microsoft Office 2010 (KB2553310) 32-Bit Edition - 8 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 33a4aa0a-cb01-4326-85f4-4a7d33d8782b - Update for Microsoft Outlook Social Connector 2010 (KB2553406) 32-Bit Edition - 1 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate"
    context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - aae5e2c7-3498-4f43-af66-aec06a59713f - Microsoft Silverlight (KB2636927) - 12 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1"
    thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - c8077d6d-00c2-421b-89f6-30828574519a - Update for Microsoft Office 2010 (KB2767886) 32-Bit Edition - 271 KB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 9c5e43a3-3ae9-434d-b105-a9d7902d5f9f - Service Pack 2 for Microsoft Office 2010 (KB2687455) 32-Bit Edition - 395 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - b8fcacb4-add0-4cc9-8551-675b59965798 - Update for Microsoft Office 2010 (KB2825640) 32-Bit Edition - 18 KB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 5923c276-0628-4ba4-be3d-e56aa029a14b - Security Update for Microsoft Office 2010 (KB2687423) 32-Bit Edition - 2 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[INSTALL - 79b27019-3090-4309-bfdc-c8be9b21ab96 - Update for Microsoft Access 2010 (KB2553446) 32-Bit Edition - 7 MB]LOG]!><time="11:14:02.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context=""
    type="1" thread="" file="ZTIWindowsUpdate">
    After the subsequent reboot, bFoundMU was set to true.

    Another detail I neglected to mention is that I am using two separate deployment shares, one for building the deploy image and the other for actual deployments.  I think I found another clue in the log, muauth.cab:
    <![LOG[FindFile: The file muauth.cab could not be found in any standard locations.]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    <![LOG[ about to begin add service []]LOG]!><time="11:05:34.000+000" date="04-24-2014" component="ZTIWindowsUpdate" context="" type="1" thread="" file="ZTIWindowsUpdate">
    The next stanza in ZTIWindowsUpdate.wsf is this:
    If oEnvironment.Item("WsusServer") = "" then
                              iResult = oUtility.FindFile("muauth.cab", strCabPath)
                            If iResult <> Success then
                                '// "" will force a internet search for cab file
                                strCabPath = ""
                            End if
                            oLogging.CreateEntry " about to begin add service ["+ strCabPath +"]", LogTypeInfo
                            Set NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",6,strCabPath)
                            oLogging.CreateEntry " Status: " & NewUpdateService.RegistrationState, LogTypeInfo
                        End if
    Indeed, the muauth.cab file was present in my first one, but not the deployment one.  As the log says, since there is no muauth.cab file, the code will then go download it. 
    I don't know how, when, or why this happened (why is it in my first DS and not my second?), but a simple test this evening will confirm my suspicion that if the file is not present it will update as expected.

  • I am running a MAC Yosimite 10.10.1 (latest) and have just updated Lightroom to 5.7 to allow me to manipulate files from my Canon 7D mark 2. When I go from Library to Develop there is no basic adjustments available? Help Please?Ray Wood

    I am running a MAC Yosimite 10.10.1 (latest) and have just updated Lightroom to 5.7 to allow me to manipulate files from my Canon 7D mark 2. When I go from Library to Develop there is no basic adjustments available? I have a histogram but no access to the basic controls as per normal.
    How can I get to these?
    Help Please?
    Ray Wood

    See this:
    Missing Panels/Modules - Lightroom Forums

  • SUS - not only missing updates, but also hiding some...

    Hi *,
    i have the same problem with OSX SUS on 10.6.2 as described in several threads within this forum... with some add-on: not only that SUS is missing some of the updates available on Apple's public SUS service, it seems that at least one of the missing updates shows up in an intermitting way.
    In Server-Admin / Software Update Service / Updates the package "Final Cut Server Update" V1.5.1 of 11/24/09 does not appear on the list of available updates, unless i press the tiny rescan button which is located just below the list of update package. When i press it, the "Final Cut Server Update" appears immediately on the list. BUT it doesn't show up persistently -> when i switch in Server Admin over to another Service, e.g. SMB, and toggle the scope back to SUS, then all the packages which had been shown before toggling are displayed again, except that "Final Cut Server Update" is missing again.
    Really weird behaviour... hope that Apple fixes that soon, SUS is one of the major reason's why i'm running a MacMini Server @ home - i'm sitting with four Macs on a tiny network connect.
    Regards, KS

    I'm with you on this. Have really tried to get SUS running as I can really see the benefit, including resetting it completely several times.
    Thought I had it working, but now realised that even though the latest version of Safari 4.0.4 is downloaded and enabled, clients are reporting they are up to date (They have Safari 4.0.3).
    The OS 10.6.2 update downloaded correctly - so why not this?
    There are some serious flaws with SUS. Even the way you have to specify the server path is wrong if you ask me. Why can't there be a browse button? Why do you have to remember / look up what the correct filename is for the sucatalog depending on the OS version. Seems rather clunky to me.
    Andrew

  • I have files in my iTunes media folder that somehow are not in my library. How do I get iTunes to scan my media folder and add missing files to my library without making a copy of each file in the same location?

    I have files in my iTunes media folder that somehow are not in my library. How do I get iTunes to scan my media folder and add missing files to my library without making a copy of each file in the same location? If I use add file / folder to library, it scans the folder and then makes a copy of any file that is not in my library in the exact same location; I recal in older versions of iTunes being able to just drag my media folder into my library and it would update missing links.

    Only the songs that are connected to iTunes will be copied when you consolidate to a new folder.
    Splitting the media folder away from the usual location makes it harder to move iTunes in the future.
    Are you go move everything back once you've tidied up or are you going to leave it that way? Either way I'd recommend you create an iTunes folder at the new location, an iTunes Media folder inside that, and consolidate to this new iTunes Media folder. You should also use the option File > LIbrary > Organize Library > Rearrange files in the folder "<Media Folder"> if you have not already done so.
    tt2

  • Deploy UDI Windows 10 with SCCM 2012 R2 and MDT 2013 Update 1

    Hi,
    Trying use "User-Driven Installation"  with
    SCCM 2012
    R2 CU4 and MDT
    2013 Update 1 for deploy Windows
    10.
    Created MDT Task Sequences with
    template "Client Task sequence"
    and Deployment Method "User-Driven Installation".
    When I try to deploy I have error like:
    Failed to run the last action: Error in the task sequence. Execution of task sequence failed.
    The operation cannot be completed because other resources are dependent on this resource. (Error: 00001389; Source: Windows)
    ZTI deployment failed, Return Code = 5001 InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Unable to create WebService class InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Command line returned 5001 InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Process completed with exit code 5001 TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Part smsts.log
    !--------------------------------------------------------------------------------------------! TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Expand a string: WinPEandFullOS TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Executing command line: smsswd.exe /run: cscript "%deployroot%\scripts\ztierrormsg.wsf" TSManager 22.04.2015 11:36:57 1160 (0x0488)
    [ smsswd.exe ] InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    PackageID = '' InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    BaseVar = '', ContinueOnError='' InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    ProgramName = 'cscript "C:\_SMSTaskSequence\WDPackage\scripts\ztierrormsg.wsf"' InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    SwdAction = '0001' InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Set command line: Run command line InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Working dir 'not set' InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Executing command line: Run command line InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Process completed with exit code 5001 InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Microsoft (R) Windows Script Host Version 5.12 InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Copyright (C) Microsoft Corporation. All rights reserved. InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Microsoft Deployment Toolkit version: 6.3.8216.1000 InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    The task sequencer log is located at X:\WINDOWS\TEMP\SMSTSLog\SMSTS.LOG. For task sequence failures, please consult this log. InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    ZTI deployment failed, Return Code = 5001 InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Unable to create WebService class InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Command line returned 5001 InstallSoftware 22.04.2015 11:36:57 1740 (0x06CC)
    Process completed with exit code 5001 TSManager 22.04.2015 11:36:57 1160 (0x0488)
    !--------------------------------------------------------------------------------------------! TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Failed to run the action: Error in the task sequence.
    The operation cannot be completed because other resources are dependent on this resource. (Error: 00001389; Source: Windows) TSManager 22.04.2015 11:36:57 1160 (0x0488)
    MP server http://sccm.domain.com. Ports 80,443. CRL=false. TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Setting authenticator TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Set authenticator in transport TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Sending StatusMessage TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Setting message signatures. TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Setting the authenticator. TSManager 22.04.2015 11:36:57 1160 (0x0488)
    CLibSMSMessageWinHttpTransport::Send: URL: sccm.domain.com:80 CCM_POST /ccm_system/request TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Request was successful. TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Set a global environment variable _SMSTSLastActionRetCode=5001 TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Set a global environment variable _SMSTSLastActionSucceeded=false TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Clear local default environment TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Let the parent group (Gather Logs and StateStore on Failure) decides whether to continue execution TSManager 22.04.2015 11:36:57 1160 (0x0488)
    The execution of the group (Gather Logs and StateStore on Failure) has failed and the execution has been aborted. An action failed.
    Operation aborted (Error: 80004004; Source: Windows) TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Failed to run the last action: Error in the task sequence. Execution of task sequence failed.
    The operation cannot be completed because other resources are dependent on this resource. (Error: 00001389; Source: Windows) TSManager 22.04.2015 11:36:57 1160 (0x0488)
    MP server http://sccm.domain.com. Ports 80,443. CRL=false. TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Setting authenticator TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Set authenticator in transport TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Sending StatusMessage TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Setting message signatures. TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Setting the authenticator. TSManager 22.04.2015 11:36:57 1160 (0x0488)
    CLibSMSMessageWinHttpTransport::Send: URL: sccm.domain.com:80 CCM_POST /ccm_system/request TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Request was successful. TSManager 22.04.2015 11:36:57 1160 (0x0488)
    Executing command line: X:\WINDOWS\system32\cmd.exe /k TSBootShell 22.04.2015 11:37:31 696 (0x02B8)
    The command completed successfully. TSBootShell 22.04.2015 11:37:31 696 (0x02B8)
    Successfully launched command shell. TSBootShell 22.04.2015 11:37:31 696 (0x02B8)

    MDT Updates for Windows 10 Technical Preview Build 10041
    Если Вам помог чей-либо ответ, пожалуйста, не забывайте жать на кнопку "Предложить как ответ" или "Пометить как ответ".
    http://zalozny.com.ua

Maybe you are looking for