Filter processing precedence

Hi All,
I just wondering how Sun Directory Server (or LDAP Server in general) process the filtering precedence and all.
If I have following filter format :
(&(customattr=*)(uid=johndoe))
how Sun DS process the filter ? Is it look for the "uid" first then look if the "customattr" contains "*" (presence)? or it will look from "customattr" then "uid".
I've seen the log file. The search for above format is pretty quick, thus, I guess it search using "uid" first which is indexed and "customattr" is not. Not sure though.
Is LDAP server configured to check the indexed attribute first (internally) before checking unindexed attribute in the filter?
Can someone confirm this ?
I've look at the "Performance Tuning Guide", they only mention about how the search use cache. Or maybe I miss the page.
thank you,
martin

Hi Ludo,
Okey, I see. So, I guess. It's slower (from client
perspective) because the # of entries that need to be
return.
That's a factor...
I mean,
(customattr=*) will return 200,000 entries (let's
say)
(&(customattr=*)(uid=johndoe)) will return 1
entries (let's say)
Second search will be fast (from client perspective),
because it's only return 1 entry. But, all searches
filter has to process (customattr=*) first. And it's
fast .Depending on the nsslapd-allidThreshold value (check the doc for full explanation, but overall it's the limit after which its more expensive to maintain an index for the value than iterating through the DB entries).
The default is 4000.
So in the first case, the index will say ALLID (ie iterate through DB). The server will check each and every entry for the filter.
In the second case, the index will say ALLID for the first filter AND 1 entry for second filter, only 1 entry will be considered and returned.
I hope this helps.
Ludovic.
>
Am I asking the "obvious" here ? :)
thanks so much,
martin

Similar Messages

  • Export Filter - processing in batches

    I'm writing an export filter that uses an external tool to process the photos. The tool can/should be multithreaded and I want to take advantage of this by processing the images in groups of 2 or 4 or 8 (or whatever). This means that I gather the paths and the renditions to satisfy in a table and once the table reaches the desired size I process the images in the batch together, empty the table and continue.
    For some reason I can't make this work. To illustrate, I've reduced this problem to this scenario (Example A)
    1. While iterating filterContext:renditions() I copy the paths and renditionToSatisify to a table
    2. Iterate over the table of copies and process the images one by one.
    When running this, I'm getting this error:
    This plug-in’s post-processing task did not finish successfully.
    ?:0: attempt to index field 'exportSettings' (a nil value)
    It seems to me that LR doesn't like me to call "renditionIsDone" out of sequence but I don't know what to make of this.
    I'm also adding "Example B" to show that if I call processOne right after adding its entry to the table all is well.
    Example A
    function processOne(table)
         local commandResult
         commandResult = PluginManager.doit({table.a})
         if commandResult ~= 0 then
             table.b:renditionIsDone( false, "Image Processing Failed (" ..  commandResult .. ")")
         else
             table.b:renditionIsDone (true,"very good indeed")
         end
    end
    function JPEGminiFilterProvider.postProcessRenderedPhotos( functionContext, filterContext )
      local renditionOptions = {
      plugin = _PLUGIN,
      renditionsToSatisfy = filterContext.renditionsToSatisfy,
      filterSettings = function( renditionToSatisfy, exportSettings )
      end,
      local maxGroupSize = 1
      local groupSize = 0
      local group = {}
      for sourceRendition, renditionToSatisfy in filterContext:renditions( renditionOptions ) do
      local success, pathOrMessage = sourceRendition:waitForRender()
      if success then
      groupSize = groupSize + 1
      group[groupSize]={a=pathOrMessage, b=renditionToSatisfy}
      end
      end
      for i,v in ipairs(group) do
      processOne(v)
      end
    end
    Example B
    function JPEGminiFilterProvider.postProcessRenderedPhotos( functionContext, filterContext )
         local renditionOptions = {
             plugin = _PLUGIN,
             renditionsToSatisfy = filterContext.renditionsToSatisfy,
             filterSettings = function( renditionToSatisfy, exportSettings )
             end,
         local groupSize = 0
         local group = {}
         for sourceRendition, renditionToSatisfy in filterContext:renditions( renditionOptions ) do
             local success, pathOrMessage = sourceRendition:waitForRender()
             if success then
                   groupSize = groupSize + 1
                   group[groupSize]={a=pathOrMessage, b=renditionToSatisfy}
                   processOne(group[groupSize])
             end
         end
    end

    I dunno the problem, but consider naming parameters something besides 'table' since that masks the global lua table object.
    Rob

  • I need a filter / process identified in Photoshop

    Can anyone help me on the process / filters used to create the effect on this flyer? on the photographs i mean?

    I can't tell from the low res graphic if it's just a colored black and white, or a posterization.  I'd assume the latter, just with more resolution to the posterization.  Plenty of tutorials on it:
    http://ttc12.hubpages.com/hub/How-to-Create-a-Silk-Screen-Look-in-Photoshop-CS5-using-the- Posterize-Tool
    Edit: I played around with an image for a bit.  I first converted to black and white - high contrast.  Then did a hue adjustment layer, set to colorize, and picked my color.  Then I posterized at a setting of 12-14.  Looks pretty similar.

  • Filter process error

    During the execution of a schedule, I got some errors with two files: a PDF file and a .doc one. The schedule is based on a web source and it has a lot of documents of that kind of files, but just two of them fails.
    I tested the command ctxhx and replaced the two files but it still doesn't work. I also checked the Ultrasearch's log file and the table wk$url, and for this files the columns SIGNATURE has 0 and STATUS has 903.
    Any ideas..?
    Thanks in advance,
    Hazbleydi C.

    Has this worked before and suddenly stopped working?
    Or is it a new install? If so, why are you using such an old version?
    Can you upgrade to SES 11g? It would need to be installed on a 64 bit Windows Server platform.

  • Behavior of "Stop Filter Execution" filter action

    What is the intended behavior of the "Stop Filter Execution" filter action? I cannot find any recent documentation on that issue. When part of manually run filters, is "Stop Filter Execution" designed to stop all remaining filters for all messages if the filter that contains it matches once? That appears to be the behavior for me. When included in the first filter of several filters, only the first filter matches and the log only indicates instances of matching of the first filter, although several other subsequent filters should match for several messages that do not match the first filter.
    I appreciate the functionality of Thunderbird's filters, but am trying to find a solution for implementing more complex boolean logic for moving messages from my Inbox using manually run filters. I have several filters set up for categorizing messages, but I would like to implement the filters such that they are not applied to starred messages. Currently, I have logic in most of the filters to not match a starred message by using the "Match all of the following" option, however this prevents use of OR logic in the filter and leads to an increased number of filters. I would like to set up the filters such that a first filter matches starred messages and prevents the remaining filters from being run only for those messages which match the first filter.
    It may be that the behavior that I am seeing is a bug specific to my installation, but I'd like to get confirmation on the expected behavior and see if others have encountered this issue. I am working under the assumption that the behavior of "Stop Filter Execution" should stop subsequent filter processing only for messages on which a containing filter matches as indicated in the old post at https://groups.google.com/forum/#!topic/mozilla.feedback.thunderbird.prerelease/rUXaQ0NdZvM, but that assumption may be wrong.
    Any help or suggestions are appreciated.

    Ok, it looks like this is a documented bug, for example at https://bugzilla.mozilla.org/show_bug.cgi?id=552936. I should have searched bug reports before posting here. I'll track things with the bug reports. Thanks.

  • Problem in connecting process types APD

    Hi All,
    I have created an APD to update an infoobject say ZEMP. The source of the APD is the P table of ZEMP and target is the characteristics ZEMP itself. I am doing some processing before i process data to ZEMP. In my APD, I have database table as a source, then followed by a filter process type. I am then doing some processing through ABAP process type. But when I try to connect the ABAP process type to the attribute procees type, the system does not allow me to connect the ABAP process type to Attributes process type. What could be the reason.
    Thanks,
    Satya

    Hi,
    I had the same problem. Turns out that you see small red triangles (like the 'play' symbol on music applications) on your process types. If you click on that symbol and drag toward your other object, you will see a line appear and you'll be able to assign fields.
    Good luck!
    Hayo

  • Ironport alt-mailhost filter and bounced emails.

    Hello!
    I have problem with ironport configuration and hope someone help me )
    I use filter with alt-mailhost rule for users within domain but located on another server.
    It's work fine. But... i have problem with bounced emails. They don't affected by filter and use smtp route.
    How to attach my filter with bounced emails?
    Thanks for any help.

    Hello,
    bounce email messages are handled outside the work queue so they are not subject to Message Filter or Content Filter processing. Only SMTP routes will apply here, an alt-mailhost action is not possible.
    The only possible workaround would be to loop the delivered bounce message over the appliance again (e.g an SMTP route that points to a secondary listener on the appliance), so that it can be reprocessed by alt-mailhost. Please note that looping certain messages over the appliance again bears the risk of an endless mail loop so you may need to adjust your filters accordingly to prevent this.
    Hope this helps. If not, please let us know.
    Regards,
    Martin

  • Exclude filter from specific pages

    What is the best way to exclude a filter from a specific resource? I have two JSPs that should not have my Authentication filter run on them, but the rest should.
    Two ideas came to my mind:
    1. Make a filter to disable the Authentication filter and map it to the two URLs that should not be authenticated. This seems like an inelegant workaround at best, and I'm hoping it's not the best way to do it.
    2. Write a URL-mapping for Authentication filter for every resource in my webapp except those two. This also seems kind of shortsighted, and a pain to update whenever I add a new JSP or servlet.
    Any advice?

    I've accomplished this by placing all "open" files in the same folder off of the application context root; the filter can check for that folder name in the request path and not process anything that's there.public void doFilter(ServletRequest request, ServletResponse response,
          FilterChain chain) throws IOException, ServletException {
       HttpServletRequest req = (HttpServletRequest)request;
       String path = "" + request.getServletPath();
       if (path.indexOf("/someFolder/") != 0){
          //do filter processing
       chain.doFilter(request, response);
    }

  • How can I check for references to previous server and remove them?

    I recently migrated several Win7 PC's off an old sbs2003 box to a new 2012 essentials server.
    All client data is stored on the server in a shared folder and that is mapped to the local PC's.
    Everything has been great, except we have noticed a delay of 10-15 seconds the first time on one PC, the user opens up Word or Excel and clicks on File (to check recent documents) - it goes to "not responding" for 10-15 seconds and then is perfectly
    normal.
    Once the program responds again (and the recent documents appear), there is no longer any delay in opening any of the documents at all.
    If the user goes off and browses the internet for a while and comes back, re-opens Word or Excel again, the same thing happens.
    I've checked what I hope is most stuff, and think I've come down to references on the PC to the old server still.
    Is there a list of registry entries/groups that I should be checking, and are there other places aside of the registry that I should be checking also, so I can be sure that only the new server is referenced?
    Appreciate any guidance please.

    Hi,
    Where is these recent office document located? On your Server?
    Generally speaking, application hungs means its process isn't waiting for Windowsing input. Is other application have similar problem?
    To troubleshoot this problem, firstly, I would like to suggest you using Process Explorer to check Word or Excel's stack. Then check what does its thread waiting for.
    Downlaod Process Explorer:
    http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
    If no use, you can use Process Monitor to monitor the starting process of Word or Excel, then we should be able to find which resource cause hung.
    Download Process Monitor:
    http://technet.microsoft.com/en-us/sysinternals/bb896645
    Note: When using Process Monitor to caputer app's trace. Firstly, please set its filter Process Name is Word.exe.
    After that, start work to start monitoring.
    If there is any difficute using these tools, please feel free let us know.
    Roger Lu
    TechNet Community Support

  • Problem in upgrading from CUCM 8.5.1 to CUCM 8.6.2

    Unable to upgarde cucm 8.5 to 8.6 ,
    installed referesh upgrade cop file . tried on SFTP and using local DVD same below error displayed . Any one have any solution please share .
    Installation Status
    File
    UCSInstall_UCOS_8.6.2.21900-5.sgn.iso
    Start Time
    Mon Dec 10 14:31:47 GST 2013
    Status
    Error encountered: An unknown error occurred while accessing the upgrade file.
    12/10/2013 13:44:37 file_list.sh|Starting file_list.sh|<LVL::Info>
    12/10/2013 13:44:37 file_list.sh|Parse argument method=remote_sftp|<LVL::Debug>
    12/10/2013 13:44:37 file_list.sh|Parse argument source_dir=/|<LVL::Debug>
    12/10/2013 13:44:37 file_list.sh|Parse argument dest_file=/var/log/install/downloaded_versions|<LVL::Debug>
    12/10/2013 13:44:37 file_list.sh|Parse argument remote_host=10.2.102.68|<LVL::Debug>
    12/10/2013 13:44:37 file_list.sh|Parse argument user_name=cisco|<LVL::Debug>
    12/10/2013 13:44:37 file_list.sh|Process remote SFTP request|<LVL::Info>
    12/10/2013 13:44:37 file_list.sh|Calling SFTP command with metering off|<LVL::Debug>
    12/10/2013 13:44:38 file_list.sh|SFTP command complete (0)|<LVL::Debug>
    12/10/2013 13:44:38 file_list.sh|List file (pre-filtered):|<LVL::Debug>
    12/10/2013 13:44:38 file_list.sh|(CAPTURE) UCSInstall_UCOS_8.6.2.21900-5.sgn.iso|<LVL::Debug>
    12/10/2013 13:44:38 file_list.sh|(CAPTURE) ciscocm.refresh_upgrade_v1.1.cop.sgn|<LVL::Debug>
    12/10/2013 13:44:38 file_list.sh|/opt/cisco/install/bin/filter file=/var/log/install/downloaded_versions|<LVL::Debug>
    12/10/2013 13:44:38 filter|Parse argument file=/var/log/install/downloaded_versions|<LVL::Debug>
    12/10/2013 13:44:38 filter|No patch type specified. Optional.|<LVL::Debug>
    12/10/2013 13:44:38 filter|No upgrade mode specifed. Optional.|<LVL::Debug>
    12/10/2013 13:44:43 filter|Processing filter candidate names|<LVL::Debug>
    12/10/2013 13:44:43 filter|Process "UCSInstall_UCOS_8.6.2.21900-5.sgn.iso"|<LVL::Debug>
    12/10/2013 13:44:43 filter|    Match against patch pattern  (UCSInstall_UCOS_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.iso)|<LVL::Debug>
    12/10/2013 13:44:43 filter|    Match against patch pattern  (UCSInstall_UCOS_UNRST_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.iso)|<LVL::Debug>
    12/10/2013 13:44:43 filter|    Match against patch pattern  (UCSInstall_UCOS_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.sgn.iso)|<LVL::Debug>
    12/10/2013 13:44:43 filter|INorOUT=IN UCSInstall_UCOS_8.6.2.21900-5.sgn.iso: Filter passed.|<LVL::Debug>
    12/10/2013 13:44:43 filter|Process "ciscocm.refresh_upgrade_v1.1.cop.sgn"|<LVL::Debug>
    12/10/2013 13:44:43 filter|    Match against patch pattern  (UCSInstall_UCOS_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.iso)|<LVL::Debug>
    12/10/2013 13:44:43 filter|    Match against patch pattern  (UCSInstall_UCOS_UNRST_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.iso)|<LVL::Debug>
    12/10/2013 13:44:43 filter|    Match against patch pattern Signed Standard upgrade patch file (UCSInstall_UCOS_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.sgn.iso)|<LVL::Debug>
    12/10/2013 13:44:43 filter|    Match against patch pattern  (UCSInstall_UCOS_UNRST_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.sgn.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against es pattern  (UCSInstall_UCOS_ES[0-9]*_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against es pattern  (UCSInstall_UCOS_UNRST_ES[0-9]*_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against es pattern  (UCSInstall_UCOS_ES[0-9]*_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.sgn.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against es pattern  (UCSInstall_UCOS_UNRST_ES[0-9]*_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.sgn.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against su pattern  (UCSInstall_UCOS_SU[0-9]*_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against su pattern  (UCSInstall_UCOS_UNRST_SU[0-9]*_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against su pattern  (UCSInstall_UCOS_SU[0-9]*_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.sgn.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against su pattern  (UCSInstall_UCOS_UNRST_SU[0-9]*_[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.sgn.iso)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (dp-ffr.[1-9]-[0-9]-[0-9]+.*.cop)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (dp-ffr.[1-9]-[0-9]-[0-9]+.*.cop.sgn)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (cm-locale-.*_.*-[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (cm-locale-.*_.*-[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop.sgn)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (po-locale-.*_.*-[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (po-locale-.*_.*-[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop.sgn)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (cmterm-devicepack[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (cmterm-devicepack[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop.sgn)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (cmterm-.*\.cop)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (cmterm-.*\.cop\.sgn)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (uc-locale-.*_.*-[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (uc-locale-.*_.*-[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop.sgn)|<LVL::Debug>
    12/10/2013 13:44:44 filter|    Match against cop pattern  (uc-friendly-[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop)|<LVL::Debug>
    12/10/2013 13:44:45 filter|    Match against cop pattern  (uc-friendly-[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[0-9]+.cop.sgn)|<LVL::Debug>
    12/10/2013 13:44:45 filter|    Match against cop pattern  (ciscocm..*.cop)|<LVL::Debug>
    12/10/2013 13:44:45 filter|    Match against cop pattern  (ciscocm..*.cop.sgn)|<LVL::Debug>
    12/10/2013 13:44:45 filter|INorOUT=IN ciscocm.refresh_upgrade_v1.1.cop.sgn: Filter passed.|<LVL::Debug>
    12/10/2013 13:44:45 file_list.sh|List file (post-filtered):|<LVL::Debug>
    12/10/2013 13:44:45 file_list.sh|(CAPTURE) <?xml version="1.0" encoding="UTF-8"?>|<LVL::Debug>
    12/10/2013 13:44:45 file_list.sh|(CAPTURE) <InstallList>|<LVL::Debug>
    12/10/2013 13:44:45 file_list.sh|(CAPTURE)     <InstallItem type="patch" secure-file="UCSInstall_UCOS_8.6.2.21900-5.sgn.iso" version="8.6.2.21900-5" file="UCSInstall_UCOS_8.6.2.21900-5.sgn.iso" reboot="no" signed="yes"/>|<LVL::Debug>
    12/10/2013 13:44:45 file_list.sh|(CAPTURE)     <InstallItem type="cop" secure-file="ciscocm.refresh_upgrade_v1.1.cop.sgn" version="0.0.0.0-0" file="ciscocm.refresh_upgrade_v1.1.cop" reboot="no" signed="yes"/>|<LVL::Debug>
    12/10/2013 13:44:45 file_list.sh|(CAPTURE) </InstallList>|<LVL::Debug>
    12/10/2013 13:44:45 file_list.sh|success|<LVL::Info>
    12/10/2013 13:44:45 file_list.sh|file_list.sh complete (rc=0)|<LVL::Info>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Starting upgrade_validate_file.sh|<LVL::Info>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Parse argument method=remote_sftp|<LVL::Debug>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Parse argument source_dir=/|<LVL::Debug>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Parse argument file_name=UCSInstall_UCOS_8.6.2.21900-5.sgn.iso|<LVL::Debug>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Parse argument remote_host=10.2.102.68|<LVL::Debug>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Parse argument user_name=cisco|<LVL::Debug>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Parse argument file_type=patch|<LVL::Debug>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Parse argument file_signed=yes|<LVL::Debug>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Process remote SFTP request|<LVL::Info>
    12/10/2013 13:44:53 upgrade_validate_file.sh|Get //UCSInstall_UCOS_8.6.2.21900-5.sgn.iso size via sftp|<LVL::Debug>
    12/10/2013 13:44:54 upgrade_validate_file.sh|Size of file obtained from sftp is 4793341952|<LVL::Debug>
    12/10/2013 13:44:54 upgrade_validate_file.sh|Total space needed is 9586683904|<LVL::Debug>
    12/10/2013 13:44:54 upgrade_validate_file.sh|Check free space|<LVL::Info>
    12/10/2013 13:44:54 upgrade_validate_file.sh|There is enough space on device to proceed.|<LVL::Info>
    12/10/2013 13:44:54 upgrade_validate_file.sh|(CAPTURE)   Free space : 25916985344|<LVL::Debug>
    12/10/2013 13:44:54 upgrade_validate_file.sh|(CAPTURE) Space needed : 19827077120|<LVL::Debug>
    12/10/2013 13:44:54 upgrade_validate_file.sh|Remote SFTP request complete (0)|<LVL::Info>
    12/10/2013 13:44:54 upgrade_validate_file.sh|success|<LVL::Info>
    12/10/2013 13:44:54 upgrade_validate_file.sh|upgrade_validate_file.sh complete (rc=0)|<LVL::Info>
    12/10/2013 13:44:54 upgrade_validate_file.sh|Unmount DVD|<LVL::Info>
    12/10/2013 13:44:57 upgrade_get_file.sh|Starting upgrade_get_file.sh|<LVL::Info>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument method=remote_sftp|<LVL::Debug>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument source_dir=/|<LVL::Debug>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument file_name=UCSInstall_UCOS_8.6.2.21900-5.sgn.iso|<LVL::Debug>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument dest_dir=/common/download/|<LVL::Debug>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument remote_host=10.2.102.68|<LVL::Debug>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument user_name=cisco|<LVL::Debug>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument version=8.6.2.21900-5|<LVL::Debug>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument file_type=patch|<LVL::Debug>
    12/10/2013 13:44:57 upgrade_get_file.sh|Parse argument file_signed=yes|<LVL::Debug>
    12/10/2013 13:45:08 upgrade_get_file.sh|Process remote SFTP request|<LVL::Info>
    12/10/2013 13:45:08 upgrade_get_file.sh|source_dir=/, dest_file=/common/download//UCSInstall_UCOS_8.6.2.21900-5.sgn.iso, file_name=UCSInstall_UCOS_8.6.2.21900-5.sgn.iso|<LVL::Debug>
    12/10/2013 13:45:08 upgrade_get_file.sh|Starting SFTP|<LVL::Debug>
    12/10/2013 14:29:34 upgrade_get_file.sh|Mount /common/download//UCSInstall_UCOS_8.6.2.21900-5.sgn.iso on /mnt/source|<LVL::Info>
    12/10/2013 14:29:34 upgrade_get_file.sh|Download of iso file RTMTStart|<LVL::Notice>
    12/10/2013 14:29:34 upgrade_get_file.sh|Create md5 "/common/download/UCSInstall_UCOS_8.6.2.21900-5.sgn.iso.md5"|<LVL::Info>
    12/10/2013 14:30:49 upgrade_get_file.sh|MD5(/common/download/UCSInstall_UCOS_8.6.2.21900-5.sgn.iso)= e8:da:df:9a:3a:61:ee:27:4d:c5:4f:7b:77:78:bc:f1|<LVL::Debug>
    12/10/2013 14:30:49 upgrade_get_file.sh|Create md5 complete|<LVL::Info>
    12/10/2013 14:30:49 upgrade_get_file.sh|Authenticate file "/common/download/8.6.2.21900-5/checksum_file.sgn"|<LVL::Info>
    12/10/2013 14:30:49 upgrade_get_file.sh|File authentication complete|<LVL::Debug>
    12/10/2013 14:30:49 upgrade_get_file.sh|authenticating ISO name, filename=UCSInstall_UCOS_8.6.2.21900-5.sgn.iso, isoname=UCSInstall_UCOS_8.6.2.21900-5.sgn.iso|<LVL::Debug>
    12/10/2013 14:30:49 upgrade_get_file.sh|Download of iso file RTMTFinish|<LVL::Notice>
    12/10/2013 14:30:49 upgrade_get_file.sh|Checking for preflight script|<LVL::Debug>
    12/10/2013 14:30:49 upgrade_get_file.sh|Executing preflight script: /mnt/source/Cisco/install/bin/preflight isolocation=/mnt/source|<LVL::Info>
    12/10/2013 14:30:49 preflight|Starting preflight|<LVL::Info>
    12/10/2013 14:30:49 preflight|Validate preflight data|<LVL::Info>
    12/10/2013 14:30:49 preflight|Preflight data validation complete|<LVL::Info>
    12/10/2013 14:30:49 preflight|Determine upgrade type|<LVL::Info>
    12/10/2013 14:30:50 preflight|Active RH version = 4AS|<LVL::Debug>
    12/10/2013 14:30:50 preflight|New os version(xml) = 5Server|<LVL::Debug>
    12/10/2013 14:30:50 preflight|HW model = VMware|<LVL::Debug>
    12/10/2013 14:30:50 preflight|Upgrade type = RU|<LVL::Debug>
    12/10/2013 14:30:50 preflight|Obtain product type|<LVL::Info>
    12/10/2013 14:30:53 preflight|Obtained product type CallManager|<LVL::Info>
    12/10/2013 14:30:53 preflight|Processing preflight install mode|<LVL::Info>
    12/10/2013 14:30:53 preflight|Set preflight cancel utility|<LVL::Info>
    12/10/2013 14:30:53 preflight|Execute install preflight commands for CallManager:RU from /mnt/source/Cisco/install/preflight.xml|<LVL::Info>
    12/10/2013 14:30:53 preflight|Found 10 preflight commands to execute|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Execute preflight command (1/10): mkdir -p /common/preflight/CM/RU|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command returns 0|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Execute preflight command (2/10): cp -f /usr/local/platform/conf/dynamicConfig.xml /common/preflight/CM/RU/dynamicConfig.xml|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command returns 1|<LVL::Debug>
    12/10/2013 14:30:53 preflight|(CAPTURE) cp: cannot stat `/usr/local/platform/conf/dynamicConfig.xml': No such file or directory|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command did not complete (1). Continuing command processing...|<LVL::Warn>
    12/10/2013 14:30:53 preflight|Execute preflight command (3/10): cp -f /usr/local/thirdparty/jakarta-tomcat/webapps/cmplatform/WEB-INF/pages/install/dynamic.jsp /common/preflight/CM/RU/dynamic.jsp|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command returns 1|<LVL::Debug>
    12/10/2013 14:30:53 preflight|(CAPTURE) cp: cannot stat `/usr/local/thirdparty/jakarta-tomcat/webapps/cmplatform/WEB-INF/pages/install/dynamic.jsp': No such file or directory|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command did not complete (1). Continuing command processing...|<LVL::Warn>
    12/10/2013 14:30:53 preflight|Execute preflight command (4/10): cp -f /usr/local/thirdparty/jakarta-tomcat/webapps/cmplatform/WEB-INF/pages/install/install-confirm-content.jsp /common/preflight/CM/RU/install-confirm-content.jsp|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command returns 0|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Execute preflight command (5/10): cp -f /mnt/source/Cisco/install/dynamicConfig_RU.xml /usr/local/platform/conf/dynamicConfig.xml|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command returns 0|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Execute preflight command (6/10): mkdir -p /usr/local/thirdparty/jakarta-tomcat/webapps/cmplatform/WEB-INF/pages/install|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command returns 0|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Execute preflight command (7/10): cp -f /mnt/source/Cisco/install/dynamic_RU.jsp /usr/local/thirdparty/jakarta-tomcat/webapps/cmplatform/WEB-INF/pages/install/dynamic.jsp|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command returns 0|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Execute preflight command (8/10): cp -f /mnt/source/Cisco/install/install-confirm-content_RU.jsp /usr/local/thirdparty/jakarta-tomcat/webapps/cmplatform/WEB-INF/pages/install/install-confirm-content.jsp|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Preflight command returns 0|<LVL::Debug>
    12/10/2013 14:30:53 preflight|Execute preflight command (9/10): /mnt/source/Cisco/install/bin/tempDynamic.preflight /mnt/source/Cisco/install/dynamic_RU.jsp dynamic.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|Preflight command returns 0|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:53  starting tempDynamic.preflight...|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:53  Source dir/file = /mnt/source/Cisco/install/dynamic_RU.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:53  Destination file name = dynamic.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  Copying /mnt/source/Cisco/install/dynamic_RU.jsp to /usr/local/thirdparty/jakarta-tomcat/temp/1-cmplatform/WEB-INF/pages/install/dynamic.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  added/replaced /usr/local/thirdparty/jakarta-tomcat/temp/1-cmplatform/WEB-INF/pages/install/dynamic.jsp successfully|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  Copying /mnt/source/Cisco/install/dynamic_RU.jsp to /usr/local/thirdparty/jakarta-tomcat/temp/2-cmplatform/WEB-INF/pages/install/dynamic.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  added/replaced /usr/local/thirdparty/jakarta-tomcat/temp/2-cmplatform/WEB-INF/pages/install/dynamic.jsp successfully|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  Copying /mnt/source/Cisco/install/dynamic_RU.jsp to /usr/local/thirdparty/jakarta-tomcat/temp/4-cmplatform/WEB-INF/pages/install/dynamic.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  added/replaced /usr/local/thirdparty/jakarta-tomcat/temp/4-cmplatform/WEB-INF/pages/install/dynamic.jsp successfully|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  ... tempDynamic.preflight completed|<LVL::Debug>
    12/10/2013 14:30:54 preflight|Execute preflight command (10/10): /mnt/source/Cisco/install/bin/tempDynamic.preflight /mnt/source/Cisco/install/install-confirm-content_RU.jsp install-confirm-content.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|Preflight command returns 0|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  starting tempDynamic.preflight...|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  Source dir/file = /mnt/source/Cisco/install/install-confirm-content_RU.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  Destination file name = install-confirm-content.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  Copying /mnt/source/Cisco/install/install-confirm-content_RU.jsp to /usr/local/thirdparty/jakarta-tomcat/temp/1-cmplatform/WEB-INF/pages/install/install-confirm-content.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  added/replaced /usr/local/thirdparty/jakarta-tomcat/temp/1-cmplatform/WEB-INF/pages/install/install-confirm-content.jsp successfully|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  Copying /mnt/source/Cisco/install/install-confirm-content_RU.jsp to /usr/local/thirdparty/jakarta-tomcat/temp/2-cmplatform/WEB-INF/pages/install/install-confirm-content.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  added/replaced /usr/local/thirdparty/jakarta-tomcat/temp/2-cmplatform/WEB-INF/pages/install/install-confirm-content.jsp successfully|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  Copying /mnt/source/Cisco/install/install-confirm-content_RU.jsp to /usr/local/thirdparty/jakarta-tomcat/temp/4-cmplatform/WEB-INF/pages/install/install-confirm-content.jsp|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  added/replaced /usr/local/thirdparty/jakarta-tomcat/temp/4-cmplatform/WEB-INF/pages/install/install-confirm-content.jsp successfully|<LVL::Debug>
    12/10/2013 14:30:54 preflight|(CAPTURE) 12/10/2013 14:30:54  ... tempDynamic.preflight completed|<LVL::Debug>
    12/10/2013 14:30:54 preflight|Exiting with result 0|<LVL::Info>
    12/10/2013 14:30:54 upgrade_get_file.sh|preflight rc=0|<LVL::Debug>
    12/10/2013 14:30:54 upgrade_get_file.sh|Preflight completed successfully|<LVL::Info>
    12/10/2013 14:30:56 upgrade_get_file.sh|success|<LVL::Info>
    12/10/2013 14:30:56 upgrade_get_file.sh|upgrade_get_file.sh complete (rc=0)|<LVL::Info>
    12/30/2014 14:31:49 sd_cancelInstall.sh|Canceling active side processes
    12/30/2014 14:31:49 sd_cancelInstall.sh|Canceling active side processes done
    12/30/2014 14:31:49 sd_cancelInstall.sh|Canceling inactive side processes
    12/30/2014 14:31:50 sd_cancelInstall.sh|Canceling inactive side processes done
    12/10/2013 14:31:55 upgrade_install.sh|Starting Upgrade -- upgrade_install.sh|<LVL::Info>
    12/10/2013 14:31:55 upgrade_install.sh|Parse argument version=8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:31:55 upgrade_install.sh|Parse argument dest_dir=/common/download/|<LVL::Debug>
    12/10/2013 14:31:55 upgrade_install.sh|Parse argument work_dir=/var/log/install|<LVL::Debug>
    12/10/2013 14:31:59 upgrade_install.sh|/usr/local/platform/bin/startcsa status|<LVL::Debug>
    12/10/2013 14:31:59 upgrade_install.sh|CSA Status = 0|<LVL::Debug>
    12/10/2013 14:31:59 upgrade_install.sh|(CAPTURE) Cisco Security Agent is running with pid 23124|<LVL::Debug>
    12/10/2013 14:31:59 upgrade_install.sh|CSA Status = 0|<LVL::Debug>
    12/10/2013 14:31:59 upgrade_install.sh|/etc/init.d/ciscosec stop|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_install.sh|(CAPTURE) Stopping ciscosec:  [  OK  ]|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_install.sh|Upgrade the system|<LVL::Info>
    12/10/2013 14:32:14 upgrade_install.sh|Copy /mnt/source/Cisco/base_scripts/upgrade_manager.sh to /common/download/8.6.2.21900-5/upgrade_manager.sh|<LVL::Info>
    12/10/2013 14:32:14 upgrade_install.sh|Copy /mnt/source/Cisco/base_scripts/upgrade_manager.sh to /common/download/8.6.2.21900-5/upgrade_manager.sh complete|<LVL::Info>
    12/10/2013 14:32:14 upgrade_install.sh|Start upgrade manager|<LVL::Info>
    12/10/2013 14:32:14 upgrade_install.sh|/common/download/8.6.2.21900-5/upgrade_manager.sh type=upgrade basepath=/common/download/8.6.2.21900-5 file_name= logfile=/var/log/install/install_log_2013-12-30.13.44.35.log resultfile=/var/log/install/upgrade-results.xml work_dir=/var/log/install intf_file=/common/download/8.6.2.21900-5/upgrade_manager.xml|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Cleanup data from a prior upgrade attempt|<LVL::Info>
    12/10/2013 14:32:14 upgrade_manager.sh|Removing any /grub/boot/grub/grub.conf.recovery|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Invalidate upgrade partition|<LVL::Info>
    12/10/2013 14:32:14 upgrade_manager.sh|Clean up rpm any stale __db. files in rpmdb on the to side|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Removing any master RPM from /partB|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Removing any /partB/etc/opt/cisco/install.conf|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Invalidate any product configuration file|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Parse argument type=upgrade|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Parse argument basepath=/common/download/8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Parse argument file_name=|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Parse argument logfile=/var/log/install/install_log_2013-12-30.13.44.35.log|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Parse argument resultfile=/var/log/install/upgrade-results.xml|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Parse argument work_dir=/var/log/install|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Parse argument intf_file=/common/download/8.6.2.21900-5/upgrade_manager.xml|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|upgrade_type="upgrade"|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|L2 upgrade|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Initialize install support functions|<LVL::Info>
    12/10/2013 14:32:14 upgrade_manager.sh|Calling "source /mnt/source/Cisco/install/bin/install_func"|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Initialize install support functions complete|<LVL::Info>
    12/10/2013 14:32:14 upgrade_manager.sh|Check for Refresh Upgrade|<LVL::Info>
    12/10/2013 14:32:14 upgrade_manager.sh|Check if /mnt/source/upgradeConfig.xml exists|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Checking RedHat release version (4AS, 5Server)|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Initiate Refresh Upgrade|<LVL::Info>
    12/10/2013 14:32:14 upgrade_manager.sh|Copy /mnt/source/Cisco/install/bin/refresh_upgrade to /common/download/8.6.2.21900-5/refresh_upgrade|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Check that /common/download/8.6.2.21900-5/refresh_upgrade exists and is executable|<LVL::Debug>
    12/10/2013 14:32:14 upgrade_manager.sh|Calling exec /common/download/8.6.2.21900-5/refresh_upgrade type=upgrade basepath=/common/download/8.6.2.21900-5 file_name= logfile=/var/log/install/install_log_2013-12-30.13.44.35.log resultfile=/var/log/install/upgrade-results.xml work_dir=/var/log/install intf_file=/common/download/8.6.2.21900-5/upgrade_manager.xml|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|Parse argument type=upgrade|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|Parse argument basepath=/common/download/8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|Parse argument file_name=|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|Parse argument logfile=/var/log/install/install_log_2013-12-30.13.44.35.log|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|Parse argument resultfile=/var/log/install/upgrade-results.xml|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|Parse argument work_dir=/var/log/install|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|Parse argument intf_file=/common/download/8.6.2.21900-5/upgrade_manager.xml|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|No 'to' version specified. Extracting it from base path.|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|NEW_VERSION updated to 8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:32:14 refresh_upgrade|Refresh Upgrade Starting|<LVL::Info>
    12/10/2013 14:32:14 refresh_upgrade|IOWAIT monitor starting|<LVL::Info>
    12/10/2013 14:32:14 refresh_upgrade|Checksum the upgrade source on /mnt/source|<LVL::Info>
    12/10/2013 14:32:14 refresh_upgrade|Calling sha1sum -c /common/download/8.6.2.21900-5/checksum_file|<LVL::Debug>
    12/10/2013 14:34:14 refresh_upgrade|Checksum complete|<LVL::Info>
    12/10/2013 14:34:14 refresh_upgrade|Initialize staging area|<LVL::Info>
    12/10/2013 14:34:14 refresh_upgrade|Initialize globals for hard drive|<LVL::Debug>
    12/10/2013 14:34:14 refresh_upgrade|Calling rm -rf /common/refresh_upgrade /common/component|<LVL::Debug>
    12/10/2013 14:34:23 refresh_upgrade|Copy /mnt/source to /common/refresh_upgrade|<LVL::Info>
    12/10/2013 14:34:23 refresh_upgrade|Execute find /mnt/source and cpio to /common/refresh_upgrade. This may take several minutes.|<LVL::Debug>
    12/10/2013 14:37:31 refresh_upgrade|Copy source files to staging area complete|<LVL::Info>
    12/10/2013 14:37:31 refresh_upgrade|Initialize staging area complete|<LVL::Info>
    12/10/2013 14:37:31 refresh_upgrade|Prepare Refresh Upgrade support directory|<LVL::Info>
    12/10/2013 14:37:31 refresh_upgrade|Make /common/mnt/product_img mount point|<LVL::Info>
    12/10/2013 14:37:32 refresh_upgrade|Calling umount /common/mnt/product_img|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Setup support directories|<LVL::Info>
    12/10/2013 14:37:33 refresh_upgrade|Calling rm -rf /common/download/8.6.2.21900-5/Cisco|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling mkdir -p /common/download/8.6.2.21900-5/Cisco|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Create /common/cisco link to /common/download/8.6.2.21900-5/Cisco|<LVL::Info>
    12/10/2013 14:37:33 refresh_upgrade|Calling rm -rf /common/cisco|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling ln -s /common/download/8.6.2.21900-5/Cisco /common/cisco|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Copy files from /common/refresh_upgrade/images/product.img to /common/download/8.6.2.21900-5/Cisco|<LVL::Info>
    12/10/2013 14:37:33 refresh_upgrade|Calling mount /common/refresh_upgrade/images/product.img /common/mnt/product_img -o loop|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling cp -rf /common/mnt/product_img/bin/iproduct.sh /common/download/8.6.2.21900-5/Cisco/bin/iproduct.sh|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling cp -rf /common/mnt/product_img/bin/ihardware.sh /common/download/8.6.2.21900-5/Cisco/bin/ihardware.sh|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling cp -rf /common/mnt/product_img/bin/ihistory.sh /common/download/8.6.2.21900-5/Cisco/bin/ihistory.sh|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling cp -rf /common/mnt/product_img/bin/xproduct.sh /common/download/8.6.2.21900-5/Cisco/bin/xproduct.sh|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling cp -rf /common/mnt/product_img/bin/xcomponent.sh /common/download/8.6.2.21900-5/Cisco/bin/xcomponent.sh|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling cp -rf /common/mnt/product_img/bin/xplatformconfig.sh /common/download/8.6.2.21900-5/Cisco/bin/xplatformconfig.sh|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling cp -rf /common/mnt/product_img/bin/install_emailer /common/download/8.6.2.21900-5/Cisco/bin/install_emailer|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling cp -rf /common/mnt/product_img/bin/component_install /common/download/8.6.2.21900-5/Cisco/bin/component_install|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Calling umount /common/mnt/product_img|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|Setup install information in /common/download/8.6.2.21900-5/Cisco|<LVL::Info>
    12/10/2013 14:37:33 refresh_upgrade|Calling ln -s /common/refresh_upgrade/Cisco/install /common/download/8.6.2.21900-5/Cisco/install|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) Mail notification cancelled - smtp server address for email not found! [/usr/local/platform/conf/platformConfig.xml]|<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:33 refresh_upgrade|(CAPTURE) |<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|Setting up cisco specific enviroment|<LVL::Info>
    12/10/2013 14:37:36 refresh_upgrade|PATH=/common/download/8.6.2.21900-5/Cisco/bin:/usr/local/sbin:/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/sbin:/home/sftpuser:/root/.security|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|LD_LIBRARY_PATH=/common/download/8.6.2.21900-5/Cisco/lib:/opt/cisco/install/lib:|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|PYTHONPATH=/common/download/8.6.2.21900-5/Cisco/python:/usr/local/cm/lib:/usr/local/cm/lib:/usr/local/cm/lib:|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|CISCO_INSTALL_CONF_PATH=/common/download/8.6.2.21900-5/Cisco/install/conf|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|CISCO_INSTALL_BIN_PATH=/common/download/8.6.2.21900-5/Cisco/bin /opt/cisco/install/bin /usr/local/bin/base_scripts|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|CISCO_PLATFORMCONF_PATH=/common/cisco /usr/local/platform/conf|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|CISCO_INSTALL_LIB_PATH=/usr/local/bin/base_scripts|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|Set logging globals for upgrade|<LVL::Info>
    12/10/2013 14:37:36 refresh_upgrade|Before: ILOG_CONTEXT="Upgrade", ILOG_FILE="/var/log/install/install_log_2013-12-30.13.44.35.log", ILOG_RESULTS_FILE="/var/log/install/upgrade-results.xml"|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|After: ILOG_CONTEXT="Upgrade", ILOG_FILE="/common/log/install/install_log_2013-12-30.13.44.35.log", ILOG_RESULTS_FILE="/common/log/install/upgrade-results.xml"|<LVL::Debug>
    12/10/2013 14:37:36 refresh_upgrade|Initialize APIs|<LVL::Info>
    12/10/2013 14:37:36 refresh_upgrade|Initializing the product API|<LVL::Info>
    12/10/2013 14:37:37 refresh_upgrade|Initializing the hardware API|<LVL::Info>
    12/10/2013 14:37:38 ServerApiManager|INITIALIZE: sam_legacy_mode_init=1|<LVL::Debug>
    12/10/2013 14:37:46 ServerApiManager|INITIALIZE: sam_hssi_mode_init=0|<LVL::Debug>
    12/10/2013 14:37:46 refresh_upgrade|Initializing the history log API|<LVL::Info>
    12/10/2013 14:37:46 refresh_upgrade|Initializing the xplatformconfig API|<LVL::Info>
    12/10/2013 14:37:46 refresh_upgrade|Initializing the xproduct API|<LVL::Info>
    12/10/2013 14:37:46 refresh_upgrade|Initialize setup functions|<LVL::Info>
    12/10/2013 14:37:46 refresh_upgrade|Calling "source /common/download/8.6.2.21900-5/Cisco/install/setup/utils.sh"|<LVL::Debug>
    12/10/2013 14:37:46 refresh_upgrade|Initialize setup functions complete|<LVL::Info>
    12/10/2013 14:37:46 refresh_upgrade|Getting deployment ID from active side|<LVL::Info>
    12/10/2013 14:37:46 refresh_upgrade|Copy /usr/local/platform/conf/platformConfig.xml to /common/cisco/platformConfig.xml|<LVL::Info>
    12/10/2013 14:37:46 refresh_upgrade|Calling "cp /usr/local/platform/conf/platformConfig.xml /common/cisco/platformConfig.xml"|<LVL::Debug>
    12/10/2013 14:37:48 refresh_upgrade|Check if the upgrade is allowed|<LVL::Info>
    12/10/2013 14:37:48 refresh_upgrade|Validate hardware for the upgrade|<LVL::Info>
    12/10/2013 14:37:48 refresh_upgrade|Hardware is supported for the upgrade|<LVL::Info>
    12/10/2013 14:37:50 refresh_upgrade|Validate hardware for "callmanager" deployment|<LVL::Info>
    12/10/2013 14:37:50 refresh_upgrade|Hardware is supported for "callmanager" deployment|<LVL::Info>
    12/10/2013 14:37:50 refresh_upgrade|Validate from version 8.5.1.10000-26|<LVL::Info>
    12/10/2013 14:37:50 refresh_upgrade|Upgrade from 8.5.1.10000-26 allowed|<LVL::Info>
    12/10/2013 14:37:50 refresh_upgrade|Validate free space for the upgrade|<LVL::Info>
    12/10/2013 14:37:50 refresh_upgrade|(CAPTURE) Free space: 26040668160, Needed space: 15014745300|<LVL::Debug>
    12/10/2013 14:37:50 refresh_upgrade|Free space validation complete|<LVL::Info>
    12/10/2013 14:37:50 refresh_upgrade|Run component export scripts|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Initializing xproduct.sh API|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Initializing xcomponent.sh API|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Initializing xplatformconfig.sh API|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Parse argument export|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Parse argument mode=refresh-upgrade|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Parse argument install_root=/common/refresh_upgrade/Cisco|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Parse argument data_root=/common|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Run component export scripts, mode refresh-upgrade|<LVL::Info>
    12/10/2013 14:37:50 component_install|Initialize product data, mode refresh-upgrade|<LVL::Info>
    12/10/2013 14:37:50 component_install|Initialize "to" side product version|<LVL::Info>
    12/10/2013 14:37:50 component_install|Access "to" side API|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Got version 8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Initialize "to" side product version complete|<LVL::Info>
    12/10/2013 14:37:50 component_install|Initialize "from" side product version|<LVL::Info>
    12/10/2013 14:37:50 component_install|Access "from" side API|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Got version 8.5.1.10000-26|<LVL::Debug>
    12/10/2013 14:37:50 component_install|Initialize "from" side product version complete|<LVL::Info>
    12/10/2013 14:37:50 component_install|Initialize product data complete|<LVL::Info>
    12/10/2013 14:37:50 component_install|Initialize component data, mode refresh-upgrade|<LVL::Info>
    12/10/2013 14:37:50 component_install|Initialize ucos "to" side version|<LVL::Info>
    12/10/2013 14:37:50 component_install|Access "to" side API|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Got version 8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Initialize ucos "to" side version complete|<LVL::Info>
    12/10/2013 14:37:51 component_install|Initialize ucos "from" side version|<LVL::Info>
    12/10/2013 14:37:51 component_install|Component ucos available on active side|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Access "from" side API|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Got version 8.5.1.10000-26|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Initialize ucos "from" side version complete|<LVL::Info>
    12/10/2013 14:37:51 component_install|Initialize global data complete|<LVL::Info>
    12/10/2013 14:37:51 component_install|Build the command list for ucos|<LVL::Info>
    12/10/2013 14:37:51 component_install|Initialize command list|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Build ucos export phase commands|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Processing ucos export element|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Building the command list for ucos is complete|<LVL::Info>
    12/10/2013 14:37:51 component_install|Command execution for ucos component RTMTStart|<LVL::Notice>
    12/10/2013 14:37:51 component_install|Execute commands in the command list for ucos component|<LVL::Info>
    12/10/2013 14:37:51 component_install|No commands to execute for ucos component|<LVL::Info>
    12/10/2013 14:37:51 component_install|Command execution for ucos component is complete|<LVL::Info>
    12/10/2013 14:37:51 component_install|Command execution for ucos component RTMTFinish|<LVL::Notice>
    12/10/2013 14:37:51 component_install|Initialize component data, mode refresh-upgrade|<LVL::Info>
    12/10/2013 14:37:51 component_install|Initialize ucplatform "to" side version|<LVL::Info>
    12/10/2013 14:37:51 component_install|Access "to" side API|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Got version 8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Initialize ucplatform "to" side version complete|<LVL::Info>
    12/10/2013 14:37:51 component_install|Initialize ucplatform "from" side version|<LVL::Info>
    12/10/2013 14:37:51 component_install|Component ucplatform available on active side|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Access "from" side API|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Got version 8.5.1.10000-26|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Initialize ucplatform "from" side version complete|<LVL::Info>
    12/10/2013 14:37:51 component_install|Initialize global data complete|<LVL::Info>
    12/10/2013 14:37:51 component_install|Build the command list for ucplatform|<LVL::Info>
    12/10/2013 14:37:51 component_install|Initialize command list|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Build ucplatform export phase commands|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Processing ucplatform export element|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Processing ucplatform script element|<LVL::Debug>
    12/10/2013 14:37:51 component_install|Add "security_prepare RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Processing ucplatform script element|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Add "password_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Processing ucplatform script element|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Add "ssh_keys_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Processing ucplatform script element|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Add "installed_options_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Processing ucplatform script element|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Add "platform_certs_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Processing ucplatform script element|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Add "servm_export RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Processing ucplatform script element|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Add "network_files_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Processing ucplatform script element|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Add "drf_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Building the command list for ucplatform is complete|<LVL::Info>
    12/10/2013 14:37:52 component_install|Command execution for ucplatform component RTMTStart|<LVL::Notice>
    12/10/2013 14:37:52 component_install|Execute commands in the command list for ucplatform component|<LVL::Info>
    12/10/2013 14:37:52 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform/scripts/security_prepare|<LVL::Debug>
    12/10/2013 14:37:52 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform/scripts/security_prepare RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Parse arguments|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Validate arguments|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Initialize global variables|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Handle Security Information|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export security information|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export /etc/shadow file|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export login warning message|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export SFTP data|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export DRF data|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export CCM Service Data|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export IPSec Data|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|get_fips_status returning partB fips_cnf as 0|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export Racoon Data|<LVL::Debug>
    12/10/2013 14:37:52 security_prepare|Export Tomcat Data|<LVL::Debug>
    12/10/2013 14:37:53 security_prepare|security information prepare successful|<LVL::Info>
    12/10/2013 14:37:53 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:53 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform/scripts/password_migrate|<LVL::Debug>
    12/10/2013 14:37:53 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform/scripts/password_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:53 password_migrate|Handle password information|<LVL::Debug>
    12/10/2013 14:37:53 password_migrate|Export password information|<LVL::Info>
    12/10/2013 14:37:53 password_migrate|Calling mkdir -p /common/component/ucplatform/etc/pam.d|<LVL::Info>
    12/10/2013 14:37:53 password_migrate|password information migrate successful|<LVL::Info>
    12/10/2013 14:37:53 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:53 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform/scripts/ssh_keys_migrate|<LVL::Debug>
    12/10/2013 14:37:53 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform/scripts/ssh_keys_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:53 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:53 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform/scripts/installed_options_migrate|<LVL::Debug>
    12/10/2013 14:37:53 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform/scripts/installed_options_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:55 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:55 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform/scripts/platform_certs_migrate|<LVL::Debug>
    12/10/2013 14:37:55 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform/scripts/platform_certs_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:55 platform_certs_migrate|Source major version: 8|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|Export platform certificates|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|starting refresh upgrade export certs copy|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|creating /common/component/ucplatform|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|starting refresh upgrade export certs copy|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|creating /common/component/ucplatform|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|exporting certmon config|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|creating /common/component/ucplatform/config|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|copy /usr/local/platform/conf/certMonitorConfig.xml /common/component/ucplatform/conf/|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|Export bulk sftp config|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|sftp config not available|<LVL::Info>
    12/10/2013 14:37:55 platform_certs_migrate|platform certificates migrate successful|<LVL::Info>
    12/10/2013 14:37:55 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:55 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform/scripts/servm_export|<LVL::Debug>
    12/10/2013 14:37:55 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform/scripts/servm_export RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:56 servm_export|Start servm Export processing|<LVL::Info>
    12/10/2013 14:37:56 servm_export|Copying /usr/local/cm//../platform/conf/activate.conf to /common/component/ucplatform|<LVL::Info>
    12/10/2013 14:37:56 servm_export|Copying /usr/local/cm//../platform/conf/services.conf to /common/component/ucplatform|<LVL::Info>
    12/10/2013 14:37:56 servm_export|SUCCESS: servm Export processing completed|<LVL::Info>
    12/10/2013 14:37:56 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:56 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform/scripts/network_files_migrate|<LVL::Debug>
    12/10/2013 14:37:56 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform/scripts/network_files_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:56 network_files_migrate|Export network configuration files to /common/component/ucplatform/etc/sysconfig/network-scripts|<LVL::Info>
    12/10/2013 14:37:56 network_files_migrate|Calling mkdir -p /common/component/ucplatform/etc/sysconfig/network-scripts|<LVL::Debug>
    12/10/2013 14:37:56 network_files_migrate|Calling mkdir -p /common/component/ucplatform/common|<LVL::Debug>
    12/10/2013 14:37:56 network_files_migrate|Copy network configuration files|<LVL::Info>
    12/10/2013 14:37:56 network_files_migrate|Copying /etc/sysconfig/network-scripts/ifcfg-eth0 to /common/component/ucplatform/etc/sysconfig/network-scripts/ifcfg-eth0|<LVL::Debug>
    12/10/2013 14:37:56 network_files_migrate|Copying /etc/sysconfig/network to /common/component/ucplatform/etc/sysconfig/network|<LVL::Debug>
    12/10/2013 14:37:56 network_files_migrate|Copying /etc/hosts to /common/component/ucplatform/etc/hosts|<LVL::Debug>
    12/10/2013 14:37:57 network_files_migrate|Copying /etc/resolv.conf to /common/component/ucplatform/etc/resolv.conf|<LVL::Debug>
    12/10/2013 14:37:57 network_files_migrate|Copying //etc/nsswitch.conf to /common/component/ucplatform/etc/nsswitch.conf|<LVL::Debug>
    12/10/2013 14:37:57 network_files_migrate|Copy network configuration files complete|<LVL::Info>
    12/10/2013 14:37:57 network_files_migrate|Export network configuration files complete|<LVL::Info>
    12/10/2013 14:37:57 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform/scripts/drf_migrate|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform/scripts/drf_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Command execution for ucplatform component is complete|<LVL::Info>
    12/10/2013 14:37:57 component_install|Command execution for ucplatform component RTMTFinish|<LVL::Notice>
    12/10/2013 14:37:57 component_install|Initialize component data, mode refresh-upgrade|<LVL::Info>
    12/10/2013 14:37:57 component_install|Initialize ucplatform_cluster "to" side version|<LVL::Info>
    12/10/2013 14:37:57 component_install|Access "to" side API|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Got version 8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Initialize ucplatform_cluster "to" side version complete|<LVL::Info>
    12/10/2013 14:37:57 component_install|Initialize ucplatform_cluster "from" side version|<LVL::Info>
    12/10/2013 14:37:57 component_install|Component ucplatform_cluster available on active side|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Access "from" side API|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Got version 8.5.1.10000-26|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Initialize ucplatform_cluster "from" side version complete|<LVL::Info>
    12/10/2013 14:37:57 component_install|Initialize global data complete|<LVL::Info>
    12/10/2013 14:37:57 component_install|Build the command list for ucplatform_cluster|<LVL::Info>
    12/10/2013 14:37:57 component_install|Initialize command list|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Build ucplatform_cluster export phase commands|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Processing ucplatform_cluster export element|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Processing ucplatform_cluster script element|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Add "platform_sso_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform_cluster /usr/local/cm/ /common/log/install/capture.txt" to command list|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Building the command list for ucplatform_cluster is complete|<LVL::Info>
    12/10/2013 14:37:57 component_install|Command execution for ucplatform_cluster component RTMTStart|<LVL::Notice>
    12/10/2013 14:37:57 component_install|Execute commands in the command list for ucplatform_cluster component|<LVL::Info>
    12/10/2013 14:37:57 component_install|Search path is /common/refresh_upgrade/Cisco/ucplatform_cluster/scripts:/usr/local/cm/script|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Checking command /common/refresh_upgrade/Cisco/ucplatform_cluster/scripts/platform_sso_migrate|<LVL::Debug>
    12/10/2013 14:37:57 component_install|Execute "/common/refresh_upgrade/Cisco/ucplatform_cluster/scripts/platform_sso_migrate RU Export 8.6.2.21900-5 8.5.1.10000-26 /common/component/ucplatform_cluster /usr/local/cm/ /common/log/install/capture.txt"|<LVL::Debug>
    12/10/2013 14:37:58 platform_sso_migrate|Source major version: 8|<LVL::Info>
    12/10/2013 14:37:58 component_install|Command execution for ucplatform_cluster component is complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Command execution for ucplatform_cluster component RTMTFinish|<LVL::Notice>
    12/10/2013 14:37:58 component_install|Initialize component data, mode refresh-upgrade|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize thirdparty "to" side version|<LVL::Info>
    12/10/2013 14:37:58 component_install|Access "to" side API|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Got version 8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Initialize thirdparty "to" side version complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize thirdparty "from" side version|<LVL::Info>
    12/10/2013 14:37:58 component_install|Component thirdparty available on active side|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Access "from" side API|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Got version 8.5.1.10000-26|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Initialize thirdparty "from" side version complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize global data complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Build the command list for thirdparty|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize command list|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Build thirdparty export phase commands|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Processing thirdparty export element|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Building the command list for thirdparty is complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Command execution for thirdparty component RTMTStart|<LVL::Notice>
    12/10/2013 14:37:58 component_install|Execute commands in the command list for thirdparty component|<LVL::Info>
    12/10/2013 14:37:58 component_install|No commands to execute for thirdparty component|<LVL::Info>
    12/10/2013 14:37:58 component_install|Command execution for thirdparty component is complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Command execution for thirdparty component RTMTFinish|<LVL::Notice>
    12/10/2013 14:37:58 component_install|Initialize component data, mode refresh-upgrade|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize serviceability_core "to" side version|<LVL::Info>
    12/10/2013 14:37:58 component_install|Access "to" side API|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Got version 8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Initialize serviceability_core "to" side version complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize serviceability_core "from" side version|<LVL::Info>
    12/10/2013 14:37:58 component_install|Component serviceability_core available on active side|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Access "from" side API|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Got version 8.5.1.10000-26|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Initialize serviceability_core "from" side version complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize global data complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Build the command list for serviceability_core|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize command list|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Build serviceability_core export phase commands|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Processing serviceability_core export element|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Building the command list for serviceability_core is complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Command execution for serviceability_core component RTMTStart|<LVL::Notice>
    12/10/2013 14:37:58 component_install|Execute commands in the command list for serviceability_core component|<LVL::Info>
    12/10/2013 14:37:58 component_install|No commands to execute for serviceability_core component|<LVL::Info>
    12/10/2013 14:37:58 component_install|Command execution for serviceability_core component is complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Command execution for serviceability_core component RTMTFinish|<LVL::Notice>
    12/10/2013 14:37:58 component_install|Initialize component data, mode refresh-upgrade|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize database "to" side version|<LVL::Info>
    12/10/2013 14:37:58 component_install|Access "to" side API|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Got version 8.6.2.21900-5|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Initialize database "to" side version complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize database "from" side version|<LVL::Info>
    12/10/2013 14:37:58 component_install|Component database available on active side|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Access "from" side API|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Got version 8.5.1.10000-26|<LVL::Debug>
    12/10/2013 14:37:58 component_install|Initialize database "from" side version complete|<LVL::Info>
    12/10/2013 14:37:58 component_install|Initialize global data complete|<LVL::Info>

    hi gupta ,
    admin:run sql car select * from tbl_event_log
    Failed  to get Connection.Connector(NOT CONNECTED:  Driver=com.informix.jdbc.IfxDr                                                 iver;)
    admin:run sql car select * from tbl_system_preferences
    Failed to get Connection.Connector(NOT CONNECTED: Driver=com.informix.jdbc.IfxDriver;)
    restarted the below sevices
    Cisco CDR Agent
    Cisco Database Layer Monitor
    Cisco CDR Repository Manager
    Cisco CAR                 Scheduler
    Cisco SOAP - CDRonDemand                 Service
    Cisco CAR Web                 Service
    while accessing cdr reporting showing below error .
    ------------------------------------------WARNING-----------------------------------------
    *  Cluster wide parameter 'Call Diagnostics Enabled flag' is set  to false.  Hence no QoS information will be generated on calls. If  required,  please configure the same from service parameter page for Call  Manager  service. 
    *  Problem in determining 2M/HWM breach status.  Tbl_System_Preferences  table might be corrupted. Please click on the  'Restore Defaults' button  to update the table with default values. 
    *  Tbl_System_Preferences table is corrupted. Please click on the  'Restore  Defaults' button to update the table with default values. 
    *  Problem in determining Loader Configuration.  Tbl_System_Preferences  table might be corrupted. Please click on the  'Restore Defaults' button  to update the table with default values. 
    -------------------------------------------NOTICE------------------------------------------
    * Problem in determining Billing Tables status. Please check the  CAR DB for tables Tbl_Billing_Data and Tbl_Billing_Error. 
    *  Problem in getting the Mail parameters. It might result in   mails/alerts/notifications not been sent to CAR Administrators. Please   configure this at CAR->System->System Parameters->Mail   Parameters. 
    * Mail  id for 'ccmadmin' is not available. CAR  Reports/Notifications/Alert  Emails might not be able to sent to this  user properly. Please  configure a mail id in end user configuration  page.
    if we apllied Restore Defaults ,geting below error
    Error Code
    Error Description
    30029
    Direct access to this screen is not allowed.
    and try to access system and data base , getting below error
    Error Code
    Error Description
    10012
    Database Error. Contact System Administrator.
    Does any other way to avoid cdr and do the istallation .

  • I give up - but trying this as a last resort with ...

    To whom it may concern, 
    I would be grateful if you can look into the following issue. Please don’t stop reading at any point, it does get interesting, it’s not boring.
    Broadband issue – Chain of events Telephone  – Mr. Alastair Paterson,
    I first rang on the 14th Aug to say that broadband was not working. I spent nearly an hour on the phone checking the sockets and filters as well at 6-7 minute line test with a call centre person. The line was tested and was advised nothing was wrong with the line. I agreed that I would give it a day and see if it came back.
    15th Aug – rang again. I had to go through the whole process again with testing the sockets which I explained I’d done, testing the line, but did it all again. It was agreed then that I would require an engineer.
    I was told however that if the fault was inside the house I would be charged £99.00. This I disagreed with as I was a BT customer. However as my contact was over a year, I was now out of contract. I discussed the matter in length and was advised I would be ok, if I re-signed with BT. I was then put through to sales without be asked. I was put on hold and then I arrived in Sales, where I was subject to a sales pitch. I declined the sales pitch at the time.
    I was now left in a situation where I couldn’t have the internet fixed for free unless I re-joined BT. I rang BT faults again, went through the whole line and filter thing again and finally agreed for an engineer to visit my house as I was confident the fault wasn’t in the house.
    16th Aug – If by magic, I was able to now get back onto the internet, I thought this must have been something to do with the calls I had made. I then called the number I had received a text from detailing the date of the engineer who was arriving and cancelled the Engineer’s appointment.
    2 hours later I lost the internet again. So I was now in a position two days later, back to square one.
    17th or 18th Aug – Thinking it may come back, but it didn’t. I rang again. Again I had to go through the whole issue with testing the line, testing the filters….. I explained that an engineer had been booked and cancelled, but this meant nothing I had to go through the whole thing again. I was also told again if the fault was inside the house, the engineer if booked would cost £99.00.
    Now I was starting to think that the fault maybe in the house. So I rang BT sales to save myself the £99 and advised them of the problems I was having and a new package was agreed and due to the issues, I managed to get BT vision in the deal, basically the same price as I was paying before. The BT vision engineer was then booked for September 10th between 13.00 and 16.00. I thought this was enough time for BT to sort the internet problem out.
    Between the 20th Aug and the 10th September I spend numerous hours trying to get the internet sorted and another engineer out. I was told I wasn’t allowed an engineer to come out to me as the phone number was on a new account as I had changed packages and that the line would not be fixed until the 7th/8th September. I was therefore a further 17 days without broadband.
    The 7th September was 3 days before the engineer was to arrive to fit the BT box. This was the day of the new contract started. No matter how I explained what had happened before, I couldn’t get another engineer out before. This was absolute madness, I was now without the internet still paying BT for the internet on my existing account, but it wasn’t available till the 7th September on the new account. The original fault was given on the 14th Aug. Despite ringing several times to try an escalate this, I was hitting my head against a brick wall, at one point I was on the phone for 1hr 40 mins only  to be finally cut off after waiting 13 minutes in the faults department, they just ignored me, I wasn’t abusive, just very cross.  
    Every time I rang to speak to someone, they made me go through the whole testing of line and changing of filters. I kept advising that they just needed to read their notes and to put me through to someone who could make a decision. I spoke to several people and the last person said that the engineer arriving on the Monday 10th Sep with BT vision would be made aware of the fault.
    Finally the 7th September (the start of the new contract) came and 3 days before the engineer was to arrive hoping the broadband would be fixed as this was now a new account. It wasn’t, nor was it on the 8th. I was advised my BT Vision box would arrive the 7th; I stayed in all day for it, not to arrive. It didn’t arrive on the 8th either which was a Saturday.
    Monday the 10th I rang the number for BT vision problems number to say that the box hadn’t arrived. I advised that I had received two texts informing that the box would arrive on the 7th. I was advised that it was in fact wrong and that the engineer would be coming out with the box, I asked them to contact the engineer again to advise that my broadband still wasn’t working despite him turning up, I spend 20 minutes explaining the whole situation again this but wasn’t confident that they would get in contact with him, but they said they would.  At least he had been contact twice now about the broadband fault.
    The BT vision engineer Shaun arrived exactly on time on Monday 10th Sep. I explained the difficulty I had had over the past few weeks and he duly advised me that he knew nothing of the fault; he was only there to fit the BT vision box. As you can imagine, I was then at a point where I could go nowhere, apart from scream.
    Please don’t get bored…it does get better…………………
    Shaun kindly tested the line and advised the fault was outside of the house (thank god) and nothing was wrong with the socket or connections within the house. His laptop confirmed this. It was the BRAS sync speed that he couldn’t do anything about it except report it to BT wholesale. It would take 48hours to fix. Shaun was very helpful and left without leaving the BT box as it wasn’t going to work. The speed he reported to me was less than 0.25kb, it should be 3,000kb. The line speed was at 3.5 – 4.0
    One hour later after Shaun had gone I tried to make an outgoing call, I was unable to do this. I could receive calls but not make them. Clearly the wiring was now wrong after the engineer had looked at it.
    I left it till Wednesday 12th (48 hours later) when I called to say that not only did my broadband still not work after 48 hours I could no longer make outgoing calls. I then had to go though the whole testing the line again and changing the filters, this must have been the 6 or 7th time I had done this since the 14th Aug. You must understand my utter frustration by this time and speaking to a call centre that are very difficult to understand at any time, to top it off,  they were not aware of the report the engineer had put in.  I was back at square one again, for the centre to say they have no record of the report the engineer had made was unbelievable. I watched Shaun the engineer type the report and send it.
    It was agreed that another engineer would be send out; this was arranged for the Friday.
    Friday arrived, still not being able to make outgoing calls and without broadband. Steve arrived in the afternoon as agreed and after a chat and a cup of coffee said he was only here to fix the problem with the telephone line faults, he was nothing to do with broadband. I was about to go into orbit…….
    Steve fixed the issue with the outgoing calls, and was very happy to try and help me with the broadband issue, but this was not his area, despite having knowledge of it. He made this clear; he was not told about the broadband problem.
    Stay with it…it gets better…
    I then proceeded to ring the BT call centre again when Steve the engineer was there and explained the situation, they again asked me to go through the whole line test and filter process, despite explaining the whole situation, beforehand.  I passed the engineer to the person in the call centre and he explained to the person (Rubel) what the fault was.
     Shaun had come to the same conclusion that it was the BRAS speed. He explained this to the call centre operator who then asked him to test the line and check the filters, so he could do a test.  I could also see Steve getting angry, but he was very professional.  Finally after 40 minutes it was agreed that I should wait another 48 hours for the BRAS issue to be resolved. This was after the same person asked me to test the line, and as he put explained,” he was forced to ask the question”.
    On the Saturday I re-arranged for the BT Vision engineer to call again as I was confident that finally the issue had been identified and it would be sorted. I knew it would be over a week before the BT Vision arrived. The engineer was book for Saturday 22nd September.
    On Monday 17th Sept, Yudish rang me to say that the fault had been resolved; I challenged this as I was still unable to get on. I told him it was the BRAS sync and not the line speed and he went away and checked and then agreed with me it was running at 135kb, yes there was a fault. He would speak to BT wholesale and get it resolved, he couldn’t do it on-line and that it would take another 48 hours. Now this time I was just beginning to laugh to myself. All of this was explained by the engineer and me the previous Friday, yet nothing had been done.  Yudish would ring me back again on Wednesday 19th at 09.30am as another 48 test needed to be done.
    Yudish did ring on the 19th Sept all be it at 09.43, he rang to say there was still a problem with the BRAS and that he needed to send any engineer. By this time I very sorry I got very irate. He advised me that the engineer would be going to the exchange as well as my house as the fault had to be fixed manually as it couldn’t be done remotely. He advised me that if the fault was in the house I would have to pay £99.00, this despite now being a new BT customer. I put the phone down. The engineer is arriving Monday 24th September between 08.00 and 13.00, the txt said I received.
    Today is Thursday 20th September and I now have an engineer coming Saturday for BT vision and Monday to hopefully fix Broadband. I’m not cancelling the Saturday engineer because I want to keep the BT box and fit it myself if the fault is not fixed Saturday or Monday. If the fault isn’t fixed Monday, I will be cancelling all ties with BT and contacting offcom.
    I’m not confident that I will get a response, however I will pursue as long as it takes.
    I do want some serious compensation for the total lack of service, as well as not being able to use broadband since the 14th Aug, not being able to make outgoing calls and generally the stress and 3 day holiday’s I have taken off to be in when an engineer or BT Vision box is to arrive.
    Yours sincerely
    Alastair Paterson

    Hi Alipat1,
    Sorry to hear that you've been having an awful lot of trouble with your BT Services.
    Firstly the call out charge of £99 is a charge Openreach (the company that the engineers work for who fix and maintain the lines for all communication providers) is passed onto BT Retail (your communication provider) which will then be passed onto you if there is a fault within your property or equipment.
    Openreach, a division of the BTplc Group, but who are a separate company under the BTplc group due to Ofcom rules, have many different types of engineers for specific problems.
    Openreach maintain and fix the lines for all communication provider is the UK. BT Retail do not get any priority or special treatment from Openreach as Openreach treat all isps/communication providers equally.
    As you have had so much trouble trying to restore and setup your BT Services then would you like to contact the BT Care Team by clicking on the link below.
    Contact BT Care Team
    The BT Care Team are a BT UK Based specialist team who have a good reputation for solving customer problems.
    Once contacting them they will reply either by phone or email within 3 working days, however you will be given a tracking number immediately after sending the request. Please take note of this.
    cheers
    I'm no expert, so please correct me if I'm wrong

  • BPL - Define Selection Criteria (Selection Exit)

    We are using TDMS 3.0 with following patch level:
    DMIS             2006_1_700     0010
    DMIS_CNT     2006_1_700     0010
    DMIS_EXT     2007_1_700     0000
    We have a scenario where we want to transfer all sales transactions of particular plant in target system. We have selected package BPL scenario in TDMS with business context sales document.
    Under 'Define selection criteria' activity, we are getting only sales Document number as a filter criteria. We can extend the filter criteria to any column of table VBAK, but not any of the dependent tables (Like VBAP - containing plant)
    The operation guide shows an example of selection criteria for materials, filtering by the start table (MARA-MATNR) and at the same time by a dependent table (MARC-WERKS).  I want to apply the same logic to tables VBAK & VBAP. There are two problems in my way:
    1. As per operation guide, when you execute 'Define Selection Criteria', we should see three tab pages. 'Selections', 'Selection criteria' & 'Tables'. But I can see only two in my system i.e 'Selection criteria' & 'Tables'. There is no 'Selection' tab page in my system.
    2. Referring to forum Re: BPL: Filtering depending tables , we can use 'Selection Exit'. But can anybody guide me how that can be implemented and attached to the filter / process?
    Thanks & Regards,
    Audy.

    Hi again.
    Forum rules do not allow more than one question in the same thread, but anyway...
    TDMS BPL works by direct inserts in the database, so functional dependencies are not checked. This means that in VA01 you cannot create a sales order for a customer that does not exist but with BPL you can, though later of course you'll have problems when checking the sales order in VA03 (this is just an example: in practice the sales order context by default also includes the relevant customers). Unlike archiving, where you cannot delete a customer if sales orders for that customer still exist, in TDMS there are no such checks. This means there is really no sequence: in the end everything will be there.
    The direct inserts also mean that document numbers are kept the same, so existing objects with the same number are overwritten; check if that is a problem for you.
    About the last part of your question: first, don't forget that BPL does not include customizing, so make sure it is already there; second, BPL contexts are designed to include most tables related to a business process, but as you know R/3's data model is quite complex. After the copy you might realize that for your specific process maybe some tables were not considered. In that case I suggest you complain via OSS so that the context can be improved and we all profit.. ;). You must also be careful if you have Z tables that must be added to the context.
    Regards,
    Rui Dantas

  • How do I turn an image into a transparency?

    Hi,
    There's a question I've seen asked dozens or hundreds of times, and I thought I found an answer a few years ago. I've since forgotten how to do it:
    Turn an image into a transparency.
    Now, the obvious solution is to set the layer to "multiply." Yes, this is the effect I want. However, I want the layer to be transparent instead.
    Another solution is to draw an image on a transparent layer. This works great, but only applies if I create the image from scratch. I want to convert an existing image.
    Another solution is multiple steps:
    1) Copy image
    2) Click "edit in quick mask mode."
    3) Paste image
    4) Exit quick mask mode.
    5) Invert selection.
    6) Ctrl+backspace to fill selection with black, on a blank transparent layer.
    Result? The image is now transparent! However, this converts the image to greyscale! Great for linework and text, terrible for photos or art!
    In an older version of Photoshop 7, I believe I got the following to work:
    A) Follow the previous steps 1-6, creating a layer with transparency
    B) Copy the original picture to a layer above the transparency
    C) Group the layer with the transparency layer below. (Note, grouping doesn't work the same any more.)
    D) The top layer provides the colors, but the bottom layer provides the transparency.
    E) It is too light, so you take the top layer, and maximize "saturation" 100%.
    F) Merge the two layers. It retains the transparency of the bottom layer, with the hue of the top layer.
    This no longer works, because I don't know how grouping layers works anymore.
    So, I need white pixels to be transparent. Black pixels to have zero transparency. Red pixels to have zero transparency. Etc.
    Meanwhile, grey pixels are solid black, but partly transparent. Pink pixels are solid red, but partly transparent.
    All pixels are 100% saturated, and the "lightness" is determined by how transparent they are.
    So, an analogy would be printing a photo on a transparency. I need to convert an image to a transparency.
    If the image/layer were overlaid on white, it would look exactly like the original photo.
    Does anyone know how to accomplish this? Mathematically, it's easy. But I don't know about any filter, process, or method to make the conversion using CS5.
    Thanks,
    Ben

    Hello!
    I hope that I understand what you need.
    (One could just put the image on a layer, and lower its opacity, but you seem to be looking for an effect in wich the tranparency is not the same for all pixels.)
    Try this:
    1) Turn your image image as a layer (double-click it if it is a background layer) [In order to add a mask]
    2) Select all, Copy (CTRL+a, CTRL+C)
    3) add a layer mask (click the rectangle with a circle in the bottom of the layers panel) [to be able to change transparency]
    4) target the mask [so that you can past an image in it] ALT+click the mask, paste the image.
    5) Invert the colors of the mask (CTRL+I) [in order for the white to be transparent and the black opaque].
    You now have a layer whose transparency is based on the lightness of the pixels.
    Hope that's what you are after!
    Pierre

  • How do I get QT 6.5.2 image adjustments to be retained on iMovie import

    Hi,
    I produced a DVD last year using clips from my digital camera (which always need tint, contrast, brightness, and color adjustments), Quicktime, and iMovie. I sat down this weekend to do the same thing, but discovered, much to my discomfiture, that the image adjustment features are missing in Quicktime Pro 7 (on my Powerbook G4 running Mac OS 10.3.9). Luckily, I'd kept quicktime 6.5.2 because I'd heard that the upgrade would eliminate the features. However when I import a 6.5.2-adjusted clip into iMovie, the image adjustments aren't retained! Do I have to downgrade iMovie too or what? How do I get my image adjustments to stick?
    I've tried making the same adjustments using iMovie, but they don't provide nearly the amount of fine control as in quicktime 6.5.2 and I just end up making it look worse no matter how much I fiddle with it. I event tried counting how many pixels I'm moving the slider over to match the quicktime adjustments and I just can't reproduce the image quality.
    Is there a way I can get this to work without having to buy anything (which I find highly questionable since I used to be able to do this before) and if I MUST buy something, how will I know if I need to buy a new graphics card (as is mentioned on one of the support FAQs)?
    Rob

    That's all well and good, but it's so much more time consuming. I've been trying, unsuccessful, for hours to get the image just right in this one clip using the method you suggest - a process which took me under a minute using the video controls in 6.5.2 - and I can't seem to get it right. I know that iMovie used to respect the adjustments made in the video controls because I have DVDs to prove it that I made a year ago. Using the filter process you suggested has proven to be too time consuming for me. These clips need a lot of adjusting and I often go back and forth between the adjustments to tweak them based on the new image quality. Sure filters give me more options, but it just takes way too long and all I can seem to do is make it worse. I want it to work the way it used to, and as far as I can tell, there are two solutions: downgrade something or upgrade the OS and possibly install a video card. Does anyone know if a downgrade of just iMovie will work or do I need to reinstall my OS (and not update) to restore the previous abilities? Or, if I upgrade the OS, how will I know if I need the aforementioned graphics card? If I upgrade, will it work the way it used to and import into iMove with the image adjustments or will it not work that way anymore at all?
    Thanks,
    Rob

  • CRM 5.0 - Middleware issues after Support Package installation

    Hi experts,
    after upgrading the support package (from version 11 to version 17) we are facing a lot of issues.
    1. We need to synchronize custom tables from CRM to R/3.
    Can you give me an example on how to configure table SMOFQFIND/CRMMAPTAB for inbound queues CRI*?
    We know we have to do but we don't know how.
    2. We need to synchronize standard tables from R/3 to CRM.
    Do you know we have to do some new configuration in SMOFQFIND/CRMMAPTAB  table?
    With the older version of SP we were'nt asked to configure those tables.
    It has worked up to now
    Thank you in advance
    Emanuele

    Hi,
    We have the exact the same issue her using the 0DAT variable to restrict to the system date (in the filter process of the APD).
    Did anyone resolve this issue?
    Thanks,
    Fabian

Maybe you are looking for

  • The escape key in my wireless keyboard stopped working

    Dear list members, suddenly, the ESC key in my wireless keyboard stopped working. As it looks normal and all other keys are working properly, might it be a configuration problem? Could you please help me? I'm working on an iMac 27 late 2012 running O

  • Unable to connect Informatica on Sun Solaris to a SQL Server datasource

    Background* We have a fully operational OBIEE with OBIA Apps infrastructure running with Informatica PC8.6 ETL suite. Informatica services are running on a Sun Solaris 64 bit platform. We currently extract data from two Oracle EBS 11.5.10 sources. No

  • I have created an editable form which cannot be saved as a completed copy by adobe reader users.

    I have a created an editable form in indesign and acrobat, however when other users open up the form and fill it in they cannot save the completed copy. It comes up with that the user needs to click done signing, however there is no done signing butt

  • Mouse Wheel

    Hi, I'm trying to use the mousewheel to zoom into my map. When I work with the mousewheel events, I want to take the details from the event and calculate the new zoom. This all goes to pot when I get StackOverflowErrors everytime I use the mousewheel

  • Nokia 6680 Standby Mode Problem

    I cant change my Nokia 6680 Standby Mode. Its disapeard. When I go to Setting and then Standby Mode, I cant see Activate Standby Mode there anymore. Ive formated phone memroy but still I cant...Anybody has any information about this problem?