DBA Data[Home] [Help]

APPS.OE_ACCEPTANCE_UTIL dependencies on OE_ORDER_PUB

Line 58: ( p_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type);

54: PROCEDURE Default_Contingency_Attributes;
55:
56: --This procedure is called to default acceptance details for service line if the parent is already accepted
57: PROCEDURE Default_Parent_Accept_Details
58: ( p_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type);
59:
60: --This procedure is called to get contingency attributes of a given line.
61: PROCEDURE Get_Contingency_attributes
62: (p_line_rec IN OE_ORDER_PUB.Line_Rec_Type

Line 62: (p_line_rec IN OE_ORDER_PUB.Line_Rec_Type

58: ( p_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type);
59:
60: --This procedure is called to get contingency attributes of a given line.
61: PROCEDURE Get_Contingency_attributes
62: (p_line_rec IN OE_ORDER_PUB.Line_Rec_Type
63: ,X_contingency_id OUT NOCOPY NUMBER
64: ,X_revrec_event_code OUT NOCOPY VARCHAR2
65: ,X_revrec_expiration_days OUT NOCOPY NUMBER);
66:

Line 68: Function Pre_billing_acceptance_on (p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN BOOLEAN;

64: ,X_revrec_event_code OUT NOCOPY VARCHAR2
65: ,X_revrec_expiration_days OUT NOCOPY NUMBER);
66:
67: --Function returns TRUE if pre-billing acceptance is enabled for the given line.
68: Function Pre_billing_acceptance_on (p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN BOOLEAN;
69:
70: -- Over Loaded
71: Function Pre_billing_acceptance_on (p_line_id IN NUMBER) RETURN BOOLEAN;
72:

Line 74: Function Post_billing_acceptance_on (p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN BOOLEAN;

70: -- Over Loaded
71: Function Pre_billing_acceptance_on (p_line_id IN NUMBER) RETURN BOOLEAN;
72:
73: --Function returns TRUE if post-billing acceptance is enabled for the given line.
74: Function Post_billing_acceptance_on (p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN BOOLEAN;
75:
76: -- Over Loaded
77: Function Post_billing_acceptance_on (p_line_id IN NUMBER) RETURN BOOLEAN;
78:

Line 80: Function Customer_acceptance_eligible (p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN BOOLEAN;

76: -- Over Loaded
77: Function Post_billing_acceptance_on (p_line_id IN NUMBER) RETURN BOOLEAN;
78:
79: --This function checks if acceptance is allowed for the given line.
80: Function Customer_acceptance_eligible (p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN BOOLEAN;
81:
82: -- Over Loaded
83: Function Customer_acceptance_eligible (p_line_id IN NUMBER) RETURN BOOLEAN;
84:

Line 86: Function Acceptance_status(p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN VARCHAR2;

82: -- Over Loaded
83: Function Customer_acceptance_eligible (p_line_id IN NUMBER) RETURN BOOLEAN;
84:
85: --Function returns 'ACCEPTED'/'REJECTED'/'NOT_ACCEPTED'
86: Function Acceptance_status(p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN VARCHAR2;
87:
88: -- Over Loaded
89: Function Acceptance_Status(p_line_id IN NUMBER) RETURN VARCHAR2;
90: