DBA Data[Home] [Help]

PACKAGE: APPS.PON_AUCTION_DISCUSSION_PKG

Source


1 PACKAGE PON_AUCTION_DISCUSSION_PKG AUTHID CURRENT_USER AS
2 /* $Header: PONAUCDS.pls 120.0 2005/06/01 17:53:33 appldev noship $ */
3 
4   FUNCTION GET_UNREAD_MESSAGE_COUNT (p_auction_header_id NUMBER,
5                                      p_user_id NUMBER,
6                                      p_company_id NUMBER) RETURN NUMBER;
7 
8  /*
9   * This function will be invoked from Discussion Summary page.
10   * The function will return the value one of the following values.
11   *  RepliedByOth    : if any neg team member has already replied to the given message.
12   *  NotRepliedByOth : No body has replied yet to the given message.
13   */
14   FUNCTION GET_REPLIED_STATUS( p_to_id IN NUMBER,
15                                p_entry_id IN NUMBER,
16                                p_auctioneer_tp_id IN NUMBER,
17                                p_message_type IN VARCHAR2
18                               )
19                               RETURN VARCHAR2;
20 
21 END PON_AUCTION_DISCUSSION_PKG;