DBA Data[Home] [Help]

APPS.IBY_EXT_WRAP_PUB dependencies on XMLTYPE

Line 15: RETURN XMLTYPE;

11: -- and return the aggregate.
12: --
13:
14: FUNCTION Get_Ins_Ext_Agg(p_payment_instruction_id IN NUMBER)
15: RETURN XMLTYPE;
16:
17:
18: --
19: -- This API is called once per payment.

Line 25: RETURN XMLTYPE;

21: -- at the payment level as a SQLX XML Aggregate
22: -- and return the aggregate.
23: --
24: FUNCTION Get_Pmt_Ext_Agg(p_payment_id IN NUMBER)
25: RETURN XMLTYPE;
26:
27:
28: --
29: -- This API is called once per document payable.

Line 35: RETURN XMLTYPE;

31: -- at the document level as a SQLX XML Aggregate
32: -- and return the aggregate.
33: --
34: FUNCTION Get_Doc_Ext_Agg(p_document_payable_id IN NUMBER)
35: RETURN XMLTYPE;
36:
37:
38: --
39: -- This API is called once per document payable line.

Line 46: RETURN XMLTYPE;

42: -- and return the aggregate.
43: --
44:
45: FUNCTION Get_Docline_Ext_Agg(p_document_payable_id IN NUMBER, p_line_number IN NUMBER)
46: RETURN XMLTYPE;
47:
48:
49: --
50: -- This API is called once only for the payment process request.

Line 56: RETURN XMLTYPE;

52: -- at the payment request level as a SQLX XML Aggregate
53: -- and return the aggregate.
54: --
55: FUNCTION Get_Ppr_Ext_Agg(p_payment_service_request_id IN NUMBER)
56: RETURN XMLTYPE;
57:
58:
59: END IBY_EXT_WRAP_PUB;
60: