cancel
Showing results for 
Search instead for 
Did you mean: 

impex to create Employee with email address

Former Member
0 Kudos

could some one help me to create employee with email address impex.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

The impex we write primarily also depends on Type code declaration. So steps involved are:

Look for Employee in *-items.xml. Find the column name for email

...... "attribute qualifier="email" type="java.lang.String" .....

Use Luke's script and update the appropriate column i.e. emailid.

Aparna

former_member387866
Active Contributor
0 Kudos

Hi Apoorva,

I hope I understand you correctly. If the e-mail address is the Employee's unique identifier, then:

 INSERT_UPDATE Employee;name      ;password[default=$defaultPassword];uid[unique=true]
                       ;Joe Bloggs;                                  ;joe.bloggs@acme.com

I hope this is what you are looking for,
Luke