DBA Data[Home] [Help]

APPS.HR_UTIL_MISC_WEB dependencies on FND_ATTACHED_DOCUMENTS_PKG

Line 1401: -- Call fnd_attached_documents_pkg.insert_row api to insert into fnd_documents

1397: ,p_rowid out nocopy varchar2
1398: ,p_login_person_id in number) is -- 10/14/97 Changed
1399:
1400: -- [CUSTOMIZE]
1401: -- Call fnd_attached_documents_pkg.insert_row api to insert into fnd_documents
1402: -- table. If customer uses third party software to store the resume, modify
1403: -- the code here.
1404:
1405: l_rowid varchar2(50) default null;

Line 1466: fnd_attached_documents_pkg.insert_row

1462: from sys.dual;
1463:
1464: -- Insert document to fnd_documents_long_text
1465: --
1466: fnd_attached_documents_pkg.insert_row
1467: (x_rowid => l_rowid
1468: ,x_attached_document_id => l_attached_document_id
1469: ,x_document_id => l_document_id
1470: ,x_creation_date => trunc(sysdate)

Line 1547: -- Call fnd_attached_documents_pkg.update_row api to update fnd_documents

1543: ,p_rowid in varchar2
1544: ,p_login_person_id in number) is -- 10/14/97 Changed
1545:
1546: -- [CUSTOMIZE]
1547: -- Call fnd_attached_documents_pkg.update_row api to update fnd_documents
1548: -- table. If customer uses third party software to store the resume, modify
1549: -- the code here.
1550:
1551: l_rowid varchar2(50);

Line 1617: fnd_attached_documents_pkg.lock_row

1613: raise data_error;
1614: END IF;
1615:
1616: -- Now, lock the rows.
1617: fnd_attached_documents_pkg.lock_row
1618: (x_rowid => p_rowid
1619: ,x_attached_document_id =>
1620: l_attached_doc_pre_upd.attached_document_id
1621: ,x_document_id => l_doc_pre_upd.document_id

Line 1685: fnd_attached_documents_pkg.update_row

1681:
1682: -- Update document to fnd_attached_documents, fnd_documents,
1683: -- fnd_documents_tl and fnd_documents_long_text
1684: --
1685: fnd_attached_documents_pkg.update_row
1686: (x_rowid => p_rowid
1687: ,x_attached_document_id =>
1688: l_attached_doc_pre_upd.attached_document_id
1689: ,x_document_id => l_doc_pre_upd.document_id