OpenERP Training in Pakistan from NUST, Islamabad (Non OpenERP Partner)
Dear Viewers,
NUST offering OpenERP training. NUST is one of the ‘TOP 100 UNIVERSITIES IN ASIA’ and one of the best educational industry in Pakistan. NUST have 16-18 schools of different areas in Pakistan including capital cities.
This workshop has been designed for both IT Professionals and people from Management background who would like to explore how HRM can be effectively managed through an open source ERP solution. The workshop is also beneficial for IT and Management students to know about state of the art in ERP solutions deployment and its related challenges.
Please Follow the details from given advertisement.
Registration: http://www.seecs.nust.edu.pk/openerp
Contact With:
SCHOOL OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE
A center of excellence for quality education and research
Sector H-12 Islamabad Tel: 051 9085 2400 Fax: 051 8317363 info@seecs.nust.edu.pk www.seecs.nust.edu.pk www.nust.edu.pk
Ubuntu Firewall (ufw) Default Input Traffic
Open the file /etc/default/ufw using below command
sudo gedit /etc/default/ufw
Set the DEFAULT_INPUT_POLICY value “ACCEPT” from “DROP”. Like Below
DEFAULT_INPUT_POLICY=”ACCEPT”
Possible valuse of DEFAULT_INPUT_POLICY are “DROP”, “REJECT”, “ACCEPT_NO_TRACK”
and then restart the firewall using following command
sudo ufw disable && sudo ufw enable
Start OpenERP-server and OpenERP-web Services at Ubuntu Boot Automatically
Dear Friends!
After installing OenERP-server, OpenERP-web and OpenERP-client successfully in ubuntu, we need to start OpenERP-server each time manually when we start Ubuntu. Below is the steps how we can add OpenERP-server and OpenERP-web services in init.d.
1. Download these 2 files in openerp-server and openerp-web in /tmp/
2. Open your favorite terminal and run the following commands
sudo cp /tmp/opener-server /etc/init.d/ sudo cp /tmp/opener-web /etc/init.d/
3. Now run the following commands
sudo update-rc.d openerp-server defaults sudo update-rc.d openerp-web defaults
4. Now runt the following commands
sudo chmod 0755 /etc/init.d/openerp-server sudo chmod 0755 /etc/init.d/openerp-web
5. Now start the services by running the following command
sudo /etc/init.d/openerp-server start sudo /etc/init.d/openerp-web start
Note: Now we can use start|stop|restart parameter with above commands if we force manually to start|stop|restart the openerp-server and openerp-web. Remember now each time Ubuntu start the openerp-server and openerp-web will start automatically.
OpenERP: Couldn’t find package setup install
Hello Friends!
If any one find the error ‘Couldn’t find package setup install’ during installation of openerp in ubuntu 10,
Then just install the python-setuptools from synaptic manager or using this command from terminal sudo apt-get install python-setuptools
Note: Following the steps mentioned in official OpenERP website.
http:// doc.openerp.com/v6.0/install/linux/server/index.html
Thanks
Dear Please Give Responses to the Survey
Dear Friends
My friend doing his MS research on the issue ” the
relationship between Conflict Management Styles and Individualism – Collectivism at individual level”.
Following is the link for the survey of this research.
Your valuable and well -though inputs will help me a lot in my research. I will be very thankful to you spraying
time on this survey.
With regards,
Note: Email it to your all contacts for their response
Actuarial (ASA, CERA & FSA) – Exam P – Probability Preparation Stuff
Hi Friends,
Below You will find some stuff for the preparation of Exam P – Probability. Stuff will includes Manuals, Books and Videos.
Note: this post will be updated as i got more stuff.
Reference Books:
Download: A First Course in Probability (Eighth Edition), 2009, by Ross, S.M., Chapters 1–8 Read more…
OpenERP many2many Domain Filtering Example
Class 1:
class cms_program_specialization_type(osv.osv):
_name = 'cms.program.specialization.type'
_columns = {
'name': fields.char('Specialization Type',size=100,required=True),
}
cms_program_specialization_type()
Class 2:
class cms_program_specialization(osv.osv):
_name = 'cms.program.specialization'
_columns = {
'name': fields.char('Specialization',size=100,required=True),
'specialization_type': fields.many2one('cms.program.specialization.type', 'Specialization Type', required=True),
}
cms_program_specialization()
Class 3: This is the object where many2many is define:
class cms_course(osv.osv):
_name = 'cms.course'
_columns = {
'name': fields.char('Course Name',size=300,required=True),
'taught_in_specialization_main': fields.many2one('cms.program.specialization.type','Main Specialization'),
'taught_in_specialization_detail': fields.many2many('cms.program.specialization', 'tbl_course_in_specialization_rel', 'course_id', 'specialization', 'Course Taught in', required=True),
}
cms_course()
Now the for view of object cms.course where domain filter is used
<record model="ir.ui.view" id="view_cms_course_form">
<field name="name">cms.course.form</field>
<field name="model">cms.course</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="cms.course">
<field name="name"/>
<field name="taught_in_specialization_main"/>
<field name="taught_in_specialization_detail" colspan="4" domain="[('specialization_type','=',taught_in_specialization_main)]"/>
</form>
</field>
</record>
Publication: An Android Runtime Security Policy Enforcement Framework
Abstract
Announcement: My Facebook Groups as Discussion Forum
Friends!
As my friends, visits my blog occasionally in a day or month. So i decide to make a page on facebook for the discussion purpose. Those friends using facebook on daily basis, this page will help them.
Every one is welcome to comment and discuss the problems, their solution, new ideas etc etc. Any facebook user follow the below link to like this page
http://www.facebook.com/pages/Mohsin-Page/180815835319473
Thanks




Recent Comments