Where can i find this screen ?? Also a pricing related query [message #376064] |
Mon, 15 December 2008 22:03 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
rak007
Messages: 107 Registered: October 2006 Location: Mumbai / Pune, India
|
Senior Member |
|
|
Hi all,
I want to know where can i find the attached screen in oracle apps. I mean can anyone please point the navigation for the same.
Another question is that i have to deduce the price list name based on some selection criteria. Currently i am using the below query to find price list but this is an unacceptable way since if i don't find the price list then program should not exit, instead the global price list should be selected. Can anyone please point out as to which table/view etc should i use to get the price list.
SELECT list_header_id
INTO l_price_list
FROM qp_list_headers_all
WHERE active_flag = 'Y'
AND list_type_code = 'PRL'
AND to_char(name) = to_char(cr_get_cust_rec.customer_number);
|
|
|
|