[Home] [Help]
1018: -- cursor getCartId is
1019: -- select icx_shopping_Carts_s.nextval from sys.dual;
1020: --new code:
1021: cursor getCartId is
1022: select PO_REQUISITION_HEADERS_S.nextval from sys.dual;
1023:
1024:
1025: cursor getDate(increment number) is
1026: SELECT sysdate+increment from sys.dual;
1469: -- select icx_shopping_carts_s.nextval
1470: -- into v_cart_id
1471: -- from sys.dual;
1472: --new code:
1473: select PO_REQUISITION_HEADERS_S.nextval
1474: into v_cart_id
1475: from sys.dual;
1476:
1477: