DBA Data[Home] [Help]

APPS.IBE_QUOTE_CHECKOUT_PVT dependencies on FND_GLOBAL

Line 577: -- For Other Carts, get the party Id depending on the fnd_global.user_id

573: END IF;
574:
575: -- for Express Checkout carts, use the last_updated_by column to get the Party Id. If the party Id is null then
576: -- use the Sold To Party Id.
577: -- For Other Carts, get the party Id depending on the fnd_global.user_id
578:
579: IF (l_quote_source_code = 'IStore Oneclick') THEN
580: open c_get_party_id(l_last_updated_by);
581: fetch c_get_party_id into l_party_id;

Line 588: open c_get_party_id(FND_GLOBAL.USER_ID);

584: IF l_party_id is null THEN
585: l_party_id := l_sold_to_party_id;
586: END IF;
587: ELSE
588: open c_get_party_id(FND_GLOBAL.USER_ID);
589: fetch c_get_party_id into l_party_id;
590: close c_get_party_id;
591: END IF;
592: