Hi friendz,
I have 3 users in my OpenERP instance namely - Admin, user1, user2.
In general, OpenERP 7 allows the users to send messages to corresponding customers(company + contact).
For example:
If the Admin sends message to Company1, contact11, contact12 and
User1 sends message to Company2, contact21, contact22 and
User2 sends message to Company3, contact31, contact32.
When I try to view all mails that is done in my OpenERP, the messages are restricted according to what user is logged on.
I tried removing the domain restriction done with uid in the client action of OpenERP, but still the result is same.
My question is: :
How to get all mails without any restriction and available in a single window?
I tried the following aspects:
<record id="action_mail_archives_feeds_forall" model="ir.actions.client">
<field name="name">Archives</field>
<field name="tag">mail.wall</field>
<field name="res_model">mail.message</field>
<field name="params"
eval=""{
'view_mailbox': True,
'show_compose_message': False
}"" />
<field name="help" type="html">
<p>
No message found and no message sent yet.
</p>
<p>
Click on the top-right icon to compose a message. This
message will be sent by email if it's an internal contact.
</p>
</field>
</record>
WITH NO CONTEXT PASSED & DOMAIN RESTRICTION.
Provide any possible feedbacks regarding this query.
THanks & Regards,
Atchuthan