Roles Setting and Removing Resource Attributes

Hello All,
I have a quick question (Which I hope has a quick answer). I am trying to set up a role, so that when it is assigned to a user, sets an attribute value on an LDAP resource. Then, when the role is removed from the user, the attribute value is cleared. When setting up the role, I specified the resource as assigned, and then set the attribute. When I set the role on a user, it is successfully setting the value in the attribute. When I remove the role from the user, it is not removing the value in the attribute. Is there an easy way to do this?
Thanks!

Hi,
When setting the RoleAttribute you need to set "Authoritive Set to Value, Clear Existing", then when the Role is removed from the user the attribute value is deprovisioned. Unfortunately this also has the affect of removing any other value that the attribute may have (especially true since many LDAP attributes are multi-valued).
HTH,
Paul Walker

Similar Messages

  • Modifying Version Set and/or Stack Attributes

    My Photoshop Elements (PSE) 5.0 catalog has many version sets and stacks.
    Contrary to my expectation, I recently learned that that edits to the top photo's attributes (e.g. Date, Caption, Notes, Tags, etc.) did not translate through to the underlying photos of the associated version set or stack. As a consequence, subsequently moving a different photo to the top of a stack or version set can lead to loss (or at least displacement) of these important attributes.
    Is there a way to get PSE to automatically copy attribute changes through to the underlying photos or at least to ask the user if (s)he wants edits to translate through the version set or stack? If this feature is not currently available, I think it would be a significant value-added enhancement to the product.

    Users tend to use software differently and to have differing needs and preferences. Barb's point is valid in that, should Adobe provide the ability to assign attributes 'through' a version set or stack, the feature would warrant a user prompt or preference setting to acomodate user's differing needs and preference.
    Exceptional software, like PSE, anticipates and supports user needs in an efficient and predictable manner. Version sets, almost by definition, can be expected to have the same date, time, tags, captions and notes. Stacks - perhaps to a lesser degree.
    Forcing users to perform tasks in a specified sequence (e.g. adjusting attributes before version sets or stack generation), or to expand stacks or version sets to assign attributes through to underlying photos, seems unnecessarily tedious and inconvenient. For instance, expanding version sets and stacks forces users to aboard current search criteria.
    Anyone who has imported large batches of scanned negatives or slides which contain no meaningful metadata (with PSE set to auto-correct red-eye and to recommend stacks) knows how easy it is to generate version sets and stacks BEFORE the user begins the process of attribute assignment or correction.

  • Workflow not working correctly when removing resource attributes

    (Comment: I have to say that posting to this forum is a real pita. It takes me upwards of 20 minutes to figure out why various words are not allowed, with no indication of what is wrong. For some reason ba lt im ore is a forbidden word so I replaced it with FirstLocation.)
    I have a bulk action script that calls a workflow (below) to remove some locations from a users resource. What is happening is that it loops through and correctly removes 'FirstLocation'. Then it loops through the second pass and correctly removes 'Portland', however, on the third pass, Portland comes back - it's like the removal doesn't take for some reason. Is there something I should be updating differently to get this to remove the locations correctly?
    This is the Task Definition:
    <Variable name='remLocation'>
      <list>
        <s>FirstLocation</s>
        <s>Portland</s>     
        <s>Chicago</s>
        <s>Charleston</s>
        <s>Cleveland</s>
        <s>Lynnfield</s>
        <s>Roanoke</s>
        <s>Worthington</s>
        <s>Yorktown</s>
        <s>Hawthorne</s>
      </list>     
    </Variable>
    <Variable name='newJustification'>
      <s>Obsolete Locations remd</s>
    </Variable>     
      <Activity id='0' name='start'>
        <Transition to='Initialize' />
        <WorkflowEditor x='43' y='10' />
      </Activity>
      <Activity id='1' name='Initialize'>
        <Action id='0' name='Set variables'>
          <expression>
            <block name='INIT' trace='true'>
            </block>
          </expression>
        </Action>
        <Transition to='Make Account Changes' />
        <WorkflowEditor x='105' y='10' />
      </Activity>
      <Activity name='Make Account Changes'>       
        <Action id='1' name='update lh account'>
          <expression>
          <block trace='true'>
            <!-- if locationMap contains one of remLocation, delete that location and all attributes -->       
            <defvar name='tmpLocMap2'>
              <ref>user.accounts[FACILITIES].properties.locationMap</ref>
            </defvar>
            <!-- for all elements in the remLocation list -->
            <dolist name='elLoc'>
              <ref>remLocation</ref>
              <block trace='true'>
              <set name='tmpLocMap2'>           
                <!-- if element is in the list, ie, if the index is not -1 (not in list) -->
                <cond>
                     <neq>
                    <indexOf>
                      <ref>user.accounts[FACILITIES].properties.locationMap[*].name</ref>                
                         <ref>elLoc</ref>                       
                       </indexOf>
                    <i>-1</i>
                  </neq>                          <!-- then rem it from the object list -->
                  <block trace='true'>
                  <!-- get the index # -->
                  <defvar name='objectIndexNo'>
                      <indexOf>
                        <ref>user.accounts[FACILITIES].properties.locationMap[*].name</ref>                         
                            <ref>elLoc</ref>               
                      </indexOf>                   
                    </defvar>
                    <rem>
                      <filternull>
                        <ref>user.accounts[FACILITIES].properties.locationMap</ref>
                      </filternull>                       
                      <get>
                        <filternull>
                          <ref>user.accounts[FACILITIES].properties.locationMap</ref>
                        </filternull>
                        <ref>objectIndexNo</ref>                         
                      </get>                         
                    </rem>
                  </block>                   
                  <ref>tmpLocMap2</ref>                   
                </cond> 
              </set> 
                      <set>                   
                        <ref>user.accounts[FACILITIES].properties.locationMap</ref>                     
                        <ref>tmpLocMap2</ref>
                      </set>                 
                    </block>             
                  </dolist>
                  <set>
                    <s>user.accounts[FACILITIES].properties.justification</s>
                    <ref>newJustification</ref>
                  </set>
                  <set>
                    <s>user.accounts[FACILITIES].justification</s>
                    <ref>newJustification</ref>
                  </set>           
                </block>
              </expression>
            </Action>
            . . . and here's some of the debug code showing what happens:
    <dolist name='elLoc'>
      <ref>remLocation</ref> --> [FirstLocation, Portland, Chicago, Charleston, Cleveland, Lynnfield, Roanoke, Worthington, Yorktown, Hawthorne, ...truncated...]
      <block trace='true'>
        <set name='tmpLocMap2'>
        </set> --> null
        <set name='tmpLocMap2'>
          <cond>
            <neq>
              <indexOf>
                <ref>user.accounts[FACILITIES].properties.locationMap[*].name</ref> --> [FirstLocation, Shelbyville, Portland, Syracuse]
                <ref>elLoc</ref> --> FirstLocation
              </indexOf> --> 0
              <i>-1</i> --> -1
            </neq> --> 1
            <block trace='true'>
              <defvar name='objectIndexNo'>
              </defvar> --> null
              <rem>
                <filternull>
                  <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [GenericObject:FirstLocation, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
                </filternull> --> [GenericObject:FirstLocation, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
                <get>
                  <filternull>
                    <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [GenericObject:FirstLocation, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
                  </filternull> --> [GenericObject:FirstLocation, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
                  <ref>objectIndexNo</ref>
                    [<defvar name='objectIndexNo'>]
                      <indexOf>
                        <ref>user.accounts[FACILITIES].properties.locationMap[*].name</ref> --> [FirstLocation, Shelbyville, Portland, Syracuse]
                        <ref>elLoc</ref> --> FirstLocation
                      </indexOf> --> 0
                    [</defvar>] --> 0 --> 0
                </get> --> GenericObject:FirstLocation
              </rem> --> [GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
            </block> --> [GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
          </cond> --> [GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        </set> --> null
      my comment: At this point FirstLocation has been remd successfully from tmpLocMap2.
      <remAll>
          <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [GenericObject:FirstLocation, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        </remAll> --> [GenericObject:FirstLocation, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        <set>
          <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [GenericObject:FirstLocation, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
          <ref>tmpLocMap2</ref> --> [GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        </set> --> null
      </block> --> null
      <block trace='true'>
        <set name='tmpLocMap2'>
        </set> --> null
        <set name='tmpLocMap2'>
          <cond>
            <neq>
              <indexOf>
                <ref>user.accounts[FACILITIES].properties.locationMap[*].name</ref> --> [Shelbyville, Portland, Syracuse]
          my comment: the locationMap above shows that FirstLocation was successfully remd.
                <ref>elLoc</ref> --> Portland
              </indexOf> --> 1
              <i>-1</i> --> -1
            </neq> --> 1
            <block trace='true'>
              <defvar name='objectIndexNo'>
              </defvar> --> null
              <rem>
                <filternull>
                  <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
                </filternull> --> [GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
                <get>
                  <filternull>
                    <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
                  </filternull> --> [GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
                  <ref>objectIndexNo</ref>
                    [<defvar name='objectIndexNo'>]
                      <indexOf>
                        <ref>user.accounts[FACILITIES].properties.locationMap[*].name</ref> --> [Shelbyville, Portland, Syracuse]
                        <ref>elLoc</ref> --> Portland
                      </indexOf> --> 1
                    [</defvar>] --> 1 --> 1
                </get> --> GenericObject:Portland
              </rem> --> [GenericObject:Shelbyville, GenericObject:Syracuse]
            </block> --> [GenericObject:Shelbyville, GenericObject:Syracuse]
          </cond> --> [GenericObject:Shelbyville, GenericObject:Syracuse]
        my comment: and here Portland was successfully remd.
        </set> --> null
        <remAll>
          <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        </remAll> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        <set>
          <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
          <ref>tmpLocMap2</ref> --> [GenericObject:Shelbyville, GenericObject:Syracuse]
        </set> --> null
      </block> --> null
      <block trace='true'>
        <set name='tmpLocMap2'>
        </set> --> null
        <set name='tmpLocMap2'>
          <cond>
            <neq>
              <indexOf>
                <ref>user.accounts[FACILITIES].properties.locationMap[*].name</ref> --> [Shelbyville, Portland, Syracuse]
          my comment: but above, when referenced, Portland hasn't really been remd. Why not??
                <ref>elLoc</ref> --> Chicago
              </indexOf> --> -1
              <i>-1</i> --> -1
            </neq> --> 0
            <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
          </cond> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        </set> --> null
        <remAll>
          <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        </remAll> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        <set>
          <ref>user.accounts[FACILITIES].properties.locationMap</ref> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
          <ref>tmpLocMap2</ref> --> [null, GenericObject:Shelbyville, GenericObject:Portland, GenericObject:Syracuse]
        </set> --> null
      </block> --> null
      <block trace='true'> Any suggestions would be appreciated. Thanks much!
    Edited by: user12836258 on Sep 7, 2011 10:14 AM
    Edited by: user12836258 on Sep 7, 2011 10:15 AM

    it is working over there and changing the status also.
    But when through workflow same values come, it didnt work
    Check the authorizations associated with WF-BATCH user, i feel like it can be a authorization issue, as you were saying that it is working fine from the BOR method and when it is trying to update the same through workflow the workitem is gogin into error state.
    Make sure that teh WF-BATCH user is having SAP_ALL

  • Editing (Setting and Removing) CLASSPATH on Snow Leopard

    I am trying to learn XSLT, and so I am installing Xerces and Xalan - but I have to add certain .jar's to the classpath. This is extremely easy on the PC, but how do I change this on the Mac? I would like to set it into an environment variable if possible? I have looked through so many similar questions on the Web but have yet to find a single solid answer. Your help is much appreciated. Thanks, in advance.
    ~CR

    ChrisPuentes wrote:
    HI, all-
    I have an older MacBook Air running Snow Leopard that won't support Lion.  I've seen two or three posts out there telling me how to set up my iCloud emial on my non-Lion machine, but none of them are working.  Besides multilpe password issues, which I'm not getting anymore, I'm now getting "the server returned the error: The connection to the server p02-imap.mail.me.com on port 143 timed out".  Any ideas???
    Also-the directions for setting up my IMAP iCloud email in Outlook 2007 are very simple and clear, yet it does not work.  During 'test account settings' in the account setup, I'm getting two errors:
    1.  Log onto incoming mail server (IMAP)-the connection to the server failed
    2.  Send test email message: None of the authentication methods supported by this client are supported by your sever. 
    Any help would be appreciated!  PS- on my MBAir I'm running OSX 10.6.8
    Thanks,
    Chris
    Port 143 is incorrect, read the instructions contained in the link Julian posted

  • How to remove an attribute in Context when session is invalidated?

    I set a attribute in the context when i login to my application. When i logoff from my application, i remove the attribute from the context.
    But if i close my browser or encounter some error, then the session is not invalidated. The container waits till the session gets timed out and then it invalidates the session. But the attribute that i had set to the context is still there. The next time i login, i check whether the attribute is still available in context. It is.
    Scenario : Assume that i have a application and if i open some thing eg: model, then i update the attribute "read only" flag in the context as "true", so that no one can edit the model on which i am working on.
    When some other user logs in and tries to edit my model, he will get an error stating that the model is read only. Now if i log off, then i update the read only flag as false, so that some body can edit the same.
    But if i close my browser or if i encounter some error, then i am not making the read only flag as false. So even if i am not worling, still the read only flag is set to true in the context. So no one else can work on the model.
    My question is, is there a way to edit the context attribute, when i abruptly close my browser window? Is there a way to handle the dangling session objects and invalidate them immediately?

    Use the HttpSessionListener to determine when the session is destroyed and remove the attribute then. Be aware that aplication attributes are shared by all sessions and can cause problems in a multi-user environment.

  • Role sets. Best practices?

    We have about kinda low-level 50 roles in the system and they combined in sets. Role means a certain business function (open account, cut a check, transfer money, hire a teller). I plan to create several LDAPSubEntry with pre-populated nsRoleDN (one per role set) and use classic CoS to copy nsRoleDN to users based on employee type.
    Any drawbacks of this approach? Something should I be aware of?

    that is quite exactly the purpose of roles combined with CoS.
    Note that Role attributes are indexed by default and so performance should not suffer too much but CoS attributes are not indexed and so searches based on those attributes will result in significant hit on performance. This is just a reminder and doesn't mean that what you are doing is wrong. Just bear in mind that you shouldn't rely too heavily on searches on your CoS attributes.
    regards
    -=arnaud=-

  • Need to Add and Remove Columns of ADF Read Only table from Backing bean

    I have a scenario where I am trying to Populate TransientVO which is shown has a ADF Read Only Table in page.
    I have couple of Check Boxes Based on their selection I am trying to render and hide certain Columns.
    But the Issue which I am facing is only the Column Header seems to change where as the Rows and Values doesnt..
    even If I apply the expression language rendering condition on the outputText inside those columns.. ..
    So I am thinking to add and remove VO Attribute columns to the table from backing bean.
    Need some sample code snippet or a better design to achieve this. Its kind of urgent too...having an aggressive deadline :(
    Please chip in People..
    Thanks in Advance .
    TK

    Table Code..
    <af:table value="#{bindings.InventoryGridTrans.collectionModel}"
                                    var="row"
                                    rows="#{bindings.InventoryGridTrans.rangeSize}"
                                    emptyText="#{bindings.InventoryGridTrans.viewable ? 'No data to display.' : 'Access Denied.'}"
                                    fetchSize="#{bindings.InventoryGridTrans.rangeSize}"
                                    rowBandingInterval="0" id="t4"
                                    partialTriggers="::sbcSales ::sbcUsage ::cb1">
                            <af:column sortProperty="Period" sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Period.label}"
                                       id="c38">
                              <af:outputText value="#{row.Period}" id="ot33"/>
                            </af:column>
                            <af:column sortProperty="Past12SalesCount"
                                       sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Past12SalesCount.label}"
                                       id="c29"
                                       rendered="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}">
                              <af:outputText value="#{row.Past12SalesCount}"
                                             id="ot40"
                                             rendered="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}"
                                             visible="#{backingBeanScope.IndexPageBackingBean.onUsage != true and backingBeanScope.IndexPageBackingBean.onSales == true}">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.InventoryGridTrans.hints.Past12SalesCount.format}"/>
                              </af:outputText>
                            </af:column>
                            <af:column sortProperty="Past12UsageCount"
                                       sortable="false"
                                       headerText="#{bindings.InventoryGridTrans.hints.Past12UsageCount.label}"
                                       id="c40"
                                       rendered="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}"
                                       visible="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}">
                              <af:outputText value="#{row.Past12UsageCount}"
                                             id="ot47"
                                             rendered="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}"
                                             visible="#{backingBeanScope.IndexPageBackingBean.onUsage == true and backingBeanScope.IndexPageBackingBean.onSales != true}">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.InventoryGridTrans.hints.Past12UsageCount.format}"/>
                              </af:outputText>
                            </af:column>
                            </af:column>
                    </af:table>

  • Unlink and remove role = delete user???

    Hi All,
    We are using Sun IDM 7.1.1.21 and have run into this problem. I believe it's a product bug because it doesn't make any sense. We have users in an AD resource, and they are linked to that resource in IDM using a role. If, for some reason, the user is deleted from AD, and re-setup we have to "re-link" the user because the "accountGUID" attribute has the wrong GUID for the user and IDM doesn't like that. We are doing this using Recon. When recon runs, and catches this user, the situation comes back as "Confirmed", which is fine, we are using a per account workflow to handle the changes. We then compare the GUIDs of the objects in the workflow, if they are different, we would unlink the IDM account and relink it to the new GUID. We are setting the following options on the unlink.
    <set name='options.unlinkTargets'>
    <list>
    <s>AD</s>
    </list>
    </set>
    <set name='options.deleteAccounts'>
    <s>false</s>
    </set>
    and we remove the role, becuase if we do not, nothing happens. When the user object is checked in, it gets deleted from the resource. I'm sure this is happening becuase the accountID DOES exist (when the user is re-setup on the back-end the same DN is given to the user). Obviously this result is undesireable. So now I have 2 questions.
    1. Am I doing this wrong?
    2. Why would IDM delete an account when deleteAccounts and unlinkTargets are explicitly set on the checkin?

    OK. I figured out where the problem was. Renaming the accountGUID without removing the role only caused a "rename account to same name" error. I was not setting the correct options when removing the role. I needed to set:
    <set name='options.noDelete'>
    <s>true</s>
    </set>
    <set name='options.deleteUser'>
    <s>false</s>
    </set>
    This did the trick. The roles were removed and the user unlinked without any harm done to the resource account. I was then able to re-add the roles and relink to the existing resource account without a problem.
    Thanks.

  • Issue Setting Resource Attributes via Workflow Process

    I'm currently trying to set resource attributes via a workflow process, but for whatever reason the attribute is not detected as "changed" and the update object has nothing about the attribute. I'm wondering if I'm just doing something wrong with the way I'm setting it, or if I'm missing a piece to apply the upate.
    What I'm doing is...
    1. Checking out the user view
    2. updating the attribute via code something like this...
    <set name='user.accounts[ldap].attributeIWantToChange'>
    Logic in here
    </set>
    3. then I'm checking the view back in.
    Anyone know why this isn't working(I can set other attributes like waveset.roles fine this way)?
    Edited by: UNO-AD-HM on Jul 6, 2009 12:54 PM

    Figured it out, have to load a different form in when I check the view out, the tabbed user's form will not update resource attributes.

  • I did everything lllaass suggested and removed most of the itunes related components, but when I tried to remove itunes, I got the message, "The feature you are trying to use is on a network resource that is unavailable" so I was not able to uninstall it.

    I did everything lllaass suggested and removed most of the itunes related components, but when I tried to remove itunes, I got the message, "The feature you are trying to use is on a network resource that is unavailable" so I was not able to uninstall it.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page).
    http://majorgeeks.com/download.php?det=4459
    Here's a screenshot showing the particular links on the page that you should be clicking:
    After clicking one of the circled links, you should be taken to another page, and after a few seconds you should see a download dialog appear for the msicuu2.exe file. Here's a screenshot of what it looks like for me in Firefox:
    Choose to Save the file. If the dialog box does not appear for you, click the link on the page that says "CLICK HERE IF IT DOES NOT". Here's a screenshot of the page with the relevant link circled:
    When the dialog appears, choose to save the file.
    (2) Go to the Downloads area for your Web browser. Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • How do I set up my email account on my iMac OS Yosemite 10.10.2 so that the emails are downloaded to my computer and removed from the ISP server?

    how do I set up my email account on my iMac OS Yosemite 10.10.2 so that the emails are downloaded to my computer and removed from the ISP server?

    When setting up the email using Apple 'Mail' (version 8.2 (2070.6)) I do not get an option to set up my email as using POP.  I can go to Outlook from Microsoft and I get a chance to set my mail up using POP, however I would prefer to use the Apple supplied 'Mail' email programme as I'm using Office 365 and may not want to continue the subscription sometime in the future.
    Any advice on setting Mail to POP would be appreciated.  A not so Happy Wombat.

  • Set the value and read Only attributes just before PageLoad

    HI All,
    I am using JDev ver 11.1.1.4.0.
    Is there any event in ADF equivalent to PageLoad event of ASP.NET where we can set the components property on page load.
    When I try to access components in the beforePhase of any any Phase I get NullPointerException.
    Thanks,
    Rohit

    Hi,
    You can use dummy component with binding value attribute to bean with setter and getter in get method you can access components.
    private String dummyText;
        public void setDummyText(String dummyText) {
            this.dummyText= dummyText;
        public String getDummyText() {
    Implement your components access here..
            return dummyText;
        }

  • Who can tell me how to use ni-imaq functions imgSessionSerialWrite and imgSessionSerialRead to set and get my carema attribute?

    Who can tell me how to use ni-imaq functions imgSessionSerialFlash,imgSessionSerialWrite and imgSessionSerialRead to set and get my carema attribute?
    My camera is duncantech ms3100 and the frame grabber is pci-1428.I use ni-imaq2.6.When I use these functions,it tell me error -1074397163(IMG_ERR_BINT:Bad interface) .

    I have the same problem on my IPAD 2. One calender that i cant delete or find any settings for... Its just in the calender app under diffrent calenders.  how do i delete it?

  • Update IDM Account and Resource attribute

    How can i update the resource attribute of users while updating their IDM account from file upload?

    Hi
    we have a similar requirement ?Were you able to solve it and how please let us know.
    Thanks

  • ITunes 11.0.4 for Windows keeps restarting and removing my set-up and preferences

    iTunes 11.0.4 for Windows keeps restarting and removing my set-up and preferences every time its shut down and re-opened, how can I stop this?
    All of the music (etc) is still there but I need to agree to the terms and condition of the 'Software License Agreement for iTunes for Windows' every time I open iTunes.
    Once opened there is no personal set-up, such as side menus and how the lists are set-up (e.g showing album images, music listed in ‘most played’ order,etc etc) I know how to re-do all of my settings, Its just getting very annoying now.
    Anyone know how to stop this or at least why It is doing it?

    I found why it defaults back to the wizard. I noticed in  C:/users/(User)/AppData/Roaming/Apple  Computer/iTunes/iTunesPerfs.xml file is deleted from this directory upon  exiting iTunes. When I manully restore this file itunes starts with my  correct settings. Why the .xml file being deleted I don't know. iTunes is deleting the file when you exit so I guess there is just a bug.

Maybe you are looking for