[Home] [Help]
41:
42: Cursor c_get_trxn_extn_id (c_quote_header_id number)
43: IS
44: select trxn_extension_id
45: from aso_payments
46: where quote_header_id = c_quote_header_id and quote_line_id is null;
47:
48: Cursor c_get_quote_details (c_quote_header_id number)
49: IS
418:
419: Cursor c_get_trxn_extn_id (c_quote_header_id number)
420: IS
421: select trxn_extension_id
422: FROM ASO_PAYMENTS
423: WHERE quote_HEADER_ID = c_quote_header_id and QUOTE_LINE_ID is null;
424:
425: BEGIN
426: -- Standard Start of API savepoint
636: fetch c_get_trxn_extn_id into l_trxn_extension_id;
637: close c_get_trxn_extn_id;
638:
639: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
640: IBE_Util.Debug('l_trxn_extension_id from aso_payments = '||l_trxn_extension_id);
641: END IF;
642:
643: open c_get_auth_details(l_trxn_extension_id);
644: fetch c_get_auth_details into l_auth_flag;