DBA Data[Home] [Help]

APPS.CSFW_ATTACHMENT_PVT dependencies on DUAL

Line 67: from dual;

63: -- get next sequence value for FND_LOBS
64: CURSOR l_fnd_lobs_s_cursor
65: IS
66: select fnd_lobs_s.nextval
67: from dual;
68:
69: -- get next sequence value for fnd_documents_short_text
70: CURSOR fnd_short_text_s_cursor
71: is

Line 73: from dual;

69: -- get next sequence value for fnd_documents_short_text
70: CURSOR fnd_short_text_s_cursor
71: is
72: select fnd_documents_short_text_s.nextval
73: from dual;
74:
75: -- get language of user
76: CURSOR l_language_cursor
77: IS

Line 79: from dual;

75: -- get language of user
76: CURSOR l_language_cursor
77: IS
78: select userenv('LANG')
79: from dual;
80:
81: --to check if the record exists in the database
82: cursor l_lobs_fileid_csr (p_file_id fnd_lobs.file_id%TYPE) is
83: select 1