Loading accounts through flatfile activesync

Hi All,

I am trying to load accounts through flatfile, but after a few trials came to know that we can't load accounts through flatfile activesync (am I right).

Then I loaded accounts through 'Bulk load' option. well, the accounts are loaded. when I am changing the attributes the changes are also occuring in the IdM. but when I am adding a new account to the flatfile, those changes are not take place in the Idm.

Any body is having idea, why it is behaving like this.

I am using a activesync form and also in the pre-workflow I am using create user workflow.

Any ideas please.

Thanks in advance

[644 byte] By [dortmund_developer] at [2007-11-26 10:37:35]
# 1

to elaborate, here is the form I am using..

<?xml version='1.0' encoding='UTF-8'?>

<!DOCTYPE Configuration PUBLIC 'waveset.dtd' 'waveset.dtd'>

<!-- MemberObjectGroups="#ID#Top" id="#ID#47E5F3C0510FE454:423D4F:10E18F63D5F:-7FFC" lastMod="140" lastModifier="Configurator" name="DemoActiveSync"-->

<Configuration id='#ID#47E5F3C0510FE454:423D4F:10E18F63D5F:-7FFC' name='DemoActiveSync' lock='Configurator#1160141635968' creator='Configurator' createDate='1160060247828' lastModifier='Configurator' lastModDate='1160140725031' lastMod='140' wstype='UserForm'>

<Extension>

<Form name='DemoActiveSync' objectLocationID='isBegin=true&amp;objectID=%23ID%2347E5F3C0510FE454%3A423D 4F%3A10E18F63D5F%3A-7FFC&amp;objectPath=0&amp;objectType=UserForm'>

<Display class='EditForm'/>

<Field name='feedOp'>

<Expansion>

<s>Create</s>

</Expansion>

<Field name='waveset.accountId'>

<Comments> email. </Comments>

<Expansion>

<ref>activeSync.accountId</ref>

</Expansion>

</Field>

<Field name='global.firstname'>

<Comments> fullname. </Comments>

<Expansion>

<ref>activeSync.firstname</ref>

</Expansion>

</Field>

<Field name='global.lastname'>

<Comments> firstname. </Comments>

<Expansion>

<ref>activeSync.lastname</ref>

</Expansion>

</Field>

<Field name='waveset.Address'>

<Comments> lastname. </Comments>

<Expansion>

<ref>activeSync.Address</ref>

</Expansion>

</Field>

</Field>

</Form>

</Extension>

<MemberObjectGroups>

<ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>

</MemberObjectGroups>

</Configuration>

I don't have that much expereince on activesync forms..hope I did some mistake.

Please tell me, where am I doing wrong.

Thanks

dortmund_developer at 2007-7-7 2:48:39 > top of Java-index,Web & Directory Servers,Directory Servers...
# 2

Hi,, I think there is mistake in the form....

Form structure should be something like this....

<Field name='waveset.accountId'>

<Expansion>

<ref>activeSync.accountId</ref>

</Expansion>

<Disable>

<block>

<neq>

<ref>feedOp</ref>

<s>create</s>

</neq>

</block>

</Disable>

</Field>

<Field name='waveset.password'>

<Comments> Make up a password for accounts that are being created. </Comments>

<Expansion>

<cond>

<notnull>

<ref>activeSync.password</ref>

</notnull>

<ref>activeSync.password</ref>

<s>change12345</s>

</cond>

</Expansion>

<Disable>

<neq>

<ref>feedOp</ref>

<s>create</s>

</neq>

</Disable>

</Field>

Continue with different fields......Hope it may help you.....

@Mahi at 2007-7-7 2:48:39 > top of Java-index,Web & Directory Servers,Directory Servers...
# 3
thanks for the response mahi.I tried in that way too, but no luck.I mentioned a file in the log file path and but nothing is writing into that file when the activesync is running.please let me know, what is happening.
dortmund_developer at 2007-7-7 2:48:39 > top of Java-index,Web & Directory Servers,Directory Servers...
# 4
Here are the checks u can use 1. make sure the resource mappings are correct and accurate. 2. Both password and confirmPassword should be set to same valuesI do not see polling them from the feed file unless a key requirement.--sFred
sFred at 2007-7-7 2:48:39 > top of Java-index,Web & Directory Servers,Directory Servers...