Form Help

I want to display form with values from IdM but it's not displaying the values --

Just tryin g a simple form to display waveset.accountId and full name of the logged in user. Not sure what is missing here that I am not able to display these values.

<!-- MemberObjectGroups="#ID#Top" id="#ID#2CEC5ABD68FF539B:-4D778E4:10CEEAEE1D9:-7FF3" lastMod="258" lastModifier="Configurator" name="Form-E"-->

<Configuration id='#ID#2CEC5ABD68FF539B:-4D778E4:10CEEAEE1D9:-7FF3' name='Form-E' lock='Configurator#1155137626536' creator='Configurator' createDate='1155064428160' lastModifier='Configurator' lastModDate='1155137326395' lastMod='258' wstype='UserForm'>

<Extension>

<Form name='Form-E' objectLocationID='isBegin=true&amp;objectID=%23ID%232CEC5ABD68FF539B%3A-4D778E4%3A10CEEAEE1D9%3A-7FF3&amp;objectPath=0&amp;objectType=UserForm'>

<Display class='EditForm'/>

<Field name='waveset.accountId'>

<Display class='Text'>

<Property name='title' value='Name'/>

</Display>

</Field>

<Field name='global.fullname' button='true'>

<Default>

<ref>global.firstname</ref>

</Default>

<Expansion>

<cond>

<and>

<ref>global.firstname</ref>

<ref>global.lastname</ref>

</and>

<concat>

<ref>global.firstname</ref>

<s> </s>

<ref>global.lastname</ref>

</concat>

</cond>

</Expansion>

</Field>

</Form>

</Extension>

<MemberObjectGroups>

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

</MemberObjectGroups>

<Properties>

<Property name='editorOriginalName' value='Form-E'/>

</Properties>

</Configuration>

[2770 byte] By [IdmUser] at [2007-11-26 9:22:10]
# 1

Can anybody tell me the steps on how to get this?

I want to create a form and display the IdM attributes. I am using a button on a form which triggers a workflow and opens this form. I want this form to display logged in user's data.

Do I need anything specific in workflow? or form? As I understood from the documents that waveset.accountId should give me the account ID then why is this not working. Any ideas?

IdmUser at 2007-7-6 23:55:09 > top of Java-index,Web & Directory Servers,Directory Servers...
# 2
I think I need to pass view from workflow. Can anybody tell me how to create a view in workflow and pass the same to form, so that I can use the view to display user's data on form. Or there is any other simple way to display user data on form.
IdmUser at 2007-7-6 23:55:09 > top of Java-index,Web & Directory Servers,Directory Servers...
# 3
Can you guys guide me how to do this ? Or what am I doing wrong ?
IdmUser at 2007-7-6 23:55:09 > top of Java-index,Web & Directory Servers,Directory Servers...
# 4
Is the form being displayed from a manual action? You could do a getView of the user and pass the view object as a parameter to the manual action. You could then access the id in the form using variables.<view var>.waveset.accountId
chits98 at 2007-7-6 23:55:09 > top of Java-index,Web & Directory Servers,Directory Servers...