SlideShare a Scribd company logo
1 of 5
Download to read offline
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 6, Ver. V (Nov – Dec. 2015), PP 20-24
www.iosrjournals.org
DOI: 10.9790/0661-17652024 www.iosrjournals.org 20 | Page
An Indepth Understanding of e-Procurement: A Case Study
Approach
Shaikh Imtiyaj, N.R Biswal, T.P Ray, Dr A.K Hota
Dept. of CSE, C.V. Raman College of Engineering, BPUT, Bhubaneswar, Odisha, India
Scientist, Ministry of Electr & IT, Bhubaneswar, Odisha, India
Scientist, Ministry of Electr & IT, Bhubaneswar, Odisha, India
Scientist, Ministry of Electr & IT, Bhubaneswar, Odisha, India
I. Introduction:
The science market has become open and accessible to all in the international community without any
restriction; the rapid explosion in Information Technology has played a vital role in this mission. The use of
Information Technology particularly web based internet applications to enhance the access to and delivery of
government information and services to their citizens, public agencies, employees, business partners, financial
institutions and government departments. The rapid growth of competition in the market and the consequent
changes in economic conditions impose organizations and firms to implement new technologies to stay
competitive. The Central, State Government, Judiciary, Autonomous Bodies, Boards & Corporations, PSUs,
Joint Ventures, Statutory Bodies, Commissions and Councils have invested in numerous initiatives throughout
the length and breadth of the country aimed at extending the benefits of information revolution to rural and
remote area. The Government envisions providing good governance by establishing a Committed, Accountable,
Responsive, Inspiring, Nationalist, and Genuine Government - CARING Government. e-Procurement is one of
the best vehicles that are being gainfully used in reaching the goal of CARING governance
The rapidly changing pace of the global business world compels organizations to take quick, decisive
action when considering new technological developments. The technological developments and movement
toward a global marketplace over the past decade have forced companies to restructure their business practices
in order to gain competitive advantage or even to survive. One aspect of the restructuring has been the transition
of several business processes into the electronic environment of cyberspace, commonly referred to as e-
Business. While e-Business includes all aspects of doing business in an electronic environment, two specific
areas deal primarily with external transactions, specifically the e-Commerce and e-Procurement processes. The
benefits include decreased administration and overhead costs, decreased labor hour cost per transaction, more
accurate and timely business intelligence, more timely payment, and enhanced cash flow management. However
the most striking benefit will be to get organizations to analyze their procurement processes.
e-Governance : Objective
 Providing information speedily to all citizens
 Improving transparency
 Improving public services such as transportation, power, health, water, security and municipal services etc.
 Reduce Corruption
e-Governance development models :
The e-Governance Models are
 G2C : Government to Citizens
 G2B : Government to Business
 G2G : Government to Government
Figure 1: Governance Development Model
An Indepth Understanding of e-Procurement: A Case Study Approach
DOI: 10.9790/0661-17652024 www.iosrjournals.org 21 | Page
e-Procurement :
A major Government to Business e-Governance initiative to bring transparency in public procurement process is
e-Procurement.
e-Procurement, commonly known as Electronic procurement.
Figure 2: e-Procurement Cycle
e-Procurement is the business-to-business or business-to-consumer or business-to-Government
purchase and sale of Supplies, Works and Services using the Internet. e-Procurement caters to the online
tendering process from online tender creation to award of contract(AOC). Using e-Tendering the Departments
can create the tender, publish the tender, receive bids, open the tenders, evaluate tenders and finally publish
award of contract. Using e-Tendering, the bidders can search tenders, submit bids online and track the status of
their bids. Timely and efficient delivery of e-Governance services is an important aspect. Indian IT-Act 2000
has mandated the usage of Digital Signature Certificate (DSC) for e-Procurement.
e-Tendering Process :
Tender Creation
Tender Publish
Participation of
Bids by Bidder
Technical Bid
Opening
Technical
Evaluation
Financial Bid
Opening
Financial
Evaluation
Award of Contract
(AOC)
Shaikh Imtiyaj
Figure 3: e-Tendering Process
e-Procurement: Responsibilities
An Indepth Understanding of e-Procurement: A Case Study Approach
DOI: 10.9790/0661-17652024 www.iosrjournals.org 22 | Page
 Creater of the Tender: - The Tender will be created by the officer by using his/her Digital Signature
Certificate, as per approved by the Department Nodal Officer.
 Publisher of the Tender:- He will be normally the Head of the Dept (HOD) of the concerned technical
department and will be the responsible person for timely and accurately hosting of tender on the portal
 Opener of the Tender: - The tender will be decrypted and opened with the Digital Signature Certificates of
each opener as identified during publishing the tender. Each opener will have to access one by one for bid
opening. The Tender technical core committee members will be normally the openers of tender as decided
by the Nodal Officer.
 Evaluator of the Tender: - The Evaluator is the person who will evaluate the tenders and upload the final
decision of the Tender Evaluation Committee.
 Auditor: He will be given privileged access to audit tendering process.
Benefits of e-Procurement:
For data encryption and security purposes, the Digital Signature Certificate is essential to operate in e-
Procurement.
 Healthy competition in participation
 Bidding possible: 24X7 Availability
 Any time, Any where Bid Submission
 Paper less Environment
 Process Efficiency in entire tendering process
 Real time monitoring
 Cost Reduction
 Reduced Tender related Crime
 Transparency
Shaikh Imtiyaj
Figure 4: Benefits of e-Procurement
e-Procurement Risk :
Digital Signature Certificates (DSC) can be presented electronically to prove the identity, to access
information or services on the Internet or to sign certain documents digitally. DSC provides Authorization,
Authentication, Privacy, Non repudiation and Integrity. IT Act 2000 in Government of India gives legal validity
to electronic transactions that are digitally signed. A DSC provides high level of security for online transactions.
You can use certificates to encrypt information such that only the intended recipient can read it. You can
digitally sign information to provide assurance to the recipient that it has not been altered in transit, and enable
verification that you actually sent the message.
An Indepth Understanding of e-Procurement: A Case Study Approach
DOI: 10.9790/0661-17652024 www.iosrjournals.org 23 | Page
e-Procurement Trends in India :

Shaikh Imtiyaj
Figure 5: e-Procurement Trends in India
Algorithm Implementation:
DSC is based on MD5 algorithm from Cryptography. MD5 is Message Digest algorithm, which takes as input a
message of arbitrary length and produces as output a 128-bit "message digest" of the input. MD5 is more secure
than MD4.
import java.security.*;
class Md5FeeduDemoTest {
public static void main(String[] a) {
try {
MessageDigest md = MessageDigest.getInstance("MD5");
System.out.println("Message Digest5 information: ");
System.out.println(" Algorithm = "+md.getAlgorithm());
System.out.println(" Provider = "+md.getProvider());
System.out.println(" toString = "+md.toString());
String input = "";
md.update(input.getBytes());
byte[] output = md.digest();
System.out.println();
System.out.println("MD5(""+input+"") =");
System.out.println(" "+bytesToHex(output));
input = "xyz";
md.update(input.getBytes());
output = md.digest();
System.out.println();
System.out.println("MD5(""+input+"") =");
System.out.println(" "+bytesToHex(output));
input = "abcdefghijklmnopqrstuvwxyz";
md.update(input.getBytes());
output = md.digest();
An Indepth Understanding of e-Procurement: A Case Study Approach
DOI: 10.9790/0661-17652024 www.iosrjournals.org 24 | Page
System.out.println();
System.out.println("MD5(""+input+"") =");
System.out.println(" "+bytesToHex(output));
} catch (Exception e) {
System.out.println("Exception: "+e);
}
}
public static String bytesToHex(byte[] b) {
char hexDigit[] = {'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
StringBuffer buf = new StringBuffer();
for (int j=0; j<b.length; j++) {
buf.append(hexDigit[(b[j] >> 4) & 0x0f]);
buf.append(hexDigit[b[j] & 0x0f]);
}
return buf.toString();
}
}
Conclusion and Future Work:
e-Procurement reduces the tender related crimes is certainly a significant achievement on the way to a
better, cleaner, honest and developed nation. This study focuses on different opportunities of G2B initiatives in
India. The basic objective of research is to provide a model for better implementation of e-Governance
application.
References
[1]. Shaikh Imtiyaj, N.R Biswal, T.P Ray, Dr A.K Hota , “Digital Signature Certificate: A blessing for e-Governance Application in
Human Development”, International Journal of Advanced Research in Science, Engineering and Technology,Vol. 2, Issue 1 , pp
350-355,January 2015
[2]. William S.,” Cryptography and Network Security, Principles and Practice”, Prentice Hall of India, 2005.
[3]. Dhiren R. Patel ,”Information Security Theory and Practice” , 2008 Edition
[4]. Atul Kahate, “Cryptography and Network Security”, Second Edition
[5]. Cryptography Engineering: Design Principles and Practical Applications by Niels Ferguson, Bruce Schneier, Tadayoshi Kohno
[6]. www.eprocure.gov.in/eprocure/app, last visited 07th
Dec 2015
[7]. https://tendersodisha.gov.in/nicgep/app , last visited 07th Dec 2015
[8]. “Digital Signature,” available at: http:// http://nicca.nic.in , last visited 05th Feb 2015
[9]. “e-Governance,” available at http:// india.gov.in , last visited 07th Dec 2015
[10]. “e-Procurement,” available at http:// demoeproc.nic.in , last visited 07th Dec 2015

More Related Content

Similar to An Indepth Look at e-Procurement Implementation and Trends

Ict Roadshow Presentation1
Ict Roadshow Presentation1Ict Roadshow Presentation1
Ict Roadshow Presentation1Basement
 
User Documentation Verification Portal
User Documentation Verification PortalUser Documentation Verification Portal
User Documentation Verification PortalIRJET Journal
 
E-signatures and Their Impact on Digital Age Transactions - DrySign
E-signatures and Their Impact on Digital Age Transactions - DrySignE-signatures and Their Impact on Digital Age Transactions - DrySign
E-signatures and Their Impact on Digital Age Transactions - DrySignDrysign By Exela
 
Vicent mathias reg no190640723531 proposal
Vicent mathias reg no190640723531 proposalVicent mathias reg no190640723531 proposal
Vicent mathias reg no190640723531 proposalvicentmathias1
 
Cybersecurity in Oil & Gas Company
Cybersecurity in Oil & Gas CompanyCybersecurity in Oil & Gas Company
Cybersecurity in Oil & Gas CompanyEryk Budi Pratama
 
MACHINE LEARNING AND ARTIFICIAL INTELLIGENCE FOR AUTOMATING E-GOVERNMENT SERV...
MACHINE LEARNING AND ARTIFICIAL INTELLIGENCE FOR AUTOMATING E-GOVERNMENT SERV...MACHINE LEARNING AND ARTIFICIAL INTELLIGENCE FOR AUTOMATING E-GOVERNMENT SERV...
MACHINE LEARNING AND ARTIFICIAL INTELLIGENCE FOR AUTOMATING E-GOVERNMENT SERV...IRJET Journal
 
Ict enabled municipal initiative
Ict enabled municipal initiativeIct enabled municipal initiative
Ict enabled municipal initiativepcmcindia
 
CSCM The impact of e procurement application
CSCM The impact of e procurement applicationCSCM The impact of e procurement application
CSCM The impact of e procurement applicationEst
 
CSCM The impact of e procurement application
CSCM The impact of e procurement applicationCSCM The impact of e procurement application
CSCM The impact of e procurement applicationEst
 
Monetizing the Internet of Things: Creating a Connected Customer Experience
Monetizing the Internet of Things: Creating a Connected Customer ExperienceMonetizing the Internet of Things: Creating a Connected Customer Experience
Monetizing the Internet of Things: Creating a Connected Customer ExperienceZuora, Inc.
 
Authentication and Tracking of Government Benefits Using Blockchain
Authentication and Tracking of Government Benefits Using BlockchainAuthentication and Tracking of Government Benefits Using Blockchain
Authentication and Tracking of Government Benefits Using BlockchainIRJET Journal
 
Design and develop authentication in electronic payment systems based on IoT ...
Design and develop authentication in electronic payment systems based on IoT ...Design and develop authentication in electronic payment systems based on IoT ...
Design and develop authentication in electronic payment systems based on IoT ...TELKOMNIKA JOURNAL
 
Analysis of Security Algorithms used in E-Commerce and ATM Transactions
Analysis of Security Algorithms used in E-Commerce and ATM TransactionsAnalysis of Security Algorithms used in E-Commerce and ATM Transactions
Analysis of Security Algorithms used in E-Commerce and ATM TransactionsIJERD Editor
 
IRJET - Blockchain Application Used in Enhance Technology from Cryptocurr...
IRJET -  	  Blockchain Application Used in Enhance Technology from Cryptocurr...IRJET -  	  Blockchain Application Used in Enhance Technology from Cryptocurr...
IRJET - Blockchain Application Used in Enhance Technology from Cryptocurr...IRJET Journal
 

Similar to An Indepth Look at e-Procurement Implementation and Trends (20)

Lotus procure : A Complete Overview
Lotus procure : A Complete OverviewLotus procure : A Complete Overview
Lotus procure : A Complete Overview
 
Ict Roadshow Presentation1
Ict Roadshow Presentation1Ict Roadshow Presentation1
Ict Roadshow Presentation1
 
User Documentation Verification Portal
User Documentation Verification PortalUser Documentation Verification Portal
User Documentation Verification Portal
 
E-signatures and Their Impact on Digital Age Transactions - DrySign
E-signatures and Their Impact on Digital Age Transactions - DrySignE-signatures and Their Impact on Digital Age Transactions - DrySign
E-signatures and Their Impact on Digital Age Transactions - DrySign
 
IT_in_delhi_govt
IT_in_delhi_govtIT_in_delhi_govt
IT_in_delhi_govt
 
Vicent mathias reg no190640723531 proposal
Vicent mathias reg no190640723531 proposalVicent mathias reg no190640723531 proposal
Vicent mathias reg no190640723531 proposal
 
Jasper, Internet of Things
Jasper, Internet of ThingsJasper, Internet of Things
Jasper, Internet of Things
 
Cybersecurity in Oil & Gas Company
Cybersecurity in Oil & Gas CompanyCybersecurity in Oil & Gas Company
Cybersecurity in Oil & Gas Company
 
MACHINE LEARNING AND ARTIFICIAL INTELLIGENCE FOR AUTOMATING E-GOVERNMENT SERV...
MACHINE LEARNING AND ARTIFICIAL INTELLIGENCE FOR AUTOMATING E-GOVERNMENT SERV...MACHINE LEARNING AND ARTIFICIAL INTELLIGENCE FOR AUTOMATING E-GOVERNMENT SERV...
MACHINE LEARNING AND ARTIFICIAL INTELLIGENCE FOR AUTOMATING E-GOVERNMENT SERV...
 
Ict enabled municipal initiative
Ict enabled municipal initiativeIct enabled municipal initiative
Ict enabled municipal initiative
 
e-Procurement in Indian Government
e-Procurement in Indian Governmente-Procurement in Indian Government
e-Procurement in Indian Government
 
CSCM The impact of e procurement application
CSCM The impact of e procurement applicationCSCM The impact of e procurement application
CSCM The impact of e procurement application
 
CSCM The impact of e procurement application
CSCM The impact of e procurement applicationCSCM The impact of e procurement application
CSCM The impact of e procurement application
 
Monetizing the Internet of Things: Creating a Connected Customer Experience
Monetizing the Internet of Things: Creating a Connected Customer ExperienceMonetizing the Internet of Things: Creating a Connected Customer Experience
Monetizing the Internet of Things: Creating a Connected Customer Experience
 
Authentication and Tracking of Government Benefits Using Blockchain
Authentication and Tracking of Government Benefits Using BlockchainAuthentication and Tracking of Government Benefits Using Blockchain
Authentication and Tracking of Government Benefits Using Blockchain
 
Design and develop authentication in electronic payment systems based on IoT ...
Design and develop authentication in electronic payment systems based on IoT ...Design and develop authentication in electronic payment systems based on IoT ...
Design and develop authentication in electronic payment systems based on IoT ...
 
Analysis of Security Algorithms used in E-Commerce and ATM Transactions
Analysis of Security Algorithms used in E-Commerce and ATM TransactionsAnalysis of Security Algorithms used in E-Commerce and ATM Transactions
Analysis of Security Algorithms used in E-Commerce and ATM Transactions
 
Iti
ItiIti
Iti
 
ITM
ITMITM
ITM
 
IRJET - Blockchain Application Used in Enhance Technology from Cryptocurr...
IRJET -  	  Blockchain Application Used in Enhance Technology from Cryptocurr...IRJET -  	  Blockchain Application Used in Enhance Technology from Cryptocurr...
IRJET - Blockchain Application Used in Enhance Technology from Cryptocurr...
 

More from iosrjce

An Examination of Effectuation Dimension as Financing Practice of Small and M...
An Examination of Effectuation Dimension as Financing Practice of Small and M...An Examination of Effectuation Dimension as Financing Practice of Small and M...
An Examination of Effectuation Dimension as Financing Practice of Small and M...iosrjce
 
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Does Goods and Services Tax (GST) Leads to Indian Economic Development?Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Does Goods and Services Tax (GST) Leads to Indian Economic Development?iosrjce
 
Childhood Factors that influence success in later life
Childhood Factors that influence success in later lifeChildhood Factors that influence success in later life
Childhood Factors that influence success in later lifeiosrjce
 
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...iosrjce
 
Customer’s Acceptance of Internet Banking in Dubai
Customer’s Acceptance of Internet Banking in DubaiCustomer’s Acceptance of Internet Banking in Dubai
Customer’s Acceptance of Internet Banking in Dubaiiosrjce
 
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...iosrjce
 
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
Consumer Perspectives on Brand Preference: A Choice Based Model ApproachConsumer Perspectives on Brand Preference: A Choice Based Model Approach
Consumer Perspectives on Brand Preference: A Choice Based Model Approachiosrjce
 
Student`S Approach towards Social Network Sites
Student`S Approach towards Social Network SitesStudent`S Approach towards Social Network Sites
Student`S Approach towards Social Network Sitesiosrjce
 
Broadcast Management in Nigeria: The systems approach as an imperative
Broadcast Management in Nigeria: The systems approach as an imperativeBroadcast Management in Nigeria: The systems approach as an imperative
Broadcast Management in Nigeria: The systems approach as an imperativeiosrjce
 
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study on Retailer’s Perception on Soya Products with Special Reference to T...A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study on Retailer’s Perception on Soya Products with Special Reference to T...iosrjce
 
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...iosrjce
 
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on BangladeshConsumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladeshiosrjce
 
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...iosrjce
 
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...iosrjce
 
Media Innovations and its Impact on Brand awareness & Consideration
Media Innovations and its Impact on Brand awareness & ConsiderationMedia Innovations and its Impact on Brand awareness & Consideration
Media Innovations and its Impact on Brand awareness & Considerationiosrjce
 
Customer experience in supermarkets and hypermarkets – A comparative study
Customer experience in supermarkets and hypermarkets – A comparative studyCustomer experience in supermarkets and hypermarkets – A comparative study
Customer experience in supermarkets and hypermarkets – A comparative studyiosrjce
 
Social Media and Small Businesses: A Combinational Strategic Approach under t...
Social Media and Small Businesses: A Combinational Strategic Approach under t...Social Media and Small Businesses: A Combinational Strategic Approach under t...
Social Media and Small Businesses: A Combinational Strategic Approach under t...iosrjce
 
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...iosrjce
 
Implementation of Quality Management principles at Zimbabwe Open University (...
Implementation of Quality Management principles at Zimbabwe Open University (...Implementation of Quality Management principles at Zimbabwe Open University (...
Implementation of Quality Management principles at Zimbabwe Open University (...iosrjce
 
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...iosrjce
 

More from iosrjce (20)

An Examination of Effectuation Dimension as Financing Practice of Small and M...
An Examination of Effectuation Dimension as Financing Practice of Small and M...An Examination of Effectuation Dimension as Financing Practice of Small and M...
An Examination of Effectuation Dimension as Financing Practice of Small and M...
 
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Does Goods and Services Tax (GST) Leads to Indian Economic Development?Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
 
Childhood Factors that influence success in later life
Childhood Factors that influence success in later lifeChildhood Factors that influence success in later life
Childhood Factors that influence success in later life
 
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
 
Customer’s Acceptance of Internet Banking in Dubai
Customer’s Acceptance of Internet Banking in DubaiCustomer’s Acceptance of Internet Banking in Dubai
Customer’s Acceptance of Internet Banking in Dubai
 
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
 
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
Consumer Perspectives on Brand Preference: A Choice Based Model ApproachConsumer Perspectives on Brand Preference: A Choice Based Model Approach
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
 
Student`S Approach towards Social Network Sites
Student`S Approach towards Social Network SitesStudent`S Approach towards Social Network Sites
Student`S Approach towards Social Network Sites
 
Broadcast Management in Nigeria: The systems approach as an imperative
Broadcast Management in Nigeria: The systems approach as an imperativeBroadcast Management in Nigeria: The systems approach as an imperative
Broadcast Management in Nigeria: The systems approach as an imperative
 
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study on Retailer’s Perception on Soya Products with Special Reference to T...A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
 
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
 
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on BangladeshConsumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
 
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
 
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
 
Media Innovations and its Impact on Brand awareness & Consideration
Media Innovations and its Impact on Brand awareness & ConsiderationMedia Innovations and its Impact on Brand awareness & Consideration
Media Innovations and its Impact on Brand awareness & Consideration
 
Customer experience in supermarkets and hypermarkets – A comparative study
Customer experience in supermarkets and hypermarkets – A comparative studyCustomer experience in supermarkets and hypermarkets – A comparative study
Customer experience in supermarkets and hypermarkets – A comparative study
 
Social Media and Small Businesses: A Combinational Strategic Approach under t...
Social Media and Small Businesses: A Combinational Strategic Approach under t...Social Media and Small Businesses: A Combinational Strategic Approach under t...
Social Media and Small Businesses: A Combinational Strategic Approach under t...
 
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
 
Implementation of Quality Management principles at Zimbabwe Open University (...
Implementation of Quality Management principles at Zimbabwe Open University (...Implementation of Quality Management principles at Zimbabwe Open University (...
Implementation of Quality Management principles at Zimbabwe Open University (...
 
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
 

Recently uploaded

Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 

Recently uploaded (20)

Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 

An Indepth Look at e-Procurement Implementation and Trends

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 6, Ver. V (Nov – Dec. 2015), PP 20-24 www.iosrjournals.org DOI: 10.9790/0661-17652024 www.iosrjournals.org 20 | Page An Indepth Understanding of e-Procurement: A Case Study Approach Shaikh Imtiyaj, N.R Biswal, T.P Ray, Dr A.K Hota Dept. of CSE, C.V. Raman College of Engineering, BPUT, Bhubaneswar, Odisha, India Scientist, Ministry of Electr & IT, Bhubaneswar, Odisha, India Scientist, Ministry of Electr & IT, Bhubaneswar, Odisha, India Scientist, Ministry of Electr & IT, Bhubaneswar, Odisha, India I. Introduction: The science market has become open and accessible to all in the international community without any restriction; the rapid explosion in Information Technology has played a vital role in this mission. The use of Information Technology particularly web based internet applications to enhance the access to and delivery of government information and services to their citizens, public agencies, employees, business partners, financial institutions and government departments. The rapid growth of competition in the market and the consequent changes in economic conditions impose organizations and firms to implement new technologies to stay competitive. The Central, State Government, Judiciary, Autonomous Bodies, Boards & Corporations, PSUs, Joint Ventures, Statutory Bodies, Commissions and Councils have invested in numerous initiatives throughout the length and breadth of the country aimed at extending the benefits of information revolution to rural and remote area. The Government envisions providing good governance by establishing a Committed, Accountable, Responsive, Inspiring, Nationalist, and Genuine Government - CARING Government. e-Procurement is one of the best vehicles that are being gainfully used in reaching the goal of CARING governance The rapidly changing pace of the global business world compels organizations to take quick, decisive action when considering new technological developments. The technological developments and movement toward a global marketplace over the past decade have forced companies to restructure their business practices in order to gain competitive advantage or even to survive. One aspect of the restructuring has been the transition of several business processes into the electronic environment of cyberspace, commonly referred to as e- Business. While e-Business includes all aspects of doing business in an electronic environment, two specific areas deal primarily with external transactions, specifically the e-Commerce and e-Procurement processes. The benefits include decreased administration and overhead costs, decreased labor hour cost per transaction, more accurate and timely business intelligence, more timely payment, and enhanced cash flow management. However the most striking benefit will be to get organizations to analyze their procurement processes. e-Governance : Objective  Providing information speedily to all citizens  Improving transparency  Improving public services such as transportation, power, health, water, security and municipal services etc.  Reduce Corruption e-Governance development models : The e-Governance Models are  G2C : Government to Citizens  G2B : Government to Business  G2G : Government to Government Figure 1: Governance Development Model
  • 2. An Indepth Understanding of e-Procurement: A Case Study Approach DOI: 10.9790/0661-17652024 www.iosrjournals.org 21 | Page e-Procurement : A major Government to Business e-Governance initiative to bring transparency in public procurement process is e-Procurement. e-Procurement, commonly known as Electronic procurement. Figure 2: e-Procurement Cycle e-Procurement is the business-to-business or business-to-consumer or business-to-Government purchase and sale of Supplies, Works and Services using the Internet. e-Procurement caters to the online tendering process from online tender creation to award of contract(AOC). Using e-Tendering the Departments can create the tender, publish the tender, receive bids, open the tenders, evaluate tenders and finally publish award of contract. Using e-Tendering, the bidders can search tenders, submit bids online and track the status of their bids. Timely and efficient delivery of e-Governance services is an important aspect. Indian IT-Act 2000 has mandated the usage of Digital Signature Certificate (DSC) for e-Procurement. e-Tendering Process : Tender Creation Tender Publish Participation of Bids by Bidder Technical Bid Opening Technical Evaluation Financial Bid Opening Financial Evaluation Award of Contract (AOC) Shaikh Imtiyaj Figure 3: e-Tendering Process e-Procurement: Responsibilities
  • 3. An Indepth Understanding of e-Procurement: A Case Study Approach DOI: 10.9790/0661-17652024 www.iosrjournals.org 22 | Page  Creater of the Tender: - The Tender will be created by the officer by using his/her Digital Signature Certificate, as per approved by the Department Nodal Officer.  Publisher of the Tender:- He will be normally the Head of the Dept (HOD) of the concerned technical department and will be the responsible person for timely and accurately hosting of tender on the portal  Opener of the Tender: - The tender will be decrypted and opened with the Digital Signature Certificates of each opener as identified during publishing the tender. Each opener will have to access one by one for bid opening. The Tender technical core committee members will be normally the openers of tender as decided by the Nodal Officer.  Evaluator of the Tender: - The Evaluator is the person who will evaluate the tenders and upload the final decision of the Tender Evaluation Committee.  Auditor: He will be given privileged access to audit tendering process. Benefits of e-Procurement: For data encryption and security purposes, the Digital Signature Certificate is essential to operate in e- Procurement.  Healthy competition in participation  Bidding possible: 24X7 Availability  Any time, Any where Bid Submission  Paper less Environment  Process Efficiency in entire tendering process  Real time monitoring  Cost Reduction  Reduced Tender related Crime  Transparency Shaikh Imtiyaj Figure 4: Benefits of e-Procurement e-Procurement Risk : Digital Signature Certificates (DSC) can be presented electronically to prove the identity, to access information or services on the Internet or to sign certain documents digitally. DSC provides Authorization, Authentication, Privacy, Non repudiation and Integrity. IT Act 2000 in Government of India gives legal validity to electronic transactions that are digitally signed. A DSC provides high level of security for online transactions. You can use certificates to encrypt information such that only the intended recipient can read it. You can digitally sign information to provide assurance to the recipient that it has not been altered in transit, and enable verification that you actually sent the message.
  • 4. An Indepth Understanding of e-Procurement: A Case Study Approach DOI: 10.9790/0661-17652024 www.iosrjournals.org 23 | Page e-Procurement Trends in India :  Shaikh Imtiyaj Figure 5: e-Procurement Trends in India Algorithm Implementation: DSC is based on MD5 algorithm from Cryptography. MD5 is Message Digest algorithm, which takes as input a message of arbitrary length and produces as output a 128-bit "message digest" of the input. MD5 is more secure than MD4. import java.security.*; class Md5FeeduDemoTest { public static void main(String[] a) { try { MessageDigest md = MessageDigest.getInstance("MD5"); System.out.println("Message Digest5 information: "); System.out.println(" Algorithm = "+md.getAlgorithm()); System.out.println(" Provider = "+md.getProvider()); System.out.println(" toString = "+md.toString()); String input = ""; md.update(input.getBytes()); byte[] output = md.digest(); System.out.println(); System.out.println("MD5(""+input+"") ="); System.out.println(" "+bytesToHex(output)); input = "xyz"; md.update(input.getBytes()); output = md.digest(); System.out.println(); System.out.println("MD5(""+input+"") ="); System.out.println(" "+bytesToHex(output)); input = "abcdefghijklmnopqrstuvwxyz"; md.update(input.getBytes()); output = md.digest();
  • 5. An Indepth Understanding of e-Procurement: A Case Study Approach DOI: 10.9790/0661-17652024 www.iosrjournals.org 24 | Page System.out.println(); System.out.println("MD5(""+input+"") ="); System.out.println(" "+bytesToHex(output)); } catch (Exception e) { System.out.println("Exception: "+e); } } public static String bytesToHex(byte[] b) { char hexDigit[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; StringBuffer buf = new StringBuffer(); for (int j=0; j<b.length; j++) { buf.append(hexDigit[(b[j] >> 4) & 0x0f]); buf.append(hexDigit[b[j] & 0x0f]); } return buf.toString(); } } Conclusion and Future Work: e-Procurement reduces the tender related crimes is certainly a significant achievement on the way to a better, cleaner, honest and developed nation. This study focuses on different opportunities of G2B initiatives in India. The basic objective of research is to provide a model for better implementation of e-Governance application. References [1]. Shaikh Imtiyaj, N.R Biswal, T.P Ray, Dr A.K Hota , “Digital Signature Certificate: A blessing for e-Governance Application in Human Development”, International Journal of Advanced Research in Science, Engineering and Technology,Vol. 2, Issue 1 , pp 350-355,January 2015 [2]. William S.,” Cryptography and Network Security, Principles and Practice”, Prentice Hall of India, 2005. [3]. Dhiren R. Patel ,”Information Security Theory and Practice” , 2008 Edition [4]. Atul Kahate, “Cryptography and Network Security”, Second Edition [5]. Cryptography Engineering: Design Principles and Practical Applications by Niels Ferguson, Bruce Schneier, Tadayoshi Kohno [6]. www.eprocure.gov.in/eprocure/app, last visited 07th Dec 2015 [7]. https://tendersodisha.gov.in/nicgep/app , last visited 07th Dec 2015 [8]. “Digital Signature,” available at: http:// http://nicca.nic.in , last visited 05th Feb 2015 [9]. “e-Governance,” available at http:// india.gov.in , last visited 07th Dec 2015 [10]. “e-Procurement,” available at http:// demoeproc.nic.in , last visited 07th Dec 2015