DBA Data[Home] [Help]

APPS.IBY_FD_EXTRACT_EXT_PUB dependencies on XMLTYPE

Line 14: RETURN XMLTYPE

10: --
11: -- Below is an example implementation:
12: /*
13: FUNCTION Get_Ins_Ext_Agg(p_payment_instruction_id IN NUMBER)
14: RETURN XMLTYPE
15: IS
16: l_ins_ext_agg XMLTYPE;
17:
18: CURSOR l_ins_ext_csr (p_payment_instruction_id IN NUMBER) IS

Line 16: l_ins_ext_agg XMLTYPE;

12: /*
13: FUNCTION Get_Ins_Ext_Agg(p_payment_instruction_id IN NUMBER)
14: RETURN XMLTYPE
15: IS
16: l_ins_ext_agg XMLTYPE;
17:
18: CURSOR l_ins_ext_csr (p_payment_instruction_id IN NUMBER) IS
19: SELECT XMLConcat(
20: XMLElement("Extend",

Line 41: RETURN XMLTYPE

37:
38: END Get_Ins_Ext_Agg;
39: */
40: FUNCTION Get_Ins_Ext_Agg(p_payment_instruction_id IN NUMBER)
41: RETURN XMLTYPE
42: IS
43: BEGIN
44: RETURN NULL;
45: END Get_Ins_Ext_Agg;

Line 55: RETURN XMLTYPE

51: -- at the payment level as a SQLX XML Aggregate
52: -- and return the aggregate.
53: --
54: FUNCTION Get_Pmt_Ext_Agg(p_payment_id IN NUMBER)
55: RETURN XMLTYPE
56: IS
57: BEGIN
58: RETURN NULL;
59: END Get_Pmt_Ext_Agg;

Line 69: RETURN XMLTYPE

65: -- at the document level as a SQLX XML Aggregate
66: -- and return the aggregate.
67: --
68: FUNCTION Get_Doc_Ext_Agg(p_document_payable_id IN NUMBER)
69: RETURN XMLTYPE
70: IS
71: BEGIN
72: RETURN NULL;
73: END Get_Doc_Ext_Agg;

Line 96: RETURN XMLTYPE

92: -- which is ap_invoice_all.invoice_id. The combination of invoice_id and
93: -- p_line_number will uniquely identify the doc line.
94: --
95: FUNCTION Get_Docline_Ext_Agg(p_document_payable_id IN NUMBER, p_line_number IN NUMBER)
96: RETURN XMLTYPE
97: IS
98: BEGIN
99: RETURN NULL;
100: END Get_Docline_Ext_Agg;

Line 110: RETURN XMLTYPE

106: -- at the payment request level as a SQLX XML Aggregate
107: -- and return the aggregate.
108: --
109: FUNCTION Get_Ppr_Ext_Agg(p_payment_service_request_id IN NUMBER)
110: RETURN XMLTYPE
111: IS
112: BEGIN
113: RETURN NULL;
114: END Get_Ppr_Ext_Agg;