OpenERP v6 (HR Modules) Training at NUST (Non OpenERP Partner)

February 21, 2012 3 comments

NUST (SEECS) offered OpenERP v6 training. NUST is one of the (TOP 100 UNIVERSITIES IN ASIA) and one of the best educational industries in Pakistan. NUST have 16-18 schools of different areas in Pakistan including capital cities.

Training held at February 17- 18, 2012. This training successfully covered functional and technical areas of OpenERP including following contents;

Contents Speaker
Introduction to ERPsIntroduction to Open SourceOpenERP introduction

The market place of OpenERP: A thorough analysis

Licensing of OpenERP

OpenERP  comparison with other Open source

OpenERP evaluation with SAP as a reference.

Dr. Amir HayatDr. Masoom Alam
Installation of OpenERPIntroduction to OpenERP environment Mohsin Yaseen
Managing HR,Recruitment (Talent Requisition),Survey (Interview and Appraisal),Contract,

Evaluation & Appraisals,

Attendances,

Their Expenses,

Payroll Management,

Holidays and

Time Sheets

Mohsin Yaseen
Basic OpenERP module development Mohsin Yaseen

Some of the snaps of team are;

OpenERP Training in Pakistan from NUST, Islamabad (Non OpenERP Partner)

February 9, 2012 8 comments

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

February 7, 2012 Leave a comment

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

Categories: OpenERP, Ubuntu

Start OpenERP-server and OpenERP-web Services at Ubuntu Boot Automatically

December 9, 2011 1 comment

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.

Categories: OpenERP, Ubuntu

OpenERP: Couldn’t find package setup install

December 9, 2011 Leave a comment

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

Categories: OpenERP, Python, Ubuntu

Dear Please Give Responses to the Survey

November 30, 2011 Leave a comment

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.

https://docs.google.com/spreadsheet/viewform?hl=en_GB&formkey=dDRyaEg0SWJIUzVBZ25rcDRfTUNFRWc6MQ#gid=0

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

Categories: News

Actuarial (ASA, CERA & FSA) – Exam P – Probability Preparation Stuff

November 23, 2011 2 comments

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…

Categories: Actuarial

OpenERP many2many Domain Filtering Example

September 29, 2011 1 comment

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>
Categories: OpenERP, Python, XML

Publication: An Android Runtime Security Policy Enforcement Framework

August 3, 2011 Leave a comment

Abstract

Today, smart phone’s malwares are deceptive enough to spoof itself as a legal mobile application. The front-end service of Trojans is attractive enough to deceive mobile users. Mobile users download similar malwares without knowing their illegitimate background threat. Unlike other vendors, Android is an open-source mobile operating system, and hence, it lacks a dedicated team to analyze the application code and decide its trustworthiness. We propose an augmented framework for Android that monitors the dynamic behavior of application during its execution. Our proposed architecture called Security Enhanced Android Framework (seaf) validates the behavior of an application through its permissions exercising patterns. Based on the exercised permissions’ combination, the mobile user is intimated about the dangerous behavior of an application. We have implemented the proposed framework within Android software stack and ported it to device. Our initial investigation shows that our solution is practical enough to be used in the consumer market.
Categories: News, Publications

Announcement: My Facebook Groups as Discussion Forum

July 27, 2011 Leave a comment

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

Categories: News
Follow

Get every new post delivered to your Inbox.

Join 83 other followers