Set resource accounts to a calculated password

We have a requirement to change, post user create (but still in the create user workflow), the passwords of two resource accounts to a calculated value for technical staff to so some setup before a user begins to use these resources
Any ideas how I can do this?

hi, i fix my code and working good now.
// CALCULO TRASLADOS Y FLETES CAMIONES
*XDIM_MEMBERSET CATEGORY = %CATEGORY_SET%
*XDIM_MEMBERSET CENTRODECOSTO = %CENTRODECOSTO_SET%
*XDIM_ADDMEMBERSET CENTRODECOSTO =NA
*SELECT(%ZCEBE%, "[ID]", CEBE,[ID]=%CEBE_SET%)
*XDIM_MEMBERSET CEBE = %ZCEBE%, NA
*XDIM_MEMBERSET CUENTA = 312310000,NA
*XDIM_MEMBERSET MODELO AS %ZMOD1% = BAS(f_pesados)
*XDIM_MEMBERSET MODELO AS %ZMOD2% = BAS(m_medianos)
*XDIM_MEMBERSET MODELO AS %ZMOD3% = BAS(m_pesados_b)
*XDIM_MEMBERSET MODELO AS %ZMOD4% = BAS(m_pesados_a)
*XDIM_MEMBERSET MODELO AS %ZMOD5% = BAS(c_western_star)
*XDIM_MEMBERSET MODELO = NA, %ZMOD1%, %ZMOD2%, %ZMOD3%, %ZMOD4%, %ZMOD5%
*XDIM_MEMBERSET MONEDA_PPTO = USD,NA,CLP
*XDIM_MEMBERSET PARAMETRO = NA,ZPTF01,ZACB002
*XDIM_MEMBERSET RPTCURRENCY = LC
*XDIM_MEMBERSET SOCIEDAD = %SOCIEDAD_SET%
*SELECT(%ZSUC%, "[ID]", SUCURSALES,[ID]=%SUCURSALES_SET%)
*XDIM_MEMBERSET SUCURSALES = %ZSUC%, NA
*XDIM_MEMBERSET TIME = BAS(%YEAR%.TOTAL)
*SELECT(%ZTVTA%, "[ID]",TIPO_VTA,[TIPO]=%TIPO_VTA_SET%)
*XDIM_MEMBERSET TIPO_VTA = %ZTVTA%, NA
*XDIM_MEMBERSET MEASURES = "PERIODIC"
//FILTRO CANTIDAD
*FOR %ZMON% = CLP, USD, NA
*WHEN CEBE
*IS %ZCEBE%
*WHEN CUENTA
*IS NA
*WHEN MONEDA_PPTO
*IS NA
*WHEN PARAMETRO
*IS ZACB002
*WHEN SUCURSALES
*IS %ZSUC%
*WHEN TIPO_VTA
*IS %ZTVTA%
//SUMATORIA DE CANTIDAD CAMIONES * FLETE
*REC( EXPRESSION = (%VALUE% * ([CEBE].[NA],[CENTRODECOSTO].[NA],[CUENTA].[NA],[PARAMETRO].[ZPTF01],[MONEDA_PPTO].[%ZMON%],[TIPO_VTA].[NA],[SUCURSALES].[%ZSUC%],[MODELO].[NA])), CEBE = NA, TIPO_VTA = NA, SUCURSALES = %ZSUC%, CUENTA = 312310000,CENTRODECOSTO = %CENTRODECOSTO_SET%, MONEDA_PPTO = %ZMON%,PARAMETRO = NA, MODELO = NA)
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*ENDWHEN
*NEXT
*COMMIT

Similar Messages

  • Resource account password set during User Update process.

    Hi friends,
    I added to the Update WF a step to initialize an account password when, during the update of the user, IDM creates the new resource account.
    This is an initial password (known).
    This event basically happens in two User's Update cases:
    A. when the account was (accidentally) removed from the resource
    B. when a new Role requires to add a new resource account to the user
    In both cases IDM (re)creates the user account on the resource.
    In order to set this account initial password, I check (in the Update WF) the value of 'user.update.toCreate': if it contains the resource name, then I set the pw after the account has been provisioned.
    This method fails during case B. only when, for some reason, the resource account already exists BEFORE the update starts: even if the account is already there, IDM sets 'user.update.toCreate', leading my step to reset the account password to the initial value.
    What could I check in order to avoid it? (I don't want to reset account passwords when linking existing accounts)
    The only way I see at the moment would be to query the resource at the beginning of the Update WF to check if the account is already there...
    MTIA

    Hi,
    Have you found a resolution to this problem?
    Thanks
    Edited by: sun_to_Orcl on Jan 31, 2010 8:28 PM

  • How to assign different passwords for different resource accounts

    Hi everyone,
    We have a situation where we have users with two resource accounts. They have different passwords with different lengths.We are using Flat file active Sync adapter to create users in both resources and there we are setting passwor.password field. But we need to set different passwords to every resource account and it is obviosly it can not be done with password.password field. We tried e password view before provisioning where we chekout the user and set the follwing parameters:
    <set name='userview.resourceAccounts.selectAll'>
    <s>false</s>
    </set>
    <set name='userview.resourceAccounts.currentResourceAccounts[RES1].selected'>
    <s>true</s>
    </set>
    <set name='userview.resourceAccounts.password'>
    <ref>accountId</ref>
    </set>
    <set name='userview.resourceAccounts.confirmPassword'>
    <ref>accountId</ref>
    </set>
    But it did not worked. So is there a way to set different passwords to different accounts in SUN IDM?
    Oh and forgot to mention we are using Sun Idm 8.1 patch 9.
    Best regards.

    I actually managed to change the required password but i copied this in Provision externeal Resources.
    <Action id='1' name='Check out password view' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='checkoutView'/>
    <Argument name='type' value='Password'/>
    <Argument name='id' value='$(accountId)'/>
    <Argument name='authorized' value='true'/>
    <Argument name='subject' value='Configurator'/>
    <Argument name='TargetResources'>
    <List>
    <String>RES1</String>
    </List>
    </Argument>
    <Return from='view' to='userview'/>
    </Action>
    <Action id='2' name='reset password'>
    <expression>
    <block name='reset password' trace='true'>
    <set name='userview.resourceAccounts.selectAll'>
    <s>false</s>
    </set>
    <set name='userview.resourceAccounts.currentResourceAccounts[RES1].selected'>
    <s>true</s>
    </set>
    <set name='userview.resourceAccounts.password'>
    <ref>accountId</ref>
    </set>
    <set name='userview.resourceAccounts.confirmPassword'>
    <ref>accountId</ref>
    </set>
    </block>
    </expression>
    </Action>
    <Action id='3' name='check in password view' application='com.waveset.session.WorkflowServices'>
    <Argument name='op' value='checkinView'/>
    <Argument name='view' value='$(userview)'/>
    <Argument name='authorized' value='true'/>
    <Argument name='subject' value='Configurator'/>
    </Action>

  • My mum set up an iCloud account and forgot the password, and this caused me to create a new account. The new account works for the App Store and all that, but I can't change the initial iCloud account without the password. Help?

    My mum set up an iCloud account for my iPhone 4 but forgot the password. This caused me to create a new account, and it can be used for the App Store and iTunes and all that, but I can't change the initial iCloud account (the one my mum made). My device keeps prompting me for the password every few minutes after updating to iOS 8, and I've tried every option possible to retrieve the password, but I don't even know the answers to the security questions and I can't find the password reset email anywhere and I don't know the back up emails my mum used. I literally cannot find any legitimate way to sign out of the initial iCloud account without entering a password (which neither I nor my parents know). Is there a way for me to retreive the password or change to my new account without the password?

    See:Creating an iCloud account: Frequently Asked Questions and How do I mange iCloud account about 3/4s of the way down.

  • Yesterday I changed my email password on my home computer.  Today, I can't get any new emails on my Samsung Galaxy 4; I deleted the email account entirely and tried to set it up again as a new account, using the new password, but it keeps giving me an err

    Yesterday I changed my email password on my home computer.  Today, I can't get any new emails on my Samsung Galaxy 4; I deleted the email account entirely and tried to set it up again as a new account, using the new password, but it keeps giving me an error message that reads: Cannot safely connect to server.  The new password is working on my home computer.  I even tried the old password; it just gave me the same error message.

    I'm sorry you're having issues with your e-mail account on your phone Rusty1112. Let's figure out what's going on. First, please try deleting account/information again and then restart phone. When phone is back on, try adding e-mail account again, and be sure you're entering exactly as you set up, meaning its case-sensitive. If you're still getting same error, please let us know and let us know what e-mail account it is, Yahoo, AOL, MSN, etc.
    Thank you,
    VanessaS_VZW
    Follow us on Twitter @VZWSupport

  • How do I remove an email account from iPhoto on an iMac? I set it up with the incorrect password and can no longer send photos, please help!

    "Removing email account from iPhoto"
    How do I remove an email account from iPhoto on an iMac? I set it up with the incorrect password and can no longer send photos, please help!

    To follow Larry's advice, select your email account in the list of accounts and click the "-" button to remove the account:

  • HT4157 I just got an iPad 16GB+3G. When I try to set up a cellular data account (settings cellular data view account) it wants the login info and password,which I don't have because I have yet to set up the account. How do I get to a "set up account" scre

    I have a new iPad2 16GB+3G. ( Only got this yesterday.)  I have set up a wireless router so am able to use WiFi at home. When I attempt to set up a cellular data connection (ATT) I get to the "view account" which asks for my login ID and password, which of course I do not have yet because I haven't set up an account yet. How do I get to a "set up account" screen?

    I'm taking that this is a used iPad. Have you removed the microSIM and got one of your own?
    Also, have you cleared it out with Settings > General > Reset > Erase All Content and Settings?
    And if that does not work you may need to contact the cell provider.

  • HT5577 my daughter set up my account, i know my password and id, but i dont know all the security questions nor the birthday she used. i am wanting to change my password, please help

    my daughter set up my account, i know my password and id, but i dont know the security questions she used. i am needing to change my password. please help

    Ask your daughter. Or:
    Alternatives for Help Resetting Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Customer Service: Contacting Apple for support in your
              country and ask to speak to Account Security.
    How to Manage your Apple ID: Manage My Apple ID

  • Apply password period expire policy to resource accounts

    Hi! In IDM 7.1 I know can apply Password Period Expire Policy to Lighthouse account. It's simple and It works so well.
    But, I ' d like to know how can I apply a password period expire policy to resource accounts to synchronize as Lighthouse as resources accounts (i.e. LDAP accounts, etc.).
    I knew in previous versions of IDM wasn't possible.
    Thanks.

    Figures the solution form my own Q....
    I had pass through configured with LDAP to a login module group - which had the following as the order.
    1. LDAP
    2. IDM
    As LDAP resource adaptor does not support expiry, we have to look for the IdM Expiry. so i reversed the order so that IdM takes precedence in resolving the value of 'loginwarning" on the end user dashboard.
    Anyways in my environment, All password resets are handled from IdM so the Pass through wont hurt.

  • Setting up a new email account on mail, the password is entered for connecting to the in

    Assuming that in this day and age you want security.
    Setting up a new email account on mail, the password is entered for connecting to the in & outgoing servers before SSL is set.  Before you can set SSL, mail connects to the servers so email password is transmitted unencrypted?
    This seems a very obvious quirk/bug and something that I have always felt uncomfortable about.
    Anyone else think this is not a good thing?

    Actually it look like all apple devices have the same mail setup procedure, so are your email passwords all being sent over the network in plain text before you get the chance to set the SSL option?
    Any security experts care to comment.

  • HT5787 I can not activate my iphone because I can not remember the apple id and my password i set the account up with

    itunes or iphone updated the software on my phone and now I cannot activate my phone because I cannot remember my icloud ID or the password I used to set up account.

    you don't know what you are talking about.
    Really? You know that how?
    I bought this 4s couple of years ago and have never bought anything through icloud or itunes
    Yet you don't know your Apple ID. Somewhere along the line you set up an Apple ID as that Apple ID had to be used to set up activation lock. Activation lock is what you are encountering.
    to suggest I purchased this phone through ill-gotten gains is BS
    You would not be the first person to attempt to get past activation lock because of acquiring a stolen device. Not your fault as you may not have known. I never said you stole the phone but you could very well have purchased the phone from an online source or from someone who offered the phone for sale. It would not be the first time it has happened.
    Stay out of discussions
    Fine. You are on your own.

  • HT1689 Can i combine my husbands contacts and mine if we have two different itune accounts and emails and passwords?  Can both sets of contacts live on the cloud and be donwloaded to both our phones?

    Can i combine my husbands contacts and mine if we have two different itune accounts and emails and passwords?  Can both sets of contacts live on the cloud and be donwloaded to both our phones?

    Hey NON-TECHNO-WIZARD
    You can do one of two things. The first is to just export out the contacts and import them into each other’s account. If something is updated the other person will not be updated with the information. Now another options is using one Apple ID for iCloud Syncing and then you can still use individual Apple ID’s for store purchases. The article below will shed some light on how you can use the Apple ID.
    Using your Apple ID for Apple services
    http://support.apple.com/kb/ht4895
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Hello i just purchased an iMac and went through setting up my account and forgot my password any ideas how to get it or reset computer?

    hello i just purchased an iMac and went through setting up my account and forgot my password any ideas how to get it or reset computer?

    jacksonlandscape wrote:
    hello i just purchased an iMac and went through setting up my account and forgot my password any ideas how to get it or reset computer?
    That quickly!
    Have you read for possible solutions over in the "More Like This" thread over here?----------------------->
    When selecting passwords, make sure it's one that you will NEVER forget AND no one else can figure out. 
    Old school--- > Print it out & keep in a safe place.  A place that ONLY you know about AND never forget.
    New school---> Get a password manager utility.  Highly recommend 1Password which is shareware.  Do a Google search for free password managers.

  • ActiveSync - link resource account and password push

    Is it possible to push a password from an IDM account to a resource account at the same time as linking the two accounts, during ActiveSync?
    Scenario: I have an account in IDM and an account on a resource. I use ActiveSync to "discover" the account on the resource and link the IDM account with the resource account. At the same time I would like to push the IDM password to the resource. Thereby, synchronizing the IDM password with the resource password.
    I have unsuccessfully tried to accomplish this in many ways:
    1) Within the Admin GUI, I've edited an account and when I assign the resource to the account the password in IDM does not push to the resource.
    2) Within ActiveSync, I have used global.password, password.password, password.confirmPassword, password.targets, password.accounts[resource].selected
    NOTES:
    - when the account exists on the resource and IDM links to the resource account, the password does not push
    - when the account does not exist on the resource and IDM is required to create the resource account, the password is pushed
    At this point my guess is that I will have to kick off a workflow to trigger the password push as the ActiveSync cannot handle linking and subsequently updating an attribute on that resource at the same time. Any ideas would be helpful. Thank you in advance.

    I have been able to successfully push the password to the resource both during activesync and within the Admin console. However, I have found some inconsistencies with IDM that might need attention or an explanation.
    First off, the key to pushing the password from IDM to the resource in the above scenario is....within the Resource Schema don't map IDM user attribute "password" but map an attribute such as "resource_password" to the password field on the resource. When I did this, I was able to provision the resource to the user in IDM and push the password to the existing resource account.
    Secondly, there is an inconsistency with IDM and how it treats password and the other fields. I mapped lastname to a field on the resource. From the admin console, I edited the user and the only change I made was to provision the resource to the user (Resources tab). After saving this user, the lastname field from IDM was updated on the resource.
    Why doesn't this work with password?

  • Resource account attribute names during reconciliation

    Hi,
    I need to set some attributes when creating the IDM user during initial reconcilation from an LDAP resource. I understand only the waseset and LDAP user attributes are available during the reconciliation. Does anyone know how to refer to the resource account attributes?
    I tried to put this in my proxyuser form:
    <Field name='accounts[Lighthouse].uvaDepartment'>
    <Derivation>
    <invoke name='listToString' class='com.waveset.util.Util'>
    <ref>accounts[LDAP].ou</ref>
    <s>; </s>
    </invoke>
    </Derivation>
    </Field>
    uvaDepartment is a extended attribute in the IDM schema, and ou a multivalued LDAP atribute. But uvaDepartment remains empty.
    Greetings,
    Marijke

    thanks,
    I found out the problem was caused by not setting thel user password in the resource parameters page.
    I set up a temporay form and debugged the attributes from the Active Directory. Somehow, the password has already been populated with a (random) value. To be sure, I'll use your suggestion to generate a temporary password to ensure it conforms to my own Password Policy :
            <invoke name='generatePassword'>
              <new class='com.waveset.provision.PasswordGenerator'>
                <ref>:display.session</ref>
              </new>
              <invoke name='getObject' class='com.waveset.ui.FormUtil'>
                <rule name='UWS-RLB-Utils:GetLightHouseContext'/>
                <s>Policy</s>
                <ref>My-Password-Policy</ref>
              </invoke>
              <new class='com.waveset.object.WSUser'/>
            </invoke>

Maybe you are looking for

  • Creation of sales order/wbs element

    Hi SAP gurus, While creating a sales order after entering the WBS element, I am getting an error Profit Ctr not consistent between Plant and Material/WBS for line item 0010 can somebody throw light and help to solve. regards Pranav shah

  • CRM 7.0 Stop Early Number Assignment for  BP create

    Hi Gurus In CRM 7.0 WEB UI & IC Is it possible to stop the BP Number from being generated until the BP is saved successfully? Many Thanks in advance Panduranga

  • Multiple Column return in OLEDB Command SSIS 2008

    Hi Can someone help me on this please? I think in case we want to capture return value from a stored proc in SSIS OLEDB Command, we usually write something as Exec ? = mystoredProc ?, ?, ?, ?  [assuming 4 input parameter and a return value], but I wa

  • Setting SpamAssassin Kill Level

    I'm having a bit of trouble getting SpamAssassin to kill junk mail. This afternoon, I edited the /etc/amavisd.conf file to reflect the settings below; however, junk mail with a score of 7.0 or higher is still being passed to the end users. Am I doing

  • Setting v$session.program property in application module config

    How can I set the v$session.program property in the AM config, so that when a new connection is created, the v$session.program field is documented with the property value. I added the following in JClient JCLoginDialog: ((Hashtable)connEnvironment).p