DBA Data[Home] [Help]

APPS.IRC_IRT_INS dependencies on DBMS_LOB

Line 88: dbms_lob.write(l_redirection_url

84: )
85: returning redirection_url,posting_url into l_redirection_url,l_posting_url;
86: if (p_rec.redirection_url is not null) then
87: hr_utility.set_location(l_proc, 10);
88: dbms_lob.write(l_redirection_url
89: ,length(p_rec.redirection_url)
90: ,1
91: ,p_rec.redirection_url);
92: end if;

Line 96: dbms_lob.write(l_posting_url

92: end if;
93: --
94: if (p_rec.posting_url is not null) then
95: hr_utility.set_location(l_proc, 10);
96: dbms_lob.write(l_posting_url
97: ,length(p_rec.posting_url)
98: ,1
99: ,p_rec.posting_url);
100: end if;