User1100692814 posted
Hi
I need to design a few number of picklists for a new application at work, that also need to accomodate multiple languages.
What would be the best way to do this? Database tables for XML?
Example: A service "Task" has a "Task Type" i.e. Phone Call, Email, Appointment etc... Do I create a table called TaskType or do I create a XML file called TaskType, but my concern is then with reporting? If it was all db related I could simply do joins
and sort my issue but my concern is that by adding database tables for simple picklists adds an additional +- 50 tables to our database.
Any help our pointers would be great thank.
Regards
David
<PickList>
<TaskType Locale="en">
<Name Id="1">Phone Call</Name>
<Name Id="2">Email</Name>
<Name Id="3">Appointment</Name>
</TaskType>
<TaskType Locale="fr">
<Name Id="1">Appel Téléphonique</Name>
<Name Id="2">Email</Name>
<Name Id="3">Nomination</Name>
</TaskType>
<TaskType Locale="esp">
<Name Id="1">Llamada Telefónica</Name>
<Name Id="2">E-mail</Name>
<Name Id="3">Cita</Name>
</TaskType>
</PickList>