background

Zenkraft Blog

Run your Logistics and Post-Purchase Experience on the Salesforce Platform.

Bulk Cancel UPS shipments

Published on 18 July 2017 by in  

A quick code snippet for you today, if you want to cancel all UPS shipments that have not been picked up.

Here is the code to run in Developer Console:

String queryString = 'SELECT ' + 'Id,Name, zkups__UPSShipmatePreference__c, zkups__MasterTrackingId__c, zkups__ShipmentProcessingCompleted__c, ' +
'zkups__SsProcessReturnShipment__c, zkups__ServiceType__c, zkups__SenderState__c, zkups__SenderCountry__c, zkups__SenderName__c, ' +
'zkups__RecipientState__c, zkups__RecipientCountry__c, zkups__ShipmentDeleted__c, zkups__Delivered__c, zkups__StatusDescription__c, zkups__ModKey__c ' +
'FROM zkups__UPSShipment__c WHERE Name <= \'UPS-Shipment-0000001000\' and zkups__StatusDescription__c like \'%BILLING INFORMATION RECEIVED\' and zkups__Delivered__c = false and zkups__ShipmentDeleted__c = false' ;
Integer recordCount = 1;
zkups.ShipmentInterface.startMassShipmentCancelBatch(queryString, recordCount);

Line 4 determines the shipments we want to set as cancelled. For this snippet we have decided to cancel all shipments older than UPS-Shipment-0000001000.

Line 7 then uses our startMassShipmentCancelBatch process that goes ...

Continue reading »

UPS Address validation on an Account

Published on 23 May 2017 by in  

Today's blog post will show the code you need to validate an Account address via the UPS Address Validation call you can find in the UPS Shipmate app.

Firstly we will look at the Controller code, and we will explain how it works below:

public class ValidateAccountAddressCtrl {
public List<zkups.ValidateAddressResult.AddressValidationResult> validationAddressesList {get; set;}
public ValidateAccountAddressCtrl() {}
public void init() {
Account accountToCheck = [
SELECT ShippingStreet, ShippingCity, ShippingPostalCode, ShippingCountry,
ShippingState
FROM Account
WHERE Name = 'Your Account Name'
LIMIT 1];
zkups__UPSShipmatePreference__c shipmatePref = [
SELECT Id, Name,
zkups__UserId__c, zkups__UserIdVisible__c, zkups__UPSAccountNumber__c,
zkups__ThermalPrinterName__c, zkups__Street__c, zkups__State__c, zkups__SenderPhoneDefault__c,
zkups__SenderNameDefault__c, zkups__SenderEMailDefault__c, zkups__SendEMailNotificationToShipper__c,
zkups__SendEMailNotificationToRecipient__c, zkups__PrimaryContactTitle__c, zkups__PrimaryContactPhone__c,
zkups__PrimaryContactName__c, zkups__PrimaryContactEmail__c, zkups__PostalCode__c, zkups__Password__c,
zkups__LabelImageTypeDefault__c, zkups__EMailNotifyOnExceptionDefault__c, zkups__EMailNotifyOnDeliveryDefault__c,
zkups__EMailMessageDefault__c, zkups__DetailedViewShipmatePreferenceList__c, zkups__DetailedViewReUsePackageList__c,
zkups__Country__c, zkups__CompanyURL__c, zkups__CompanyName__c, zkups__City__c, zkups__AccessLicenseNumber__c,
zkups__ShippingStreet__c, zkups__ShippingCity__c, zkups__ShippingState__c, zkups__ShippingPostalCode__c,
zkups__ShippingCountry__c, zkups__ShippingIsResidential__c
FROM zkups__UPSShipmatePreference__c
LIMIT 1];
zkups__UPSShipment__c shipmentValidationAddress = new zkups__UPSShipment__c();
shipmentValidationAddress.zkups__RecipientStreet__c = accountToCheck.ShippingStreet;
shipmentValidationAddress.zkups__RecipientCity__c = accountToCheck.ShippingCity;
shipmentValidationAddress.zkups__RecipientPostalCode__c = accountToCheck.ShippingPostalCode;
shipmentValidationAddress.zkups__RecipientCountry__c = accountToCheck.ShippingCountry;
shipmentValidationAddress.zkups__RecipientState__c = accountToCheck.ShippingState;
zkups.ValidateAddressResult validateAddressResult = zkups.ShipmentInterface.validateAddress(shipmentValidationAddress, shipmatePref);
if (validateAddressResult.results != null) {
validationAddressesList = validateAddressResult.results;
}
}
}

Lines 7-12: This is where you specify the name of the Account object that you want to validate the address for.

Lines 14-27: We need to get the...

Continue reading »

Create a button to replicate the Custom Address Source “New Shipment Functionality”

Published on 26 April 2017 by in  

Today we will show you how to create a custom button on your object that does the same as the New Shipment button from your related list.

The most usual use case for this is if you want to create 2 one click shipment buttons from a standard or custom object. One for a standard outbound shipment, and the other for a return shipment.

For this demo we will use the standard Case object. The first thing we need to do is make sure our Custom Address Source related lists already added to...

Continue reading »