business process optimization
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3226
Business Process Visual ARCHITECT 2.1
Business Process Visual ARCHITECT is a full-featured business process modeler. more>>
Business Process Visual ARCHITECT is a full-featured business process modeler that supports the latest OMG Business Process Modeling Notation (BPMN).
Business Process Visual ARCHITECT provides an easy-to-use diagramming environment for you to model your business process, and is a proven solution for bridging the gap between business analysts and IT professionals.
Main features:
- Frictionless business modeling environment
- On-the-fly syntax check and correction according to BPMN specification
- Advanced printing facility for outputting large business process diagram
- Share business process diagram among your company with Teamwork Server
- Incorporate user-defined images to the business process diagram to increase the readability.
Enhancements:
- Branch and tag capabilities were added to the VP Teamwork Server, including Subversion and CVS repository integration.
- This allows different modeling projects to be run in parallel while keeping the release quality project stable in the trunk.
- There were also a number of enhancements for various other features.
<<lessBusiness Process Visual ARCHITECT provides an easy-to-use diagramming environment for you to model your business process, and is a proven solution for bridging the gap between business analysts and IT professionals.
Main features:
- Frictionless business modeling environment
- On-the-fly syntax check and correction according to BPMN specification
- Advanced printing facility for outputting large business process diagram
- Share business process diagram among your company with Teamwork Server
- Incorporate user-defined images to the business process diagram to increase the readability.
Enhancements:
- Branch and tag capabilities were added to the VP Teamwork Server, including Subversion and CVS repository integration.
- This allows different modeling projects to be run in parallel while keeping the release quality project stable in the trunk.
- There were also a number of enhancements for various other features.
Download (94.9MB)
Added: 2007-08-05 License: GPL (GNU General Public License) Price:
522 downloads
Web Business Pro 4a
Web Business Pro is a Web application designed for everyday business activities. more>>
Web Business Pro is a Web application designed for everyday business activities. The project includes support for customer lists, inventory, receipt printing, and accounting. Fully featured search functions and filters make it easy to find what you need quickly.
<<less Download (1.3MB)
Added: 2007-07-22 License: LGPL (GNU Lesser General Public License) Price:
828 downloads
Business::Associates 1.00
Business::Associates is a library to handle the new XML interface for the Amazon.com Associates program. more>>
Business::Associates is a library to handle the new XML interface for the Amazon.com Associates program.
This package replaces the Amazon Recommends (tm) links to provide a powerful and simple to use interface that allows you to embed complex, highly targeted ads on your web site (or other documents).
This modules supports many new features that are not available with the standard interfaces. For example, multi-mode searches, i.e. the ability to search across multiple product categories (dvd+video+music+...) is fully supported.
See also http://cybaea.com/Associates.html for more information and example screen shots.
Currently, only the Amazon.com Associates program is supported.
<<lessThis package replaces the Amazon Recommends (tm) links to provide a powerful and simple to use interface that allows you to embed complex, highly targeted ads on your web site (or other documents).
This modules supports many new features that are not available with the standard interfaces. For example, multi-mode searches, i.e. the ability to search across multiple product categories (dvd+video+music+...) is fully supported.
See also http://cybaea.com/Associates.html for more information and example screen shots.
Currently, only the Amazon.com Associates program is supported.
Download (0.045MB)
Added: 2006-09-11 License: Perl Artistic License Price:
1138 downloads
bibEC Process Card 1.3.12
bibEC Process Card is a multiple gateway credit card payment processor. more>>
bibEC Process Card is a multiple gateway credit card payment processor.
This class is meant to process credit card payments via one of multiple payment gateways that are supported.
Currently the class supports the following payment gateways: Plug and Pay, Authorize.net, ViaKlix, and paynet . Changing between payment gateways is mostly a matter of changing the class constructor parameter.
The class provides a payment gateway independent API with functions for:
- Logging the payment activity
- Set the payment gateway authentication credentials
- Set the paying customer details
- Set the ship to details
- Set the credit card details
- Set the valuta
- Specify the order details
- Submit the payment processing request and retrieving the results
The payment submission is done securely when possible using PHP SSL socket connections or the Curl extension for PHP or the Curl command line.
<<lessThis class is meant to process credit card payments via one of multiple payment gateways that are supported.
Currently the class supports the following payment gateways: Plug and Pay, Authorize.net, ViaKlix, and paynet . Changing between payment gateways is mostly a matter of changing the class constructor parameter.
The class provides a payment gateway independent API with functions for:
- Logging the payment activity
- Set the payment gateway authentication credentials
- Set the paying customer details
- Set the ship to details
- Set the credit card details
- Set the valuta
- Specify the order details
- Submit the payment processing request and retrieving the results
The payment submission is done securely when possible using PHP SSL socket connections or the Curl extension for PHP or the Curl command line.
Download (MB)
Added: 2007-06-15 License: Freeware Price:
861 downloads
Internet Business Services 1.0
Do internet telephones sound too good to be true? Well that was exactly what I was thinking, so I decided to delve into the world of Internet telephon... more>> <<less
Download (421KB)
Added: 2009-04-18 License: Freeware Price: Free
190 downloads
Business::Associates::XML 1.00
Business::Associates::XML is a Perl module for encapsulating XML, XSL, and XSLT operations for the Associates package. more>>
Business::Associates::XML is a Perl module for encapsulating XML, XSL, and XSLT operations for the Associates package.
SYNOPSIS
use Business::Associates::Data();
use Business::Associates::XML();
$data = Business::Associates::Data->$type ($what, $mode);
$xml = new Business::Associates::XML ($data) if defined $data;
$s = $xml->transform($ss_name, %args) if defined $xml;
print "nn$sn";
METHODS
new($data [, %options ])
This constructor takes an Business::Associates::Data object as the required argument. The optional options hash can be used to set additional values.
xml
This is the parsed xml string. If you want to pass special arguments to the XML::LibXML library then you can do it with this argument:
$data = Business::Associates::Data->$type ($what, $mode);
my $xml_string = $data->xml();
my $parser = XML::LibXML->new();
$parser->load_ext_dtd(0); # Global setting, unfortunately :-(
my $xml = new Business::Associates::XML(
xml => $parser->parse_string($xml_string));
...
It is possibly more efficient to access this element directly after the construction to set the options on the newly constructed XML::LibXML object.
transform($stylesheet_name [, %args ] )
This method transforms the XML using the named stylesheet, parsing any additional arguments to the stylesheet transform method. Typically, these additional arguments are used to set global XSLT parameters.
$data = Business::Associates::Data->$type ($what, $mode);
$xml = new Business::Associates::XML ($data);
$s = $xml->transform($ss_name, width => "3");
Note that these are named stylesheets. By default, they are found in the Base_Directory (see "Base_Directory") with the same name and the extension .xslt. To change this, either change the Base_Directory variable, or derive another class from this, overriding the get_stylesheet method.
<<lessSYNOPSIS
use Business::Associates::Data();
use Business::Associates::XML();
$data = Business::Associates::Data->$type ($what, $mode);
$xml = new Business::Associates::XML ($data) if defined $data;
$s = $xml->transform($ss_name, %args) if defined $xml;
print "nn$sn";
METHODS
new($data [, %options ])
This constructor takes an Business::Associates::Data object as the required argument. The optional options hash can be used to set additional values.
xml
This is the parsed xml string. If you want to pass special arguments to the XML::LibXML library then you can do it with this argument:
$data = Business::Associates::Data->$type ($what, $mode);
my $xml_string = $data->xml();
my $parser = XML::LibXML->new();
$parser->load_ext_dtd(0); # Global setting, unfortunately :-(
my $xml = new Business::Associates::XML(
xml => $parser->parse_string($xml_string));
...
It is possibly more efficient to access this element directly after the construction to set the options on the newly constructed XML::LibXML object.
transform($stylesheet_name [, %args ] )
This method transforms the XML using the named stylesheet, parsing any additional arguments to the stylesheet transform method. Typically, these additional arguments are used to set global XSLT parameters.
$data = Business::Associates::Data->$type ($what, $mode);
$xml = new Business::Associates::XML ($data);
$s = $xml->transform($ss_name, width => "3");
Note that these are named stylesheets. By default, they are found in the Base_Directory (see "Base_Directory") with the same name and the extension .xslt. To change this, either change the Base_Directory variable, or derive another class from this, overriding the get_stylesheet method.
Download (0.045MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1135 downloads
SabayonLinux 1.0 (Business Edition)
SabayonLinux is a live DVD designed to transform a computer into a powerful Gentoo Linux system in less than 5 minutes. more>>
Sabayon Linux is a live DVD designed to transform a computer into a powerful Gentoo Linux system in less than 5 minutes. Gentoo Linux is a Linux distribution powered by a software install manager engine called "Portage".
Besides functioning as a live DVD, Sabayon Linux can also be installed on a hard disk, acting effectively as an easy-to-use Gentoo installation disk. The live DVD includes a large range of desktop environments and open source software applications, such as KDE, GNOME, XFce, Fluxbox, KOffice, OpenOffice.org, FreeNX, amaroK, Kaffeine, etc.
Enhancements:
- Sabayon has prepared for you a fast, cheap and stable solution for every "office needs" you might have! INFO/FEATURES: Optimized Server profile; Kernel 2.6.22 Sabayon Linux Powered; Stable branch for almost all packages; Wpa_supplicant compiled with a better support for mac80211; Latest madwifi driver; Latest Sabayon Installer; Latest Ati-drivers; Latest Nvidia-drivers; Fast installation speed; Package Selection on install time; Really fast working live environment; Easy firewall management with Kmyfirewall.
<<lessBesides functioning as a live DVD, Sabayon Linux can also be installed on a hard disk, acting effectively as an easy-to-use Gentoo installation disk. The live DVD includes a large range of desktop environments and open source software applications, such as KDE, GNOME, XFce, Fluxbox, KOffice, OpenOffice.org, FreeNX, amaroK, Kaffeine, etc.
Enhancements:
- Sabayon has prepared for you a fast, cheap and stable solution for every "office needs" you might have! INFO/FEATURES: Optimized Server profile; Kernel 2.6.22 Sabayon Linux Powered; Stable branch for almost all packages; Wpa_supplicant compiled with a better support for mac80211; Latest madwifi driver; Latest Sabayon Installer; Latest Ati-drivers; Latest Nvidia-drivers; Fast installation speed; Package Selection on install time; Really fast working live environment; Easy firewall management with Kmyfirewall.
Download (1739MB)
Added: 2007-07-17 License: GPL (GNU General Public License) Price:
830 downloads
search engine optimization seo toolbar 1.0.1
search engine optimization toolbar, from Netvantage. paid search management, ppc, search engine marketing, sem, seo, search engine optimization, pay ... more>> <<less
Download (537KB)
Added: 2009-04-02 License: Freeware Price: Free
205 downloads
Pizza Business 1.0-beta9
Pizza Business project is a game in which you can create your own pizza business. more>>
Pizza Business project is a game in which you can create your own pizza business.
Pizza Business is a platform-independent restaurant simulation game written in object-oriented C++. It utilizes the WxWindows library.
Enhancements:
- Corrected date errors in this Changelog file (it said "2002" instead of "2003" on recent releases) -tsarkon
- Save/Load feature has been buggy. This have been fixed in this version. -ares32585
- The binary file has been moved to the bin directory (Makefile controlled) -tsarkon
- Partial implementation of Linux UI installation script -tsarkon
<<lessPizza Business is a platform-independent restaurant simulation game written in object-oriented C++. It utilizes the WxWindows library.
Enhancements:
- Corrected date errors in this Changelog file (it said "2002" instead of "2003" on recent releases) -tsarkon
- Save/Load feature has been buggy. This have been fixed in this version. -ares32585
- The binary file has been moved to the bin directory (Makefile controlled) -tsarkon
- Partial implementation of Linux UI installation script -tsarkon
Download (1.6MB)
Added: 2006-11-06 License: GPL (GNU General Public License) Price:
1093 downloads
Business::Shipping::DataTools 1.01
Business::Shipping::DataTools is a Perl module that can convert tables from original format into usable format. more>>
Business::Shipping::DataTools is a Perl module that can convert tables from original format into usable format.
SYNOPSIS
bin/update.pl
This is an optional module. It is used to update Business::Shipping::DataFiles. These tools convert the original source data obtained from shippers into a format that Business::Shipping can use. It is normally run only once per year when UPS releases new tables (which explains the poor quality of the source code).
It will unzip the data UPS data files and create .dat files. These .dat files are used by Business::Shipping, you can copy them to the data directory.
<<lessSYNOPSIS
bin/update.pl
This is an optional module. It is used to update Business::Shipping::DataFiles. These tools convert the original source data obtained from shippers into a format that Business::Shipping can use. It is normally run only once per year when UPS releases new tables (which explains the poor quality of the source code).
It will unzip the data UPS data files and create .dat files. These .dat files are used by Business::Shipping, you can copy them to the data directory.
Download (1.3MB)
Added: 2006-08-12 License: Perl Artistic License Price:
1169 downloads
Kumula Business Suite 1.0
Kumula is designed to become a complete software suite for business needs. more>>
Kumula is designed to become a complete software suite for business needs. Started as software for consultants, it is flexible enough to be used by almost any class of business. Kumula Business Suite provides a small CRM (Clients) and a Mini-DMS (Documents), enhanced by some other applications. Everybody is invited to use it or enhance it.
Kumula is written in Qt (http://www.trolltech.com/products/qt/), PyQt and Python using the fabulous Eric3 development environment.
Enhancements:
- This is the last stable release before Ill port it to Qt4 (as "Kumula2"), so I feel free to call it "1.0".
- The whole suite is becoming bigger and bigger, so now its time to split it. This is the base package with the central Kumula library and the most important applications. The package contains the following programs:
BizCalc:
- The modular designed calculator tool, coming with a spartanic RPN calculator and an unit conversion module
Clients:
- The client/customer management application, with many improvements (like individual client attributes) and the modules "Info" (logo+description), "Contacts" (for managing contact persones, addresses and communication data) and "Tickets" (for letting the users talk about a client like on a web forum)
Configurator:
- The central configuration utility, to setup the database access and the user interface (menus, icons, ...) of all Kumula applications.
Users:
- A small tool for managing the people using Kumula.
- Further application will be provided in separate packages for easier maintenance and faster bugfixes and updates.
<<lessKumula is written in Qt (http://www.trolltech.com/products/qt/), PyQt and Python using the fabulous Eric3 development environment.
Enhancements:
- This is the last stable release before Ill port it to Qt4 (as "Kumula2"), so I feel free to call it "1.0".
- The whole suite is becoming bigger and bigger, so now its time to split it. This is the base package with the central Kumula library and the most important applications. The package contains the following programs:
BizCalc:
- The modular designed calculator tool, coming with a spartanic RPN calculator and an unit conversion module
Clients:
- The client/customer management application, with many improvements (like individual client attributes) and the modules "Info" (logo+description), "Contacts" (for managing contact persones, addresses and communication data) and "Tickets" (for letting the users talk about a client like on a web forum)
Configurator:
- The central configuration utility, to setup the database access and the user interface (menus, icons, ...) of all Kumula applications.
Users:
- A small tool for managing the people using Kumula.
- Further application will be provided in separate packages for easier maintenance and faster bugfixes and updates.
Download (0.43MB)
Added: 2006-05-08 License: LGPL (GNU Lesser General Public License) Price:
1270 downloads
The Open For Business Project 3.0.0
The Open For Business Project is a J2EE-based enterprise automation tools and applications. more>>
The Open For Business Project is an open source enterprise automation software project licensed under the MIT Open Source License.
By open source enterprise automation we mean: Open Source ERP, Open Source CRM, Open Source E-Business / E-Commerce, Open Source SCM, Open Source MRP, Open Source CMMS/EAM, and so on.
Main features:
- advanced e-commerce
- catalog management
- promotion & pricing management
- order management (sales & purchase)
- customer management (part of general party management)
- warehouse management
- fulfillment (auto stock moves, batched pick, pack & ship)
- accounting (invoice, payment & billing accounts)
- manufacturing management
- general work effort management (events, tasks, projects, requests, etc)
- content management (for product content, web sites, general content, blogging, forums, etc)
- and much more all in an open source package!
<<lessBy open source enterprise automation we mean: Open Source ERP, Open Source CRM, Open Source E-Business / E-Commerce, Open Source SCM, Open Source MRP, Open Source CMMS/EAM, and so on.
Main features:
- advanced e-commerce
- catalog management
- promotion & pricing management
- order management (sales & purchase)
- customer management (part of general party management)
- warehouse management
- fulfillment (auto stock moves, batched pick, pack & ship)
- accounting (invoice, payment & billing accounts)
- manufacturing management
- general work effort management (events, tasks, projects, requests, etc)
- content management (for product content, web sites, general content, blogging, forums, etc)
- and much more all in an open source package!
Download (28.51MB)
Added: 2005-04-28 License: MIT/X Consortium License Price:
1642 downloads
Process Raw Images 0.2
Process Raw Images is a service menu for processing many raw images at once. Supports output to Jpeg, Png and Tiff. more>>
Process Raw Images is a service menu for processing many raw images at once. Supports output to Jpeg, Png and Tiff.
<<less Download (0.006MB)
Added: 2007-02-05 License: GPL (GNU General Public License) Price:
996 downloads
Business::PayBox 1.0.1
Business::PayBox is a OO wrapper for Paybox Java Localhost Listener (LHL). more>>
Business::PayBox is a OO wrapper for Paybox Java Localhost Listener (LHL).
SYNOPSIS
To create object:
use Business::PayBox;
$PB = Business::PayBox->new(MRID => +490001234567);
or
$PB = Business::PayBox->new(MRID => +490001234567, server => 192.168.1.1, port => 61);
To do a payment:
$result = $PB->do_test_payment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
or
$result = $PB->dopayment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
This is an OO wrapper for the PAYBOX - Integrated Solution. You must install Localhostlistener LHL (which comes as Java-Jar) to use this module. After you succeed with this you can process payments as described above.
CONSTRUCTOR
new($key => $value, ...)
Call to initialize object. Valid Parameters are:
Mandatory:
MRID => Merchant ID
Others:
server => IP address or name of LHL server. (defaults to localhost)
port => Port of LHL server. (defaults to port 60)
CMID => Customer ID (defaults to 0)
AUTT => Transaction Type
LANG => Language (defaults to DE)
PYMD => Zahlungsziel (defaults to 1)
LCMT => Localtime stamp (defaults to localtime)
<<lessSYNOPSIS
To create object:
use Business::PayBox;
$PB = Business::PayBox->new(MRID => +490001234567);
or
$PB = Business::PayBox->new(MRID => +490001234567, server => 192.168.1.1, port => 61);
To do a payment:
$result = $PB->do_test_payment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
or
$result = $PB->dopayment(AMNT => 100, CURR => DEM, ORNM=>TEST123, CPID => +491773729269);
This is an OO wrapper for the PAYBOX - Integrated Solution. You must install Localhostlistener LHL (which comes as Java-Jar) to use this module. After you succeed with this you can process payments as described above.
CONSTRUCTOR
new($key => $value, ...)
Call to initialize object. Valid Parameters are:
Mandatory:
MRID => Merchant ID
Others:
server => IP address or name of LHL server. (defaults to localhost)
port => Port of LHL server. (defaults to port 60)
CMID => Customer ID (defaults to 0)
AUTT => Transaction Type
LANG => Language (defaults to DE)
PYMD => Zahlungsziel (defaults to 1)
LCMT => Localtime stamp (defaults to localtime)
Download (0.003MB)
Added: 2007-06-05 License: Perl Artistic License Price:
872 downloads
Business::GestPayCrypt 0.41
Business::GestPayCrypt is a Perl interface to the Italian online payment system GestPay. more>>
Business::GestPayCrypt is a Perl interface to the Italian online payment system GestPay.
SYNOPSIS
#
# Request
#
use Business::GestPayCrypt;
my $obj = new Business::GestPayCrypt;
$obj->SetShopLogin($ShopLogin);
$obj->SetCurrency($Currency);
$obj->SetAmount($Amount);
$obj->SetShopTransactionID($ShopTransationID);
$obj->SetLanguage($Language);
$obj->Encrypt();
if ( $obj->GetErrorCode() ) {
print Error: , $obj->GetErrorCode(), ,
$objCrypt->GetErrorDescription();
} else {
my $a = $obj->GetShopLogin();
my $b = $obj->GetEncryptedString();
print qq~
~;
}
#
# Response
#
use Business::GestPayCrypt;
my $obj = new Business::GestPayCrypt;
$obj->SetShopLogin($ShopLogin);
$obj->SetEncryptedString($b);
$obj->Decrypt();
if ( $objCrypt->GetErrorCode() ) {
print Error: , $obj->GetErrorCode() , ,
$objCrypt->GetErrorDescription();
} else {
print ShopLogin : , $obj->GetShopLogin(), "n";
print Currency :, $obj->GetCurrency(), "n";
print Amount : , $obj->GetAmount(), "n";
print ShopTransactionID : , $obj->GetShopTransactionID(), "n";
print BuyerName : , $obj->GetBuyerName(), "n";
print BuyerEmail : , $obj->GetBuyerEmail(), "n";
print TransactionResult : , $obj->GetTransactionResult(), "n";
print AuthorizationCode : , $obj->GetAuthorizationCode(), "n";
print BankTransactionID : , $obj->GetBankTransactionID(), "n";
print ErrorCode : , $obj->GetErrorCode(), "n";
print ErrorDescription : , $obj->GetErrorDescription(), "n";
print AlertCode : , $obj->GetAlertCode(), "n";
print AlertDescription : , $obj->GetAlertDescription(), "n";
print CustomInfo : , $obj->GetCustomInfo(), "n";
}
<<lessSYNOPSIS
#
# Request
#
use Business::GestPayCrypt;
my $obj = new Business::GestPayCrypt;
$obj->SetShopLogin($ShopLogin);
$obj->SetCurrency($Currency);
$obj->SetAmount($Amount);
$obj->SetShopTransactionID($ShopTransationID);
$obj->SetLanguage($Language);
$obj->Encrypt();
if ( $obj->GetErrorCode() ) {
print Error: , $obj->GetErrorCode(), ,
$objCrypt->GetErrorDescription();
} else {
my $a = $obj->GetShopLogin();
my $b = $obj->GetEncryptedString();
print qq~
~;
}
#
# Response
#
use Business::GestPayCrypt;
my $obj = new Business::GestPayCrypt;
$obj->SetShopLogin($ShopLogin);
$obj->SetEncryptedString($b);
$obj->Decrypt();
if ( $objCrypt->GetErrorCode() ) {
print Error: , $obj->GetErrorCode() , ,
$objCrypt->GetErrorDescription();
} else {
print ShopLogin : , $obj->GetShopLogin(), "n";
print Currency :, $obj->GetCurrency(), "n";
print Amount : , $obj->GetAmount(), "n";
print ShopTransactionID : , $obj->GetShopTransactionID(), "n";
print BuyerName : , $obj->GetBuyerName(), "n";
print BuyerEmail : , $obj->GetBuyerEmail(), "n";
print TransactionResult : , $obj->GetTransactionResult(), "n";
print AuthorizationCode : , $obj->GetAuthorizationCode(), "n";
print BankTransactionID : , $obj->GetBankTransactionID(), "n";
print ErrorCode : , $obj->GetErrorCode(), "n";
print ErrorDescription : , $obj->GetErrorDescription(), "n";
print AlertCode : , $obj->GetAlertCode(), "n";
print AlertDescription : , $obj->GetAlertDescription(), "n";
print CustomInfo : , $obj->GetCustomInfo(), "n";
}
Download (0.007MB)
Added: 2007-08-01 License: Perl Artistic License Price:
815 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above business process optimization search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed