About SSH keys You can use SSH to perform Git operations in repositories on GitHub.com. For more information, see “About SSH.” If you have an existing SSH key, you can use the key to authenticate Git operations over SSH. Checking for existing SSH keys Before you generate a new SSH key, you should check your local machine for existing […]
Email Template to ask a Foreign Supervisor for a Consent Letter to Avail a Scholarship
Dear Sir/Mam, I hope you are keeping in good health. I’m Rana Faraz Ahmed, a Software Engineer, a Data Scientist and a PhD Scholar from Pakistan. The government of Pakistan is offering a scholarship (INTERNATIONAL RESEARCH SUPPORT INITIATIVE PROGRAM) to its enrolled PhD scholars for a period of six months. To be able to use it, I need to get an official acceptance letter for research from […]
Django Handouts
pip install django django-admin django-admin startproject project-name python manage.py runserver python manage.py startapp app-name python manage.py migrate python manage.py createsuperuser python manage.py makemigrations python manage.py migrate After applying migration we need to register the migrated model with the admin of that app: from . models import * admin.site.register(model-name) python manage.py shell pip install psycopg2 –> This library makes django communicate […]
How to integrate iDempiere with PHP Apps using SOAP APIs?
Useful resources regarding the subject matter are as follow: Starting Point: https://wiki.idempiere.org/en/Web_Services_First_Steps Web Service Security: https://wiki.idempiere.org/en/Web_Services_Security More Info: https://wiki.idempiere.org/en/Web_services Access APIs: http://localhost:8080/ADInterface/services To learn about CURL: https://phpenthusiast.com/blog/five-php-curl-examples To Process Response: https://stackoverflow.com/questions/35581239/returning-a-xml-response-with-curl/35581517 To Beautify Response: https://www.semicolonworld.com/php/tutorial/convert-array-to-xml-php Scenario: Integrate iDempiere with PHP application and get all Business Partners using SOAP API. Solution: First of all, we have to setup web service cofigurations […]
Callout to deduct Withholding on Invoice in iDempiere
Note: This article significantly target scenarios of Islamia University of Bahawalpur. However, reader can use it to implement his/her own ideas. I’m writing it so that any developer from IUB can make any technical ammendents. There is another announcement that you may not like: This Call out or calculator has nothing to do with the accounting of iDempiere but […]
How to configure pgAdmin4 on live server?
After installing PostgreSQL, run this command in terminal to install PgAdmin4 on Ubuntu, sudo apt install pgadmin4 pgadmin4-apache2 -y During installation, it will ask for Email Address and Password to access. Give any email address that will be used as username and Password that will be used to access admin panel. After that you can access pgadmin4 by entering: localhost/pgadmin4/ in […]
How to configure source code of iDempiere?
Its a simple but tricky process. There are some common mistakes that a beginner usually do, significantly the one, not coming from Java background. So here is the step by step process to configure iDempiere source code and avoid common mistakes. Prerequisites of iDempiere are as follow: Windows and Ubuntu both works fine Postgre SQL Java Maven Eclipse IDE Environment […]
Create Callout to deduct withholdoing on Payment in iDempiere
Here is a scenario: Write a callout for payment window to calculate following withholding Taxes & Security on Payment Voucher: GST PST Income Tax Security Note: After deduction of taxes, the Payment Amount will become lesser than Invoice Amount but the iDempiere doesn’t knows it becasue we are doing calculations using custom Callouts. Due to it, there will be a […]
Press Release – Training of iDempiere – A Series of Events
Training of iDempiere – A Series of Events The Directorate of IT successfully conducted a series of events regarding iDempiere – an ERP solution to automate the Finance Department. It was the 12th event of the series of seminars and training, conducted by Mr. Rana Faraz Ahmed (Programmer). They were held at Ghotvi hall and Conference Room of Abbasia Campus. […]
How to post budget in iDempiere?
Note: This process is for iDempiere deployed at IUB not don’t follow standardised approach. Open Calender Year and Period window of iDempiere and create a new calender. After that create a new Year agaisnt that calender. Then create Periods by giving exact Months and Dates of Fiscal Year. Then open GL Budget window and create new Budget. Then add a […]