UPS Shipping API not pulling Negotiated Rates

I'm having a problem with the shipping options on my eCommerce BC site.
To give you a bit of background: my company has negotiated shipping rates with UPS that are tied to our account on UPS.com.  I've created several test shipments on UPS.com to check my rates and have verified that I am pulling the negotiated values.  UPS.com also gave us a unique API Key that is tied to our account for use with BC.
However, even after inputting my UPS Account ID/Pass and API Key into BC, the shipping rates in BC continue to show up as approximately $5.00 higher than my negotiated rates.  For example, a one pound shipment from 33549 to 90210 with my negotiated rate is supposed to be $9.17, but Business Catalyst shows the shipping cost as $14.16.
The website in question is http://cleangreenwarehouse.worldsecuresystems.com/.  On the home page, add any of the products listed in the "Warehouse Manager's Daily Special Offers" to the shopping cart (I've made the four products in this section weigh 1 LBS each for testing purposes).  Then click the "Checkout" button to navigate to the shopping cart.  Once there, select UPS Ground as your shipping option (With "Address is residential" selected) and select 90210 as the ZIP Code.  You'll see that the shipping cost comes to $14.16, when it should be $9.17.
Why is BC not pulling the proper rates?  There has to be a way to make this work, it would be a giant downfall of the CMS otherwise.

You've got to be kidding me.  I didn't drop $2000+ on a BC Partnership to find out that you can't pull Shipping API's properly.
CMS's like Magento (read the link, it gives instructions on how to implement the API properly) have been doing this for YEARS.
2) Goto UPS.com and obtain an account, goto Business Solutions and search for Online Tools, follow the steps to obtain an access key.
3) Goto Magento Admin → Configuration → Shipping Methods → UPS
4) Key Settings:
Enabled: Yes
UPS type: United Parcel Service XML
Access license number: YOUR ACCESS KEY
Password: Your UPS Account Password
UserId: Your UPS User ID
Gateway XML URL: https://onlinetools.ups.com/ups.app/xml/Rate
Shipper Number: Your Shipping Number (6 Digits)
Tracking XML URL: https://onlinetools.ups.com/ups.app/xml/Track
As you can see, the piece to the puzzle you are missing in the system is the "Shipper Number".  This is a unique 6 digit key given to all UPS account holders.  Add it to the system so that we can begin pulling proper rates.  For crying out loud, manually add it to my XML file if need be (since I have no control over it).
But don't tell me it's not possible, because that is a flat out lie.  If you guys fail to provide me with a valid option to solve this problem, I"m going to persue obtaining a refund for my BC Partnership.

Similar Messages

  • UPS Shipping Integration

    I'm getting a requirement to link our ERP application with UPS Web tools, specifically the UPS Shipping API. I'm doing some research and not finding much about integrations done, has anyone integrated any Forms application with the UPS Shipping and any suggested implementation methods.
    Thanks,
    Scott

    Hello,
    I have not done it yet. However, that should not be very difficult to do.
    Please take a look at the SMS sending article by Grant Ronald described here: http://groundside.com/blog/GrantRonald.php?title=sms_text_from_an_application_and_not_eve&more=1&c=1&tb=1&pb=1
    and which I detail here: http://www.degenio.com/2009/01/java-with-oracle-forms-10g-sending-sms-messages/
    Basically, you will have to setup an integration with UPS web service.
    So either you use JAVA on the application server side and in this case you will have to import those classes in your form module (PL/SQL wrapping) or if the UPS web service allows it use HTTP get or post and in this case, you either use a stored PL/SQL procedure (DB side) or create a PJC/javabean to interface with the service (client-side java).
    Hafed

  • ProcessOrder API not populating the Price from the pricing attribute setup.

    Hi,
    I am having a problem while adding a line on the existing order through the Oe_Order_pub.Process_order API. A line is added but the pricing is not fetched using the pricing attribute.
    I have passed calculate_Price_flag=’Y’ but in vain. I am not passing price list id but instead want to use a pricing attribute that will fetch the price on the item automatically.
    But, it is working when I am calling this procedure from TOAD but when it is called through the Workflow, a line is added but no price is fetched.
    Could anyone help me out on this? Here’s the code:
    p_api_version_number NUMBER := 1.0;
    p_init_msg_list VARCHAR2 (1) := FND_API.G_TRUE;
    p_return_values VARCHAR2 (1) := FND_API.G_TRUE;
    p_action_commit VARCHAR2 (1) := FND_API.G_FALSE;
    x_return_status VARCHAR2 (1);
    x_msg_count NUMBER := 0;
    x_msg_data VARCHAR2 (2000);
    p_header_rec oe_order_pub.header_rec_type:= oe_order_pub.g_miss_header_rec;
    p_old_header_rec oe_order_pub.header_rec_type:= oe_order_pub.g_miss_header_rec;
    p_header_val_rec oe_order_pub.header_val_rec_type:= oe_order_pub.g_miss_header_val_rec;
    p_old_header_val_rec oe_order_pub.header_val_rec_type:= oe_order_pub.g_miss_header_val_rec;
    p_header_adj_tbl oe_order_pub.header_adj_tbl_type:= oe_order_pub.g_miss_header_adj_tbl;
    p_old_header_adj_tbl oe_order_pub.header_adj_tbl_type:= oe_order_pub.g_miss_header_adj_tbl;
    p_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type:= oe_order_pub.g_miss_header_adj_val_tbl;
    p_old_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type:= oe_order_pub.g_miss_header_adj_val_tbl;
    p_header_price_att_tbl oe_order_pub.header_price_att_tbl_type:= oe_order_pub.g_miss_header_price_att_tbl;
    p_old_header_price_att_tbl oe_order_pub.header_price_att_tbl_type:= oe_order_pub.g_miss_header_price_att_tbl;
    p_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type:= oe_order_pub.g_miss_header_adj_att_tbl;
    p_old_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type:= oe_order_pub.g_miss_header_adj_att_tbl;
    p_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type:= oe_order_pub.g_miss_header_adj_assoc_tbl;
    p_old_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type:= oe_order_pub.g_miss_header_adj_assoc_tbl;
    p_header_scredit_tbl oe_order_pub.header_scredit_tbl_type:= oe_order_pub.g_miss_header_scredit_tbl;
    p_old_header_scredit_tbl oe_order_pub.header_scredit_tbl_type:= oe_order_pub.g_miss_header_scredit_tbl;
    p_header_scredit_val_tbl oe_order_pub.header_scredit_val_tbl_type:= oe_order_pub.g_miss_header_scredit_val_tbl;
    p_old_header_scredit_val_tbl oe_order_pub.header_scredit_val_tbl_type:= oe_order_pub.g_miss_header_scredit_val_tbl;
    p_line_tbl oe_order_pub.line_tbl_type:= oe_order_pub.g_miss_line_tbl;
    p_old_line_tbl oe_order_pub.line_tbl_type:= oe_order_pub.g_miss_line_tbl;
    p_line_val_tbl oe_order_pub.line_val_tbl_type:= oe_order_pub.g_miss_line_val_tbl;
    p_old_line_val_tbl oe_order_pub.line_val_tbl_type:= oe_order_pub.g_miss_line_val_tbl;
    p_line_adj_tbl oe_order_pub.line_adj_tbl_type:= oe_order_pub.g_miss_line_adj_tbl;
    p_old_line_adj_tbl oe_order_pub.line_adj_tbl_type:= oe_order_pub.g_miss_line_adj_tbl;
    p_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type:= oe_order_pub.g_miss_line_adj_val_tbl;
    p_old_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type:= oe_order_pub.g_miss_line_adj_val_tbl;
    p_line_price_att_tbl oe_order_pub.line_price_att_tbl_type:= oe_order_pub.g_miss_line_price_att_tbl;
    p_old_line_price_att_tbl oe_order_pub.line_price_att_tbl_type:= oe_order_pub.g_miss_line_price_att_tbl;
    p_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type:= oe_order_pub.g_miss_line_adj_att_tbl;
    p_old_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type:= oe_order_pub.g_miss_line_adj_att_tbl;
    p_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type:= oe_order_pub.g_miss_line_adj_assoc_tbl;
    p_old_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type:= oe_order_pub.g_miss_line_adj_assoc_tbl;
    p_line_scredit_tbl oe_order_pub.line_scredit_tbl_type:= oe_order_pub.g_miss_line_scredit_tbl;
    p_old_line_scredit_tbl oe_order_pub.line_scredit_tbl_type:= oe_order_pub.g_miss_line_scredit_tbl;
    p_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type:= oe_order_pub.g_miss_line_scredit_val_tbl;
    p_old_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type:= oe_order_pub.g_miss_line_scredit_val_tbl;
    p_lot_serial_tbl oe_order_pub.lot_serial_tbl_type:= oe_order_pub.g_miss_lot_serial_tbl;
    p_old_lot_serial_tbl oe_order_pub.lot_serial_tbl_type:= oe_order_pub.g_miss_lot_serial_tbl;
    p_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type:= oe_order_pub.g_miss_lot_serial_val_tbl;
    p_old_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type:= oe_order_pub.g_miss_lot_serial_val_tbl;
    p_action_request_tbl oe_order_pub.request_tbl_type := oe_order_pub.g_miss_request_tbl;
    x_header_rec oe_order_pub.header_rec_type;
    x_header_val_rec oe_order_pub.header_val_rec_type;
    x_header_adj_tbl oe_order_pub.header_adj_tbl_type;
    x_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type;
    x_header_price_att_tbl oe_order_pub.header_price_att_tbl_type;
    x_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type;
    x_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type;
    x_header_scredit_tbl oe_order_pub.header_scredit_tbl_type;
    x_header_scredit_val_tbl oe_order_pub.header_scredit_val_tbl_type;
    x_line_tbl oe_order_pub.line_tbl_type;
    x_line_val_tbl oe_order_pub.line_val_tbl_type;
    x_line_adj_tbl oe_order_pub.line_adj_tbl_type;
    x_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type;
    x_line_price_att_tbl oe_order_pub.line_price_att_tbl_type;
    x_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type;
    x_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type;
    x_line_scredit_tbl oe_order_pub.line_scredit_tbl_type;
    x_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type;
    x_lot_serial_tbl oe_order_pub.lot_serial_tbl_type;
    x_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type;
    x_action_request_tbl oe_order_pub.request_tbl_type;
    i NUMBER := 1;
    x_data VARCHAR2(2000);
    x_index NUMBER;
    x_err_msg VARCHAR2(4000);
    x_user_id NUMBER;
    x_appl_id NUMBER;
    x_resp_id NUMBER;
    X_DEBUG_FILE Varchar2(400);
    BEGIN
    oe_msg_pub.initialize();
    oe_debug_pub.initialize;
    X_DEBUG_FILE := OE_DEBUG_PUB.Set_Debug_Mode('FILE');
    oe_debug_pub.SetDebugLevel(3);
    -- INITIALIZATION REQUIRED FOR R12
    MO_GLOBAL.INIT('ONT');
    MO_GLOBAL.SET_ORG_CONTEXT(p_org_id,'','ONT');
    p_header_rec := OE_ORDER_PUB.G_MISS_HEADER_REC;
    p_action_request_tbl(i) := OE_ORDER_PUB.G_MISS_REQUEST_REC;
    p_line_tbl.delete;
    p_action_request_tbl.delete;
    p_line_tbl (i) := OE_ORDER_PUB.G_MISS_LINE_REC;
    p_line_tbl (i).operation := OE_GLOBALS.G_OPR_CREATE;
    p_line_tbl (i).header_id := p_header_id;
    p_line_tbl (i).ordered_quantity := p_qty;
    p_line_tbl (i).line_number := p_line_number;
    p_line_tbl (i).shipment_number := 1;
    p_line_tbl (i).calculate_price_flag := 'Y';--p_calc_price_flag;
    p_line_tbl (i).created_by := p_user_id ;
    p_line_tbl (i).creation_date := SYSDATE ;
    p_line_tbl (i).inventory_item_id := p_item_id;
    p_line_tbl (i).last_update_date := SYSDATE;
    --p_line_tbl (i).last_update_login        := -1;
    p_line_tbl (i).last_updated_by := p_user_id ;
    p_line_tbl (i).line_type_id := p_line_type_id;
    p_line_tbl (i).order_quantity_uom := p_qty_uom;
    p_line_tbl (i).org_id := p_org_id;
    --p_line_tbl (i).price_list_id            := p_price_list_id;
    p_line_tbl (i).ship_from_org_id := p_ship_from_org_id ;
    p_line_tbl (i).ship_to_contact_id := p_ship_to_contact_id;
    p_line_tbl (i).ship_to_org_id := p_ship_to_org_id;
    p_line_tbl (i).sold_from_org_id := p_sold_from_org_id ;
    p_line_tbl (i).sold_to_org_id := p_sold_to_org_id;
    p_line_tbl (i).subinventory := p_subinventory ;
    --p_line_tbl (i).unit_list_price          := p_price;
    --p_line_tbl (i).unit_selling_price       := p_price;
    p_line_tbl (i).booked_flag := 'Y';
    p_line_tbl(i).flow_status_code := 'CLOSED';
    --SAVEPOINT BEFORE_PROC_API;
    OE_ORDER_PUB.PROCESS_ORDER (
    p_api_version_number => p_api_version_number
    ,p_init_msg_list => p_init_msg_list
    ,p_return_values => p_return_values
    ,p_action_commit => p_action_commit
    ,p_header_rec => p_header_rec
    ,p_old_header_rec => p_old_header_rec
    ,p_header_val_rec => p_header_val_rec
    ,p_old_header_val_rec => p_old_header_val_rec
    ,p_header_adj_tbl => p_header_adj_tbl
    ,p_old_header_adj_tbl => p_old_header_adj_tbl
    ,p_header_adj_val_tbl => p_header_adj_val_tbl
    ,p_old_header_adj_val_tbl => p_old_header_adj_val_tbl
    ,p_header_price_att_tbl => p_header_price_att_tbl
    ,p_old_header_price_att_tbl => p_old_header_price_att_tbl
    ,p_header_adj_att_tbl => p_header_adj_att_tbl
    ,p_old_header_adj_att_tbl => p_old_header_adj_att_tbl
    ,p_header_adj_assoc_tbl => p_header_adj_assoc_tbl
    ,p_old_header_adj_assoc_tbl => p_old_header_adj_assoc_tbl
    ,p_header_scredit_tbl => p_header_scredit_tbl
    ,p_old_header_scredit_tbl => p_old_header_scredit_tbl
    ,p_header_scredit_val_tbl => p_header_scredit_val_tbl
    ,p_old_header_scredit_val_tbl => p_old_header_scredit_val_tbl
    ,p_line_tbl => p_line_tbl
    ,p_old_line_tbl => p_old_line_tbl
    ,p_line_val_tbl => p_line_val_tbl
    ,p_old_line_val_tbl => p_old_line_val_tbl
    ,p_line_adj_tbl => p_line_adj_tbl
    ,p_old_line_adj_tbl => p_old_line_adj_tbl
    ,p_line_adj_val_tbl => p_line_adj_val_tbl
    ,p_old_line_adj_val_tbl => p_old_line_adj_val_tbl
    ,p_line_price_att_tbl => p_line_price_att_tbl
    ,p_old_line_price_att_tbl => p_old_line_price_att_tbl
    ,p_line_adj_att_tbl => p_line_adj_att_tbl
    ,p_old_line_adj_att_tbl => p_old_line_adj_att_tbl
    ,p_line_adj_assoc_tbl => p_line_adj_assoc_tbl
    ,p_old_line_adj_assoc_tbl => p_old_line_adj_assoc_tbl
    ,p_line_scredit_tbl => p_line_scredit_tbl
    ,p_old_line_scredit_tbl => p_old_line_scredit_tbl
    ,p_line_scredit_val_tbl => p_line_scredit_val_tbl
    ,p_old_line_scredit_val_tbl => p_old_line_scredit_val_tbl
    ,p_lot_serial_tbl => p_lot_serial_tbl
    ,p_old_lot_serial_tbl => p_old_lot_serial_tbl
    ,p_lot_serial_val_tbl => p_lot_serial_val_tbl
    ,p_old_lot_serial_val_tbl => p_old_lot_serial_val_tbl
    ,p_action_request_tbl => p_action_request_tbl
    ,x_header_rec => x_header_rec
    ,x_header_val_rec => x_header_val_rec
    ,x_header_adj_tbl => x_header_adj_tbl
    ,x_header_adj_val_tbl => x_header_adj_val_tbl
    ,x_header_price_att_tbl => x_header_price_att_tbl
    ,x_header_adj_att_tbl => x_header_adj_att_tbl
    ,x_header_adj_assoc_tbl => x_header_adj_assoc_tbl
    ,x_header_scredit_tbl => x_header_scredit_tbl
    ,x_header_scredit_val_tbl => x_header_scredit_val_tbl
    ,x_line_tbl => x_line_tbl
    ,x_line_val_tbl => x_line_val_tbl
    ,x_line_adj_tbl => x_line_adj_tbl
    ,x_line_adj_val_tbl => x_line_adj_val_tbl
    ,x_line_price_att_tbl => x_line_price_att_tbl
    ,x_line_adj_att_tbl => x_line_adj_att_tbl
    ,x_line_adj_assoc_tbl => x_line_adj_assoc_tbl
    ,x_line_scredit_tbl => x_line_scredit_tbl
    ,x_line_scredit_val_tbl => x_line_scredit_val_tbl
    ,x_lot_serial_tbl => x_lot_serial_tbl
    ,x_lot_serial_val_tbl => x_lot_serial_val_tbl
    ,x_action_request_tbl => x_action_request_tbl
    ,x_return_status => x_return_status
    ,x_msg_count => x_msg_count
    ,x_msg_data => x_msg_data
    p_status := x_return_status;
    IF x_return_status != apps.fnd_api.g_ret_sts_success THEN
    x_err_msg:= 'API Error Occured while creating Recycle Fees line ' ;
    FOR i in 1..x_msg_count
    LOOP
    OE_MSG_PUB.GET(i,'F',x_data,x_index);
    x_err_msg := x_err_msg || x_data ;
    END LOOP;
    p_error := x_err_msg;
    insert into xx_test values('API ERR: '||SYSDATE|| p_error);
    -- ROLLBACK TO SAVEPOINT BEFORE_PROC_API;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    -- ROLLBACK TO SAVEPOINT BEFORE_PROC_API;
    p_error := 'Error Occured in Order Line API: '||SYSDATE||substr(SQLERRM,1,250) ;
    p_status := 'E';
    END call_order_api;
    Thanks,
    Rahul

    Another striking feature here is, the API works absolutely well for the Internal Orders (Book--> Release-->Ship) but price is not pulled for the External Drop Ship Orders.

  • UPS Shipping from outside USA

    The is this not in Netpoint 5.9 manual
    "Please note that NetPoint does not support UPS shipping from outside the United States"
    I Am in Canada. Does this mean I cannot use UPS from Canada ?

    Correct UPS realtime rates are not available for shipments outside the US. This is a limitation imposed by UPS.

  • UPS Shipping Calculator

    I am looking for a CFC that will calculate UPS shipping costs
    to both US and Canada using UPS's new shipping calculation. It
    should not use the oversize flags as UPS has done away with this. I
    am using ColdFusion 7 on a dedicated server.
    Does anyone know of a company/person that has this component?
    I've searched forums and search engines to no avail.
    Thanks for your help.

    There's a simpler one here: ColdFusion UPS Shipping Rates
    It doesn't handle Canada postal codes as it stands, but you could easily just add a <cfargument> for the destination country, and that should do it.

  • Goods Shipped -BUT- Not Invoiced

    Hi Gurus,
    we would like to see a report (NOT VF04), where I can see all the Goods Shipped But not invoiced with AMOUNT so that we can Tie this amount to respective Goods in Transit GL account balance for Auditing Purpose, so that we can tell them this is the actual amount in Transit needs to be invoiced by showing report and GL account,
    Please Help me ,  your help appreciated,
    Sandhya

    Sri Nath,
    I think you missed the whole point here, I am not talking about exchange rates ro amount going from Sales order to GL , it will go anyways as I am talking about the Inventory Transfer account Amount and the Goods Shipped But Not Invoiced report amount ,
    Let me explain again, you will see some Del Doc ," Y " (Sales Order "X" ) in VL06 and you will come to know this is Open Invoice and Goods Shipped already,,,,,,,, at the same time for this Delivery Doc , Y , for the amount in sales order, X , will be reflecting in that GL account ,
    So Now the Point is VL06 or or anyother report with the options you said, will give you Del Doc Y , as Output but NO DOLLAR AMOUNT, so How can I tie this Del Doc amount(s) If I don't see a consolidated total that I need to Tie with FS10N report,?
    Shiva making new Report is last Option I believe.
    Sandhya

  • Anyone having difficulties with Applecare/UPS shipping times??

    Any of the numerous times any of my iPhones failed and had to be sent back as a standard repair/replace, They were shipped by UPS Saver express (not to be confused with the applecare express replacement service offered in the UK & Ireland)
    However on this occasion my iPhone was shipped with UPS standard - taking 2 days longer and when i asked apple why this was.. (numerous agents) they either rudely spoke over me or said maybe apple changed their policy on this?? makes no sense.. normally I would send my phone away on a monday and have it returned by wednesday. this time looks like I wont get it until monday.. 
    Just wondering if anyone else is experiencing the same problems?

    1)Was my mac going to ship tonight and now it's not?
    Not if they could not charge your credit card. Makes sense, you didn't pay for it (technically since there was some sort of glitch)
    2)Why do they close the customer service line of a
    multi-billion dollar company on the night of a new product
    offering??
    The same rason companies move US jobs to third world countries, money.
    The percentage of people who were may have problems out of the number of people projected to buy the new computer is incrediablly small so it makes no economic sense to staff a whole department and have them sit around and do almost nothing.
    Mike

  • Shipping API with serial number controlled item

    Hi Gurus,
    Using Shipping API, how can I update the serial number in the order lines for a particular item where the quantity is more than 1?
    The serial numbers are present in a random order in mtl_serial_number table.
    I am using WSH_DELIVERY_DETAILS_PUB.Update_Shipping_Attributes API to update the lines by passing the serial numbers but this is not working. For single record this works but when I am using multiple records it inserts record into mtl_serial_number_temp table but does not populate the shipping transaction line with the error as "serial number range 123456 could not be marked successfully".
    Regards,

    Thanks Jon.
    Can you please tell me how to populate the mtl_serial_numbers_temp(shall I use any API?) table and how do I link the data in mtl_serial_numbers_temp to that in wsh_delivery_details?
    Regards.

  • Conversation Vertical not pulling any results from My Sites

    My conversation vertical is not pulling any results from My Sites newsfeed posts
    ('Nothing here matches your search'). It is however pulling discussion list items from team sites.  Additionally people vertical works as it should (I can search people and user profile metadata and get the proper results). 
    I have:
    -UPS with search service account as
    an administrator with "retrieve people data for search crawlers" 
    -Content source with sps3://ourportalurl
    -Crawl rule specifying My Sites URL 
    -out of the box Conversation result source
    Thank you for any tips.

    Hi mmlmiller,
    I tried and it could work in my environment.
    Please add the web application URL (also make sure your search service account have read permission on this web application via ) which hosts the MySite in Search Service application Content Source, then start a full crawl and
    test again.
    https://technet.microsoft.com/en-us/library/dn186229.aspx
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • The Categories tab on my iPad 2 will not pull up the categories and the Genius tabe does not pull up anything at all.  Any thoughts on what to do?

    on my iPad 2, when I go into the iTunes store to look at apps, the categories tab will not pull up the categories list and therefore stays on my previous choice everytime and the Genius tab does not pull up anything. Please advise on how to fix.  Thanks.

    Apple's Limited Warranty http://www.apple.com/legal/warranty/ for iPad excludes coverage for damage resulting from accident, disassembly, unauthorized service and unauthorized modifications.
    Out-of-Warranty Service
         If you own an iPad that is ineligible for warranty service but is eligible for Out-of-Warranty (OOW) Service, Apple will replace your iPad with an iPad that is new or equivalent to new in both performance and reliability for the Out-of-Warranty Service fee listed below.    
    iPad model
    Out-of-Warranty Service Fee
    iPad mini
    $219
    iPad 3rd, 4th generation
    $299
    iPad 2, iPad
    $249
    A $6.95 shipping fee will be added if service is arranged through Apple and requires shipping. All fees are in US dollars and are subject to local tax.
    Certain damage is ineligible for out-of-warranty service, including catastrophic damage, such as the device separating into multiple pieces, and inoperability caused by unauthorized modifications. However, an iPad that has failed due to contact with liquid may be eligible for out-of-warranty service. See http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipad
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
    You may can get the iPad repaired at 3rd party repair sources for less $, however, any remaining Apple warranty will be voided.
    iPad Repair & Screen Replacement Services
    http://www.ifixyouri.com/16-ipad-repairs
    RepairZoom iPad Repair
    http://www.repairzoom.com/ipad-repair.html
    Mission Repair
    http://www.missionrepair.com/Apple_iPad_Repair_Services_s/431.htm
    iGadgetResQ
    http://www.igadgetresq.com/ipad-repair/
     Cheers, Tom

  • What is purpose of Shipping APIs and advantages oveer ship confirm interface

    Any body has idea about these shipping APIs like
    WSH_TRIPS_PUB /WSH_DELIVERIES_PUB ???? At One time you can enter
    only one record through API (Like One time only one trip info
    can enter) ,so the same can be done though Transaction Window ??
    so why should i go for ship confirm API?what are the advantages?
    I am not able to find much information about it.
    If any one has idea about it ,pls let me know.

    There is no other supported way to bring shipping information
    from an external system into 11i without using the API's. There
    were shipping interfaces prior to 11i but they are now
    desupported and only the API's are supported.
    It is taking a step back but ....
    Rishi

  • Verizon don't have tracking number for prepaid UPS Shipping?

    I shipped back all equipments using Prepaid UPS shipping. I was afraid to drop in any UPS box so I handed the box to the UPS person who comes to our office builing every day. Now Verizon says they did not receive the box and charge me almost $800 for the equipment. According to Verizon shipping instruction, 'customers are reponsible for equiment until reurned to UPS/USPS', and that was eaxctly what I did. I called customer service and was told I was supposed to write down the tracking number. I don't see anywhere that this was written on the shipping instruction or anywhere saying verizon that prepaid the shipping would not have tracking number. What's going on here?  

    The tracking number was on the label. This should have been written down even if instructions said to or not. It's just common sense to have some type of proof of delivery.
    That number was proof the package was signed for and delivered. Without some type of proof you are going to have a very had time proving that they received it. It's basically your word against there's without it.
    All you can do is call them and see if they can look into it for you.

  • Ups shipping

    Debit cleared my bank on Sunday night, and I've received confirmation that the phone has shipped on 9/14 along with a tracking number.  After 36 hours, UPS site says "UPS could not locate the shipment details for your request. Please verify your information and try again later."  Should l be concerned, or is UPS just not updating their records until closer to Friday?

    UPS just has not updated their information, probably because its a delayed release deal, or it could be because it is actually being shipped from Apple in China to the US which would actually be a bulk shipment.  Try going to UPS and tracking by reference and use your 10 digit mobile number you are getting the iPhone with as the reference number.

  • UC540 Phones not pulling down DNs

    Hello all,
    I have a UC540 where the phones are registering but not pulling doown the config it seems.  They are showing the UC as the TFTP server.  ANy idea where to start?
    All replies rated!                  

    Hi Scott,
    Further to what Alex has requested, can you please provide us a "debug tftp event"?
    I would love to see where it is failing to see if we can resolve this quickly.
    Cheers,
    David Trad.
    **When you rate a persons post, you are indicating a thank you or that it helped, but at the same time you are also helping to maintain the community spirit - You don't have to rate posts and you wont be looked down upon :) **

  • Unfortunately, I lost by an update all the apps on my iPad 2. Now I can not pull the data from the cloud to my iPad. How is this possible?

    Unfortunately, I lost by an update all the apps on my iPad 2. Now I can not pull the data from the cloud to my iPad. How is this possible?

    If you just installed iCloud does that mean you updated the iOS that's running on your iPad?  If so, you'll want to restore all the programs you have from the backup you hopefully made.
    Refer to these articles for help.
    iTunes: Backing up, updating, and restoring iOS software.
    If you don't want to use iCloud, simply don't activate it.
    You can also download the programs again.
    If you live in a country that supports re-downloading apps then you can re-download them.  You can refer to this article for more help.
    Downloading past purchases from the App Store and iTunes Store
    What to know if your country supports downloading past purchases?
    iTunes in the Cloud Availability

Maybe you are looking for

  • PO replication to R/3 from EBP in Extended classic scenarion

    Hi All,          We are using ECS for plan driven procurement and bidding engine in our system.presently we have configured the system in sand box.We can able to do the entire cycle like PR transfer from R/3 to Sourcing cockpit upto PO creation in SR

  • How can I install Win XP instead of Win 7 on mac?

    I bought a MacBook Pro 2.3GHz dual-core Intel i5 (Mac OS X 10.6 Snow Leopard) and found out the Boot Camp requires windows 7. I don't have windows 7 but windows XP (SP3). I have already finished the partition by bootcamp and succeed in windows XP ins

  • Is there a way to search the app store by OS?

    My daughter still has an ipod touch 2g and with all the versions of operating software out now it is harder to find apps that will still work on her device without looking at details for every app. I would love a way to search by OS.  I do keep her s

  • Login in sysdba mode from isql*plus in oracle9i

    what is a operating system user in oracle and how to create it? how to log in isql*plus with sys or system user with sysdba or sysoper ?

  • How Do I clear history?

    I have a whole bunch of pages in the recently worked on window that have been moved .I can't see the whole path for them so when I go to open one it points me to the folder that was moved and I can't open it.It's kind of a pain accidentally picking t