To use FedEx integration, create shipping items that are marked for integration. After you create a FedEx integrated shipping item, you can enter sales orders with the integrated shipping item selected in the Ship Via field. When you fulfill an order, your FedEx account is charged with the FedEx shipping method rate. To create a… Continue reading Creating Shipping Items with FedEx Integration
Tag: Fedex integration
FedEx Return label printing -SCA
Below function can be used for generating a return label using fedex API printReturnLabel: function (data, authorization) { try { var url = Configuration.get(‘FedEx.ShipAPIURL’); … Continue reading FedEx Return label printing -SCA
Fedex Access token-SCA
Below function can be used for generating the FedEx access token using an extension tokenGeneration: function () { try { var clientId = Configuration.get(‘FedEx.ClientId’); var clientSecret = Configuration.get(‘FedEx.ClientSecret’); var url = Configuration.get(‘FedEx.AuthorizationURL’); var bodyObj = { “grant_type”: “client_credentials”, “client_id”: clientId, “client_secret”: clientSecret, } var headers = { ‘Content-Type’: ‘application/x-www-form-urlencoded’, ‘Accept’: ‘*/*’, ‘Accept-Encoding’: ‘gzip, deflate, br’,… Continue reading Fedex Access token-SCA
FedEx Authentication error
An authentication error may occur when we change the status in the Item Fulfillment to Mark shipped which is the same in the Shipping Label Creation Stage in the Set Up Shipping page. This error can be solved by deleting the existing FedEx Account and adding a fresh Developer User Account. The instructions to create… Continue reading FedEx Authentication error
Shipping cost calculation FedEx
Go to item fulfillment page by Go to Transactions > Sales > Fulfill orders or Sales order > Fulfill Click the Shipping subtab to verify the following: ■ Shipping and address information is correct ■ The Integrated Shipping Label box is checked In the Carrier Subtab select the appropriate data and verify the details: In… Continue reading Shipping cost calculation FedEx
FedEx Account Registration in NetSuite
FedEx real-time rates can be pulled or can be retrieved in NetSuite only after registering the FedEx account in NetSuite. . You must have an active FedEx account to use FedEx real-time rates and integration. We can print bar codes and receive tracking numbers by enabling the shipping label integration feature in NetSuite. To add… Continue reading FedEx Account Registration in NetSuite
‘Delivery Confirmation’ and ‘Signature Required’ on item fulfillment record when FedEx integrated shipping items are used.
There was a requirement to set the “Signature required” as a default value in delivery confirmation field inFedex integrated shippping. As we trying to set it via UI , after the save of IF record the value set back to NONE SELECTED. As we cannot set it through UI we cannot set this via script… Continue reading ‘Delivery Confirmation’ and ‘Signature Required’ on item fulfillment record when FedEx integrated shipping items are used.