DBA Data[Home] [Help]

APPS.IBE_QUOTE_CHECKOUT_PVT dependencies on FND_GLOBAL

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

586: END IF;
587:
588: -- for Express Checkout carts, use the last_updated_by column to get the Party Id. If the party Id is null then
589: -- use the Sold To Party Id.
590: -- For Other Carts, get the party Id depending on the fnd_global.user_id
591:
592: IF (l_quote_source_code = 'IStore Oneclick') THEN
593: open c_get_party_id(l_last_updated_by);
594: fetch c_get_party_id into l_party_id;

Line 601: open c_get_party_id(FND_GLOBAL.USER_ID);

597: IF l_party_id is null THEN
598: l_party_id := l_sold_to_party_id;
599: END IF;
600: ELSE
601: open c_get_party_id(FND_GLOBAL.USER_ID);
602: fetch c_get_party_id into l_party_id;
603: close c_get_party_id;
604: END IF;
605: