The Best Way To Buy!
IP*Works!
Microsoft .NET ActiveX / VB ASP Delphi C++ Builder C++ Java J2EE Unix / Linux Mac OS X .NET CF
IP*Works! SSL
IP*Works! S/MIME
Microsoft .NET ActiveX / VB ASP Delphi C++ Builder C++ Java J2EE
IP*Works! SSH
Microsoft .NET Java J2EE .NET CF
IP*Works! Zip
IP*Works! EDI/AS2
Microsoft .NET Java / J2EE
IP*Works! SNMP
Microsoft .NET ActiveX / VB Delphi C++ Builder C++ Java J2EE .NET CF
QuickBooks Integrator
E-Payment Integrator
Vital/TSYS Integrator
Microsoft .NET ActiveX / VB ASP Delphi C++ Builder C++ Unix / Linux Mac OS X
Paymentech Integrator
FDMS Integrator
Microsoft .NET ActiveX / VB ASP Delphi C++ Builder C++ Java J2EE .NET CF
USPS Integrator
FedEx Integrator
UPS Integrator
E-Banking Integrator
Microsoft .NET ActiveX / VB ASP Delphi C++ Builder C++ Java J2EE Unix / Linux
PayPal Integrator
Amazon Integrator
Biztalk Adapters
SQL Server SSIS Tasks
Windows Workflow
SharePoint Extensions
3-D Secure MPI
Microsoft .NET ASP Delphi C++ Builder C++ Java / J2EE
"Your software has always been the superior product in the marketplace."
-- David Johnson Piedmont Health Alliance
Properties Methods Events Configuration Settings
The Level3Extension component is a tool used to create Level3 Corporate Purchasing Card addendum aggregates, which can then be passed to the CCSETTLE component and settled.
NOTE: What follows is a very short description of the component interfaces. For more information, please consult the help files that come with the respective package.
This Level3Extension component creates Level III addendum data, which can be sent in the settlement to achieve a better interchange rate when accepting corporate purchasing cards. The Level III addendum allows the merchant to send very detailed information about every item that was purchased by the card holder, as well as tax and shipping information.
This component creates a different addendum aggregate based on the CardType. Visa and MasterCard addendums differ slightly, and therefore a slightly different set of properties are required for each.
The following properties are valid for both ctVisa and ctMasterCard CardTypes.
Additional properties for the ctMasterCard CardType include:
The following example illustrates how to build a Level III addendum for the ctVisa CardType:
'First authorize the credit card CCECommerce1.TransactionAmount = "53" CCECommerce.Authorize() 'Then, put the result into the settlement component CCSettle.DetailRecordCount = 1 CCSettle.DetailAggregate[0] = CCECommerce.GetDetailAggregate() 'Now build the Level3 Extension. 'The following properties are required for a Visa Corporate Purchasing Card: Level3Extension.CardType = ctVisa Level3Extension.LocalTax = "EXEMPT" Level3Extension.NationalTax = "0" Level3Extension.PurchaseOrder = "purchOrdNum" Level3Extension.MerchantTaxId = "merchantTaxId" Level3Extension.CustomerTaxId = "customerTaxId" Level3Extension.CommodityCode = "fake" Level3Extension.DiscountAmount = "0" Level3Extension.FreightAmount = "0" Level3Extension.DutyAmount = "0" Level3Extension.DestinationZip = "27709" Level3Extension.ShipFromZip = "27709" Level3Extension.DestinationCountry = "840" Level3Extension.TaxInvoiceNumber = "VATInvoiceRefNo" Level3Extension.OrderDate = "060526" Level3Extension.FreightTaxAmount = "0" Level3Extension.FreightTaxRate = "0" 'Begin adding line items: Level3Extension.LineItemCount = 2 Level3Extension.ItemCommodityCode[0] = "fake" Level3Extension.ItemDescription[0] = "hardware" Level3Extension.ItemProductCode[0] = "productCode123" Level3Extension.ItemQuantity[0] = 1 Level3Extension.ItemUnits[0] = "" Level3Extension.ItemUnitCost[0] = "33" Level3Extension.ItemTaxAmount[0] = "0" Level3Extension.ItemTaxRate[0] = "0" Level3Extension.ItemDiscountAmount[0] = "0" Level3Extension.ItemTotal[0] = "33" Level3Extension.ItemCommodityCode[1] = "fake" Level3Extension.ItemDescription[1] = "hardware" Level3Extension.ItemProductCode[1] = "productCode124" Level3Extension.ItemQuantity[1] = 1 Level3Extension.ItemUnits[1] = "" Level3Extension.ItemUnitCost[1] = "20" Level3Extension.ItemTaxAmount[1] = "0" Level3Extension.ItemTaxRate[1] = "0" Level3Extension.ItemDiscountAmount[1] = "0" Level3Extension.ItemTotal[1] = "20" 'Finally, add the Level3 addendum to the same index in the settlement. CCSettle.DetailAddendum[0] = Level3Extension1.GetAddendum()
A Level III addendum for the ctMasterCard CardType is constructed similarly:
'First authorize the credit card CCECommerce1.TransactionAmount = "200" CCECommerce.Authorize() 'Then, put the result into the settlement component CCSettle.DetailRecordCount = 2 CCSettle.DetailAggregate[1] = CCECommerce.GetDetailAggregate() 'Now build the Level3 Extension. Level3Extension1.cardType = ctMasterCard Level3Extension1.LocalTax = "EXEMPT" Level3Extension1.NationalTax = "0" Level3Extension1.PurchaseOrder = "cardholderRefId" Level3Extension1.FreightAmount = "0" Level3Extension1.DutyAmount = "0" Level3Extension1.DestinationZip = "27709" Level3Extension1.ShipFromZip = "27709" Level3Extension1.DestinationCountry = "USA" Level3Extension1.AlternateTaxAmount = "0" Level3Extension1.AlternateTaxId = "altTaxId" 'Begin adding line items: Level3Extension1.LineItemCount = 2 Level3Extension1.ItemDescription[0] = "bolt" Level3Extension1.ItemProductCode[0] = "BOLT6x20" Level3Extension1.ItemQuantity[0] = 2 Level3Extension1.ItemUnits[0] = "each" Level3Extension1.ItemTaxRate[0] = "0" Level3Extension1.ItemTaxType[0] = "taxType" Level3Extension1.ItemTaxAmount[0] = "0" Level3Extension1.ItemDiscountAmount[0] = "0" Level3Extension1.ItemTaxIncluded[0] = False Level3Extension1.ItemTotal[0] = "100" Level3Extension1.ItemDiscountAmount[0] = "0" Level3Extension1.ItemDiscountRate[0] = "0" Level3Extension1.ItemDescription[1] = "flange nut" Level3Extension1.ItemProductCode[1] = "FLANGE6" Level3Extension1.ItemQuantity[1] = 1 Level3Extension1.ItemUnits[1] = "each" Level3Extension1.ItemTaxRate[1] = "0" Level3Extension1.ItemTaxType[1] = "taxType" Level3Extension1.ItemTaxAmount[1] = "0" Level3Extension1.ItemDiscountAmount[1] = "0" Level3Extension1.ItemTaxIncluded[1] = False Level3Extension1.ItemTotal[1] = "100" Level3Extension1.ItemDiscountAmount[1] = "0" Level3Extension1.ItemDiscountRate[1] = "0" 'Finally, add the Level3 addendum to the same index in the settlement. CCSettle1.DetailAddendum[1] = Level3Extension1.GetAddendum()
Note that while Level3 addendum data is only applicable to corporate purchasing cards, you may send Level3 data for all Visa and Master Card cards if you wish.
The following is the full list of the properties of the component with short descriptions. Click on the links for complete descriptions.
Method List The following is the full list of the methods of the component with short descriptions. Click on the links for complete descriptions. Config Sets or retrieves a component configuration setting. GetAddendum Returns a Level III Purchasing card addendum based on the specified CardType Reset Clears all properties to their default values. Event List The following is the full list of the events fired by the component with short descriptions. Click on the links for complete descriptions. Error Information about errors during data delivery. Configuration Settings The following is a list of configuration settings for the component with short descriptions. Click on the links for complete descriptions. CodePage The system code page used for Unicode to Multibyte translations (Windows/COM only). UseFractionalQuantites Allows the use of fractional quantities in the ItemQuantity property.
The following is the full list of the methods of the component with short descriptions. Click on the links for complete descriptions.
Event List The following is the full list of the events fired by the component with short descriptions. Click on the links for complete descriptions. Error Information about errors during data delivery. Configuration Settings The following is a list of configuration settings for the component with short descriptions. Click on the links for complete descriptions. CodePage The system code page used for Unicode to Multibyte translations (Windows/COM only). UseFractionalQuantites Allows the use of fractional quantities in the ItemQuantity property.
The following is the full list of the events fired by the component with short descriptions. Click on the links for complete descriptions.
Configuration Settings The following is a list of configuration settings for the component with short descriptions. Click on the links for complete descriptions. CodePage The system code page used for Unicode to Multibyte translations (Windows/COM only). UseFractionalQuantites Allows the use of fractional quantities in the ItemQuantity property.
The following is a list of configuration settings for the component with short descriptions. Click on the links for complete descriptions.