DPS 6.3.1 uid added as a search return attribute?

When I do a search against the dps and state attributes to be returned, uid is appended to them. Why? Not sure what is causing this. Thanks.

Standard ldapsearch both anon and authn with attributes set to be returned of "cn mail" for example
ds access log:
SRCH base="o=company" scope=2 filter="(cn=stan man)" attrs="cn mail uid"
Note uid appended to the return attributes in ds access log. uid is not returned as a search result. This occurs only when search is done through dps, not in a search to the ds.
However I do have a request filter that matches on uid for the connection handler. I am thinking that is what causes the uid to be appended as an attribute but not returned in the search. Either that or ds access log error.

Similar Messages

  • Adding Another LDAP Search Attribute

    Hi,
    Can you please point me to any document for adding another ldap search attribute apart from uid.
    Regards,
    Edited by: IDM1312 on Jun 9, 2008 4:28 PM

    Yes, here is what happens when your user tries to login:
    They enter some username & password. The username can be any attribute you wish it to be (email, UID, cn, etc). The actual authentication is not done using the value the user enters. This is because you need to authenticate with the user's DN. To get the DN, access manager does a lookup on the directory server to see if what the user entered exists in any of the attributes in the search alias list. If the search is successful, it returns the user's DN. Access Manager then uses the DN and password to authenticate the user.
    So, if you expect your users to enter their email address, you will want your email attribute in this list. You can have multiple values in the list, if for example you want to allow users to enter uid OR email address. I would be careful about allowing this flexibility if you are in a large organization because this will bring increased overhead to both AM & DS.
    Also, be sure that whatever attribute you use is indexed!!
    I hope this helps,
    Eric

  • Adding field as a nevigation attribute

    Hello Experts,
    I have modified a DSO to add one field Trading Business Area (0PBUS_AREA)  in the key fields part.
    Q.1 Can 0PBUS_AREA be navigation attribute of 0BUS_Area.
    Q2. Adding 0PBUS_AREA in the navigation attribute of 0BUS_AREA and removing it from Key fields part will make any difference in the output?
    Regards,
    Nirav Shah

    Hi Allen/ Beekay,
    Thanx for your reply.
    In some of the line items loaded from R/3 to BI, 0PBUS_Area is maintained, so removing it from key field causes lose of some data.
    0Bus_Area is already a key field of that DSO. so if i make 0PBUS_Area as a navigation attribute, still it works like a key field as the corrosponding main field is still available in the key fields of DSO.
    Regards,
    Nirav
    Edited by: Nirav Shah on Aug 10, 2008 9:51 AM

  • Adding Image to Search Results

    Hi
    I am dire need of adding images to search results, particularly the thumb of the resulting product(s). The tags TAG_NAME and TAG_DESCRIPTION work, but TAG_SMALLIMAGE doesn't. Any help would be much appreciated.
    Thanks, Teejay

    The CSS in http://dandeliongiftshop.businesscatalyst.com/StyleSheets/ModuleStyleSheets.css is causing that overlap.
    Search for the below style rule in the above CSS file and make suggested modifications:
    .cataloguetitle {
        color: #732772;    font-family: Arial,Helvetica,sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: normal;
        position: fixed;          --remove this
        display: block;          --add this
        text-align: center;     --remove this
        text-align: left;          --add this
    Should look better.

  • Trouble adding GoodSearch HTML search box: HTML widget doesn't work...

    I'm having trouble adding a GoodSearch search engine box to my site. I've tried the HTML widget thing and also editing the code after it publishes to a folder. Each time, I get a non-functional search box as my end result.
    The GoodSearch tech person says that iWeb might be stripping out or corrupting the Javascript code...interestingly enough, a Google search box works just fine with post code tweaking.
    Any help would be greatly appreciated!
    Here is a link to my test site where the search box (upper right corner) is non-functional: http://web.mac.com/toesproductions/KQ/Home.html
    This is the GoodSearch code:
    <script type="text/javascript">
    function GoGoodSearch_4()
    var charityid = 870537;
    var siteURL = "koreanquarterly.org/home.html";
    var openNewWindow = true;
    var searchtype = document.getElementsByName("goodsearchsearchtype4");
    var baseurl = "http://www.goodsearch.com/Search.aspx";
    var keywordsbox = document.getElementById("goodsearchkeywords4");
    if (typeof keywordsbox != "undefined")
    var keywords = escape(keywordsbox.value);
    var url = baseurl + "?Keywords=" + keywords;
    if (charityid > 0)
    url += "&CharityID=" + charityid;
    if (searchtype[1].checked)
    url += "&Site=" + escape(siteURL);
    url += "&Partner=goodsearch_syn";
    url += "&typetag=" + escape(siteURL);
    if (openNewWindow)
    window.open(url,'SearchResults','height=700,width=900,location=1,status=1,toolba
    r=1,scrollbars=1,resizable=1');
    else
    window.location.href = url;
    function CatchEnter_4(e)
    var key1 = "13";
    var x = "";
    if (document.all)
    var evnt = window.event;
    x = evnt.keyCode;
    else
    x = e.keyCode;
    if (x == key1)
    document.getElementById("goodsearchsubmit4").click();
    return false;
    else
    return true;
    </script>
    <label for="goodsearchkeywords4" style="display:none;">GoodSearch keywords to
    search for</label>
    <input
    type="text"
    name="goodsearchkeywords4"
    id="goodsearchkeywords4"
    onkeydown="return CatchEnter_4(event);"
    style="width:230px;background-image:url('http://www.goodsearch.com/gfx/titleya
    hoo_background.gif');background-repeat:no-repeat;margin-bottom:8px;"
    onclick="this.style.backgroundImage='url(http://www.goodsearch.com/_gfx/spacer.g
    if)';"
    onfocus="this.style.backgroundImage='url(http://www.goodsearch.com/_gfx/spacer.g
    if)';"
    />
    <input
    type="button"
    name="goodsearchsubmit4"
    id="goodsearchsubmit4"
    value="Search"
    onclick="GoGoodSearch_4();"
    style="margin-bottom:8px;font-family:Arial,Helvetica;font-size:11px;"
    />
    <input
    type="radio"
    name="goodsearchsearchtype4"
    value="web"
    /> Web
    <input
    type="radio"
    name="goodsearchsearchtype4"
    value="site"
    /> This Site
    Message was edited by: Andrea Lee

    iWeb does nothing to code you add in the HTML Snippet.
    Actually, iWeb does not care what you put there. It blindly saves the code in a webpage.
    http://web.mac.com/toesproductions/KQ//Homefiles/widget0markup.html
    So, now you have no excuse.
    Just edit the code in the file above until it works.
    After that, copy the code in the BODY of the page and paste in into the HTML Snippet. Otherwise it will overwrite the webpage next time you publish.

  • Problem in adding a new element having attribute & many children for XML(jd

    I m creating a new element <row id="1" > & many childrens & similar new elements with increment id are created.
    And this is added to a tag 'data'
    But after creating when i m iterating thru' the elements of the node 'data', for the new elements which i have created, if i try to set a new value for any of the chidren of 'row' tag, the value is getting set for all other newly created elements

    Let's see how you're doing this... got any code?

  • Project Server 2013 - Adding Enterprise Resouce additonal Assignemt attributes with AD sync programatically

    I Have a project server 2013 environment (Sandbox right now but on its way to a production system.) and we have AD sync set up for our enterprise resource pool.
    We have 2 situations:
    1. AD only brings certain information over (Name, email etc) and leaves other information out: Which calendar to use, base cost rate, Resource departments, Time sheet approver (their manager)
    2. IN AD we store the employee number and would like to map it to the External ID field. (And several other things need to happen - outlook out of office sync, resource can be leveled etc)
    I have not seen a way "add" this  information programmatically. Everything I see says open the resource in Project pro and update.  when you have 10,000 resources manual updates and changes are not really practical. Ideally we would
    be able to have some logic that looks at a table and as resources are added/updated the various fields are filled in as part of the "ad Sync job"
    Question: Is this possible an has anyone done it? If so how?
    Thanks
    Tasks

    Hi Bob,
    Yes, you are right.  Any extention will have to be custom code.  PS operates the same in regards to what can be accessed via AD sync over the various versions.  That part has not changed, how MS processes what it reads has changed over the
    years.
    However, another point for you, be very careful if you are really planning to add 10K users to your ERP via AD.  This will be a very taxing endeavor for your systems.
    I'm not aware of any technical limits, but you will run into practical limits with more than about 5K users in your ERP.  You had better have a very large SQL server and lots of RAM in your SharePoint web and Project App servers.  You had better
    have more than 1 Project App server, etc...  You will want to consider the impact to users when various parts of the system are loaded up with 10K resources.  Design your Farm and PWA configuration accordingly or expect to wait a lot!
    Don't expect to do this during business hours or you will kill all your users processing.  AD sync jobs go in the project server Q and can take hours to process in large numbers like that, at least initially.  Don't make any security changes of
    any kind during business hours as these will trigger a "re-sync".  Etc...
    Please read everything here:  Active Directory Resource Pool Synchronization (Project Server 2013)
    http://technet.microsoft.com/en-us/library/jj819320(v=office.15).aspx
    Other postings (Hey Stowe!) have referenced this as a starter:
    http://ps2007adressync.codeplex.com/  I know this says 2007, but perhaps you can use this as a basis for understanding what's possible or how to approach.  As I mentioned, the underlying mechanics on this point are the same.
    Clearly you will want to use the PSI - which will give you access to almost everything you need.  You may need to hook into the Event handlers after the AD sync runs or just run a batch process of your own.
    Specifically, Outlook out of office can be accomplished by sync'ing with Exchange Server 2013.  See the TechNet on that topic (near the other articles).
    Resource can be leveled sounds like your custom job along with the EMP ID mapping.
    Hope this helps,
    Thanks, Eric S. Pcubed

  • How can I modify the search code for a site I've added to the search bar?

    I've added [http://www.yourdictionary.com/ YourDictionary] to my search bar. When I put in a word (e.g., minutiae) and press [Enter], the address bar shows, http://www.yourdictionary.com/search?ydQ=minutiae and, the default search word "search" is shown on the YourDictionary page which appears, ''not ''my desired search word. When I put in my desired word in the search field on YourDictionary's page, the address bar shows, http://www.yourdictionary.com/minutiae So, it appears that FF search bar is sending the wrong code. How can I customize what it sends to YourDictionary or any site I want to search. Thanks for a great browser.

    Well, I thought that is what I was looking for. Thank you.
    Here's what I set:
    <os:Url type="text/html" method="GET" template="http://www.yourdictionary.com/{searchTerms}">
    </os:Url>
    </SearchPlugin>
    And guess what, the behavior was the same. I was a bit confused.
    I tried shutting down and restarting FireFox and then my computer. My tabs were saved. Still the same behavior. So, I kept the YourDictionary.xml on my clipboard, removed it from the search box, closed firefox, saved the xml to the search plugin subdirectory of the profile directory, closed my notepad, restarted firefox and . . . . tadaaaa ''it worked.'' Thank you!

  • Adding a constraint to an attributes of an existing object

    Hi ,
    I need to to add a CHECK constraint into a user defined object. This object exists already and used in a table , I cannot find the correct syntax to add the CHECK constraint to one of the attributes of the object.
    I have added the following, a NOT NULL constraint to it without any errors.
    ALTER TYPE USER_OBJ
    MODIFY ATTRIBUTE (ATTRB_A VARCHAR2(30) NOT NULL)
    CASCADE;
    But when I try and do the same with a CHECK (IN ) constraint I keep getting errors stating wrong syntax or expecting an operator.
    I have searched and just cannot find if what I am attempting is possible or not in Oracle 9i - Is it and if it is how does one do it ?
    Thanks for any assistance in this
    Regards
    Eoin

    If you read the documentation you will see that Oracle does not support constraints and defaults in type specifications. I think the fact that the ALTER TYPE statement works is a bug.
    Consider what happens when we try to create a type with a NOT NULL attribute...
    SQL> CREATE TYPE  user_obj AS OBJECT (attrb_a VARCHAR2(30) NOT NULL)
      2  /
    Warning: Type created with compilation errors.
    SQL> show error
    Errors for TYPE USER_OBJ:
    LINE/COL ERROR
    1/27     PLS-00218: a variable declared NOT NULL must have an
             initialization assignmentHmmm, can't do that. So let's go down the ALTER route...
    SQL> CREATE OR REPLACE TYPE  user_obj AS OBJECT (attrb_a VARCHAR2(30) )
      2  /
    Type created.
    SQL> ALTER  TYPE user_obj
      2     MODIFY ATTRIBUTE (ATTRB_A  NOT NULL)
      3  /
    ALTER  TYPE user_obj
    ERROR at line 1:
    ORA-06545: PL/SQL: compilation error - compilation aborted
    ORA-06550: line 3, column 31:
    PLS-00103: Encountered the symbol "NOT" when expecting one of the following:
    <an identifier> <a double-quoted delimited-identifier> LONG_
    double ref char time timestamp interval date binary national
    character nchar
    The symbol "<an identifier>" was substituted for "NOT" to continue.
    ORA-06550: line 0, column 0:
    PLS-00565: USER_OBJ must be completed as a potential REF target (object type)
    SQL>  ALTER  TYPE user_obj
      2      MODIFY ATTRIBUTE (ATTRB_A  VARCHAR2(30)  NOT NULL)
      3  /
    ALTER  TYPE user_obj
    ERROR at line 1:
    ORA-22324: altered type has compilation errors
    ORA-22328: object "APC"."USER_OBJ" has errors.
    PLS-00719: only widening of attribute 'ATTRB_A' constraints is allowed
    ORA-06550: line 0, column 0:
    PL/SQL: Compilation unit analysis terminated
    SQL>  ALTER  TYPE user_obj     MODIFY ATTRIBUTE (ATTRB_A  VARCHAR2(31)  NOT NULL)
      2  /
    Type altered.Anything with so wacky a syntax just cannot be correct. Was the effort worth while?
    SQL> declare
      2   u user_obj;
      3  begin
      4   u := USER_OBJ('APC');
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> declare
      2   u user_obj;
      3  begin
      4   u := USER_OBJ(NULL);
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SQL> desc user_obj
    Name                                      Null?    Type
    ATTRB_A                                            VARCHAR2(31)
    SQL> That'll be a "No" then.
    Cheers, APC

  • SCCM 2007 Added update to search result, but don't wont to install them

    Hello everybody,
    I have some problem with my sccm 2007. Sccm added updates on the client machine but don't wont to install them. Here is my windowsupdate.log. Any help would be appreciate!
    2014-02-03 12:04:06:825
    784 350
    AU AU received policy change subscription event
    2014-02-03 12:04:36:861
    2200 1980
    COMAPI -------------
    2014-02-03 12:04:36:861
    2200 1980
    COMAPI -- START --  COMAPI: Search [ClientId = CcmExec]
    2014-02-03 12:04:36:861
    2200 1980
    COMAPI ---------
    2014-02-03 12:04:36:907
    2200 1980
    COMAPI <<-- SUBMITTED -- COMAPI: Search [ClientId = CcmExec]
    2014-02-03 12:04:36:907
    784 bb4
    Agent *************
    2014-02-03 12:04:36:907
    784 bb4
    Agent ** START **  Agent: Finding updates [CallerId = CcmExec]
    2014-02-03 12:04:36:907
    784 bb4
    Agent *********
    2014-02-03 12:04:36:907
    784 bb4
    Agent  * Include potentially superseded updates
    2014-02-03 12:04:36:907
    784 bb4
    Agent  * Online = Yes; Ignore download priority = Yes
    2014-02-03 12:04:36:907
    784 bb4
    Agent  * Criteria = "(DeploymentAction=* AND Type='Software') OR (DeploymentAction=* AND Type='Driver')"
    2014-02-03 12:04:36:907
    784 bb4
    Agent  * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-02-03 12:04:36:907
    784 bb4
    Agent  * Search Scope = {Machine}
    2014-02-03 12:04:38:954
    784 bb4
    PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-02-03 12:04:38:954
    784 bb4
    PT  + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://sccmprod.domain.local:80/ClientWebService/client.asmx
    2014-02-03 12:04:47:891
    784 bb4
    Agent WARNING: Failed to evaluate Installed rule, updateId = {189A8F50-0C3A-4FDF-8BC2-BC23A3EB11FB}.101, hr = 80242013
    2014-02-03 12:04:50:506
    784 bb4
    PT +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-02-03 12:04:50:506
    784 bb4
    PT  + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = http://sccmprod.domain.local:80/ClientWebService/client.asmx
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {4AE85C00-0EAA-4BE0-B81B-DBD7053D5FAE}.104 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {726B7201-862A-4FDE-9B12-F36B38323A6F}.104 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {C5306702-92EC-4E99-9C77-2B70FB60078B}.101 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {7647D502-6E6F-4B6F-8E17-030168FB344E}.202 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {26928006-BF0E-4806-B5AA-489F64CC863A}.201 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {C5171A07-B024-44B4-B74A-A2EC2EEC177C}.102 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {505FDA07-B4F3-45FB-83D9-8642554E2773}.200 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {E1C9C708-3EA9-411C-A7C1-AC8AAC284912}.200 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {1FE1AC0A-7B22-470B-A317-5DA507385409}.101 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {9DB82D0B-5611-4BC1-A4B8-432FE1A3CC43}.201 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {F2C4640C-7687-4250-83D0-62DE1570DD9B}.103 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {567D7A0D-7F11-4C75-BA80-E7DD1B88FBE3}.105 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {D5FD720E-0F2C-4363-AA87-6AD4A6D11B0E}.106 to search result
    2014-02-03 12:04:51:090
    784 bb4
    Agent  * Added update {BE1A890E-593C-4EB2-9ADE-A09B4E8AD0D5}.202 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {22091E0F-3395-4CF9-9F3D-4AC28BD868AD}.201 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {AEF6280F-8C4D-4804-9913-407582227E75}.202 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {E923690F-B6CD-442D-8CBA-EA162C00FB18}.202 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {55F1750F-564A-4E7C-962C-289818F647DD}.202 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {48993210-7C75-4DC4-917C-0BF6CCA5C60D}.106 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {FB2F4410-5A9D-4D71-A766-A39C095ADD2A}.106 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {609AEF10-0A3C-4484-BD38-86BB38E3EFA3}.104 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {A1893712-C814-4AC9-AEB3-4292A63EF2B8}.102 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {965F4712-FC2F-4AF6-A80A-909211E12B74}.101 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {FDA58512-32F3-4A5D-A5C4-05A193E037D4}.103 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {B4413613-7062-4F6B-A1E4-7A957409A51F}.102 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {C8514613-8E11-41C0-919C-DB7ECC292402}.100 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {9334B915-72B1-4F60-8885-4C327D7CC433}.201 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {3E606416-36F7-4CAC-86A1-C3839368767E}.102 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {6CFB7D17-F556-423A-B052-0A1F0463572E}.201 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {53F2CC17-4951-4D4C-920F-4E44445F1EE2}.201 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {3A6D1E19-0A32-4128-A2EB-72FCAC4C058C}.102 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {3F15001A-A051-4CEF-8642-FF241D063C9A}.101 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {6AA7561A-7EBF-4601-B040-D73804C38356}.101 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {B89EC71A-1103-4EA7-B123-1C4D2E23F97A}.101 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {6FF0041B-435E-42BA-87DA-9F021C655E41}.103 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {594A6A1B-58C4-4664-B5D1-4337F8633458}.105 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {86C0F41D-6B1D-43D1-97D6-023C5B7C3343}.201 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {5A88841E-DE21-4595-A5E4-49AE13640D3C}.104 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {3F6E4422-97A1-4485-A586-104B65B36C76}.102 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {07B23623-9428-438E-8867-7348BBB95AAF}.202 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {023BB023-490F-4DF3-BCAA-9521EE8B5847}.201 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {A2CDBA23-37CF-48C6-8182-16305985A886}.102 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {9E280124-F061-4371-8DBE-0F960957277D}.103 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {FE133824-41AF-4F69-B146-B8EB6A6505C0}.201 to search result
    2014-02-03 12:04:51:091
    784 bb4
    Agent  * Added update {1BB3DE24-0D76-4D59-9B9E-556722BFE852}.101 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {175E3625-729A-4B66-AA17-BF492524A1C5}.102 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {E023B326-53E4-4DC1-AF6B-FE28290F7D9B}.104 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {6E03D226-B005-4BE7-8254-7C1760886BFD}.102 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {3D250F27-F8DA-4616-82E8-B3EC16AF2DBC}.102 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {AD43B627-B2C6-4B26-BEEF-02BDB1C4A5FE}.102 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {C7DB1D28-9160-4E63-9EAE-2C7DF322DC00}.105 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {21ED7B2A-F1CA-4865-9FFE-AC527BFDBD8C}.200 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {8D7C892A-0F79-406C-91ED-2A3B2CBE122D}.101 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {1C82B52A-6679-4D70-BE61-BC3E1F6AD4F5}.102 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {6547EC2A-8A7C-467B-9045-0DE89B6856B5}.104 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {202C2C2C-9BB6-453B-9A75-3E80F1AD981D}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {81A49D2C-314B-4A5A-BB6C-9D52A2707735}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {41346B2E-35C4-45C5-9F82-9B70FE9253CB}.200 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {D0FBAC2F-D08F-4A7B-A826-92B1C5AE0BC5}.200 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {AF347830-F2BA-44FB-9429-539921038509}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {A448DD32-C91B-414D-9EFE-465A92AC4642}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {E31F6B34-7F48-4226-A566-04ECC2CBDE48}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {7725B934-3206-441D-90A6-824BAFC0F4EF}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {E0840035-6B21-4554-A6E9-2FFEBC99D9AA}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {70F4F236-0248-4E84-B472-292913576FA1}.102 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {EAA48E38-404A-479B-8957-D7D50AF86918}.101 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {0989F038-54B4-4085-81EA-AA078B633748}.200 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {546CD439-B7C8-45E9-BE72-71493E296807}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {3B82CD3B-0163-4185-8FF5-7D18C05D2267}.102 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {66EE0B3C-1093-401B-8F21-70CD31FD46BA}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {84A1813C-A410-42C4-B875-7CA1C4A5ACC6}.101 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {C499223D-2F22-4626-BBE5-F5A35E7A5854}.204 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {EC1C253D-A3C5-49FB-A56A-9F2EEB223A1D}.200 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {D5B0233E-30E5-4C79-844C-8D07FCADF5CE}.103 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {2655493E-0518-4FB7-9AE6-221D3FAF2C9D}.101 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {3739A53E-845D-4945-9A5F-F5CE38AFCB56}.102 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {2908BF3E-E6D4-4789-9908-E03A0A29AE8E}.201 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {50E1A53F-E351-47A0-BAD4-1B0D223AE629}.200 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {0C737C40-B687-45BC-8DEB-83DB8209B258}.101 to search result
    2014-02-03 12:04:51:092
    784 bb4
    Agent  * Added update {62498940-D04D-4769-AF9A-F4CEC3A927D4}.104 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {48BEEF41-9D2D-4E72-9A61-59F98B12C07A}.204 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {CE09B442-0473-400A-82AE-9CD91C8D76EA}.200 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {0EEBE242-F0AD-4A1A-8796-4BFB54642198}.202 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {F3C64D43-89FB-452F-A7D5-60C1DC0ECF96}.102 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {41987343-1244-4F4E-8585-B1CCA27E48BE}.104 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {B9866145-A3EC-4B3C-A3D2-7203F04DF9FD}.101 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {CC74BC46-3001-4DB6-A714-B26660C0DFDB}.102 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {6D435D48-E94B-4C1F-AF51-E57CF310271E}.202 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {5CC5D348-10B2-4EB6-B446-B0F814D5B80E}.101 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {ED981249-8D8F-42A1-87DB-0AB5C07430B2}.201 to search result
    2014-02-03 12:04:51:093
    784 bb4
    Agent  * Added update {F939194A-E1AE-44D7-A6CA-33FE0891CE46}.102 to 
    2014-02-03 12:04:51:108
    784 bb4
    Agent  * Found 276 updates and 71 categories in search; evaluated appl. rules of 1302 out of 2025 deployed entities
    2014-02-03 12:04:51:149
    784 bb4
    Agent *********
    2014-02-03 12:04:51:149
    784 bb4
    Agent **  END  **  Agent: Finding updates [CallerId = CcmExec]
    2014-02-03 12:04:51:149
    784 bb4
    Agent *************
    2014-02-03 12:04:51:170
    784 bb4
    Report REPORT EVENT: {1E4B028B-0DFE-436E-AF9F-3F42A300EEC6}
    2014-02-03 12:04:51:127+0100 1
    147 101
    {00000000-0000-0000-0000-000000000000}
    0 0 CcmExec
    Success Software Synchronization
    Windows Update Client successfully detected 276 updates.
    2014-02-03 12:04:51:170
    784 bb4
    Report REPORT EVENT: {46820305-3D31-42E7-9827-D538BDF0BA2D}
    2014-02-03 12:04:51:127+0100 1
    156 101
    {00000000-0000-0000-0000-000000000000}
    0 0 CcmExec
    Success Pre-Deployment Check
    Reporting client status.
    2014-02-03 12:04:51:172
    784 bb4
    Report CWERReporter finishing event handling. (00000000)
    2014-02-03 12:04:51:172
    2200 1980
    COMAPI >>--  RESUMED  -- COMAPI: Search [ClientId = CcmExec]
    2014-02-03 12:04:51:350
    2200 1980
    COMAPI  - Updates found = 276
    2014-02-03 12:04:51:350
    2200 1980
    COMAPI ---------
    2014-02-03 12:04:51:350
    2200 1980
    COMAPI --  END  --  COMAPI: Search [ClientId = CcmExec]
    2014-02-03 12:04:51:350
    2200 1980
    COMAPI -------------
    2014-02-03 12:04:56:149
    784 bb4
    Report CWERReporter finishing event handling. (00000000)

    Hi friend,
    I like to answer on postings like yours, its a good exercise for my work and its really cool to have some topics where all people here will contribute.
    JohnnyS is a friend of mine which is working with me at our office and we talked a little bit about your problem.
    So his opinion was to use the UBCD4Win and work with that option.
    The advice of him was:
    Grab a USB-HDD case and put one drive in it and boot with UBCD4Win. Then copy all important data to a folder on the external HDD and remove the uneeded data on it. Just the important data!
    Make a backup of your data on the external drive from both HDDs. I hope you will have enough free space.
    Format the drive in your machine and recover it. Install the system as usually on your first HDD.
    Then put the data to where you want.
    So I am not sure if I understanded your question right, a little bit more explanation would be useful. I think that will be a long thread. ;)
    Greets

  • Since I installed the latest version of Firefox, my Google search system has forgotten about my past entries and is not adding on each search topic etc as I search. Is this a GOOGLE or a Firefox issue?

    Example. I searched for NYT.COM. In past the system remembers and when I start typing ny it immediately fills in nyt.com and other options related to nyt.

    Make sure that you allow pages to choose their colors and that you haven't enabled High Contrast in the Accessibility settings.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    *http://kb.mozillazine.org/Website_colors_are_wrong
    *https://support.mozilla.org/kb/Websites+look+wrong

  • Adding field in search criterion

    I have got an issue,we execute VD03 to display the customer record, now when I hit F4 to look out for the customer number... I can select a customer based on several categories such as "Customers (general code), customers (by company code), customers by country " and we also have one custom one as ****custom and now I need to add an extra field  field in this custom category. so can you please help me in where can I add the logic to add field.
    Thank you.

    HI
    You must customize the serch Help from se11 transaction.
    Copy the standard and set your new matchcode for the your transaction
    regards
    Marco

  • Is there any way of adding a different search engine ?.

    Have just downloaded Safari to give it a try.
    One of the first things I tried was changing the default search engine to Yahoo UK (easy in Firefox). Bt it looks as if you can't add new search engines to the three provided.
    Am I wrong (hope so) ?
    Eddie

    Can't speak for the Windows version, but on the Mac you're limited to the three defaults.
    Matt

  • Adding a new Search Field in Advance Search

    Hi,
    In 1 of the advance search regions, :
    We have a search panel in the adv search RN. In the poplist we have say 10 fields. We can add either of these 10 fields and use for searching. Now I want to add another search field ( an attribute from a table).
    Question 1 :*
    How to find the underlying VO from which the search fields are coming. I saw the page ( about this page) but couldn't find anything.
    Question 2:*
    Suppose I get the VO (resolution from above question) , if my extra filed is not there I add it in the VO ( VO extn), now how to configure this new field to the existing search panel fields?
    Thanks

    Hi,
    I think search fields are not mapped to any VO. If this is your standard page, check the standard controller. It might be getting values from pageContext.getparameter().
    You can create a new item using 'Personalize this Page' option and extend your controller to set where clause for the same.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I type in the search box; suggestions appear underneath; when i click on one of them, they all disappear, and nothing is added into the search box.

    When I type a phrase into the Google search window, a number of suggestions automatically appear underneath as I am typing. However, when I click on one of these suggestions, there is no change to what is in the search window, and nothing further happens. I have tried every option under Tools|Privacy, and I've tried everything on Google options but nothing works. Normally, when I click on one of the offered suggestions it would appear in full in the search window. What do I do?

    Do you have that problem when running in the Firefox SafeMode?<br/> ''A troubleshooting mode.''<br />
    1.You can open the Firefox 4.0 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut. <br />
    2. Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut to open it again.''
    If not, see this: <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

Maybe you are looking for

  • Problem with Audio on HP Envy 6-1130sw (C6F62EA)

    Hello everyone. I have a problem with audio on my ultrabook HP Envy 6. Sometimes when I try to play music there are no low tones and music plays really silent... And then when I restart PC problem dissapears and music plays fine... I thought there is

  • Ipod nano, white screen of death

    my ipod nano4gb went to a white screen, still plays and i can update, but only a white screen, makes playback by menu memory a bit challenging. any event, went to Man Beach apple store for repair, booked a genius, spoke with buddy and a replacement i

  • SQL Server - How to make SELECT block with TRANSACTION_SERIALIZABLE

    I'm in the process of switching an application to use SQL Server. Is there anyway of making a SELECT in SQL Server implement a lock (and therefore also get blocked) similar to an INSERT or UPDATE? Essentially, I have code that tracks a transaction ID

  • Emoji in Pages

    Hi there, I was trying to enter some of the new Emoji characters in Lion into a Pages document, but all it displays are blank spaces. It correctly changes the font, but doesn't display anything. Entering Emoji in TextEdit works (through the special c

  • Error 1714 when re-installing iTunes

    I had an issue removing iTunes and now when I re-install I get an error: "1714: The older version of iTunes cannot be removed. Contact your technical support group" it then gives another error: "error: - 1603 Fatal error during installation" I've gon