DBA Data[Home] [Help]

APPS.OE_ACCEPTANCE_UTIL dependencies on OE_ORDER_PUB

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

60: PROCEDURE Default_Contingency_Attributes;
61:
62: --This procedure is called to default acceptance details for service line if the parent is already accepted
63: PROCEDURE Default_Parent_Accept_Details
64: ( p_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type);
65:
66: --This procedure is called to get contingency attributes of a given line.
67: PROCEDURE Get_Contingency_attributes
68: (p_line_rec IN OE_ORDER_PUB.Line_Rec_Type

Line 68: (p_line_rec IN OE_ORDER_PUB.Line_Rec_Type

64: ( p_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type);
65:
66: --This procedure is called to get contingency attributes of a given line.
67: PROCEDURE Get_Contingency_attributes
68: (p_line_rec IN OE_ORDER_PUB.Line_Rec_Type
69: ,X_contingency_id OUT NOCOPY NUMBER
70: ,X_revrec_event_code OUT NOCOPY VARCHAR2
71: ,X_revrec_expiration_days OUT NOCOPY NUMBER);
72:

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

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

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

76: -- Over Loaded
77: Function Pre_billing_acceptance_on (p_line_id IN NUMBER) RETURN BOOLEAN;
78:
79: --Function returns TRUE if post-billing acceptance is enabled for the given line.
80: Function Post_billing_acceptance_on (p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN BOOLEAN;
81:
82: -- Over Loaded
83: Function Post_billing_acceptance_on (p_line_id IN NUMBER) RETURN BOOLEAN;
84:

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

82: -- Over Loaded
83: Function Post_billing_acceptance_on (p_line_id IN NUMBER) RETURN BOOLEAN;
84:
85: --This function checks if acceptance is allowed for the given line.
86: Function Customer_acceptance_eligible (p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN BOOLEAN;
87:
88: -- Over Loaded
89: Function Customer_acceptance_eligible (p_line_id IN NUMBER) RETURN BOOLEAN;
90:

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

88: -- Over Loaded
89: Function Customer_acceptance_eligible (p_line_id IN NUMBER) RETURN BOOLEAN;
90:
91: --Function returns 'ACCEPTED'/'REJECTED'/'NOT_ACCEPTED'
92: Function Acceptance_status(p_line_rec IN OE_Order_PUB.Line_Rec_Type) RETURN VARCHAR2;
93:
94: -- Over Loaded
95: Function Acceptance_Status(p_line_id IN NUMBER) RETURN VARCHAR2;
96: