DBA Data[Home] [Help]

APPS.IBY_PAYINSTR_PUB dependencies on IBY_DOCS_PAYABLE_ALL

Line 77: -- inserted into IBY_DOCS_PAYABLE_ALL table and linked to

73:
74: --
75: -- For check payments, we have to keep track of setup and
76: -- overflow documents. These are dummy documents that are
77: -- inserted into IBY_DOCS_PAYABLE_ALL table and linked to
78: -- a particular payment.
79: --
80: -- This data structure holds all payments that have processing
81: -- type set to 'PAPER' - i.e., payment payments.

Line 256: -- insert dummy documents payable into IBY_DOCS_PAYABLE_ALL

252: INDEX BY BINARY_INTEGER;
253:
254: --
255: -- PLSQL table of documents payable. This table is used to
256: -- insert dummy documents payable into IBY_DOCS_PAYABLE_ALL
257: -- (for handling setup and overflow documents).
258: --
259: TYPE docsTabType IS TABLE OF iby_docs_payable_all%ROWTYPE
260: INDEX BY BINARY_INTEGER;

Line 259: TYPE docsTabType IS TABLE OF iby_docs_payable_all%ROWTYPE

255: -- PLSQL table of documents payable. This table is used to
256: -- insert dummy documents payable into IBY_DOCS_PAYABLE_ALL
257: -- (for handling setup and overflow documents).
258: --
259: TYPE docsTabType IS TABLE OF iby_docs_payable_all%ROWTYPE
260: INDEX BY BINARY_INTEGER;
261:
262: --
263: -- Record that holds the formatting_payment_id for a particular

Line 271: doc_id IBY_DOCS_PAYABLE_ALL.document_payable_id%TYPE,

267: -- will be different from the payment_id, otherwise, both these
268: -- will be the same for a particular document.
269: --
270: TYPE overflowDocsRecType IS RECORD (
271: doc_id IBY_DOCS_PAYABLE_ALL.document_payable_id%TYPE,
272: payment_id IBY_DOCS_PAYABLE_ALL.payment_id%TYPE,
273: format_payment_id IBY_DOCS_PAYABLE_ALL.formatting_payment_id%TYPE
274: );
275:

Line 272: payment_id IBY_DOCS_PAYABLE_ALL.payment_id%TYPE,

268: -- will be the same for a particular document.
269: --
270: TYPE overflowDocsRecType IS RECORD (
271: doc_id IBY_DOCS_PAYABLE_ALL.document_payable_id%TYPE,
272: payment_id IBY_DOCS_PAYABLE_ALL.payment_id%TYPE,
273: format_payment_id IBY_DOCS_PAYABLE_ALL.formatting_payment_id%TYPE
274: );
275:
276: --

Line 273: format_payment_id IBY_DOCS_PAYABLE_ALL.formatting_payment_id%TYPE

269: --
270: TYPE overflowDocsRecType IS RECORD (
271: doc_id IBY_DOCS_PAYABLE_ALL.document_payable_id%TYPE,
272: payment_id IBY_DOCS_PAYABLE_ALL.payment_id%TYPE,
273: format_payment_id IBY_DOCS_PAYABLE_ALL.formatting_payment_id%TYPE
274: );
275:
276: --
277: -- Table of overflow doc recs.