Application Express (APEX) etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
Application Express (APEX) etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

Document Library view document problem

Problem solved:
It is not mentioned in Document Library Readme.

Here is what I need to do:
edit following function in flow_ schema

wwv_flow_epg_include_mod_local

and
comment out this line
-- return false;

and

Modify following line and change your schema_name and then compile function.


if upper(procedure_name) in (
'GET_DOC','SCHEMA_NAME.GET_DOC
') then
return TRUE;

apex sending email from apex mail engine

begin
apex_mail.send(p_to => 'first@somedomain.com;second@somedomain.com',p_from => 'apex@someaddress.com',p_body => 'test message');
apex_mail.push_queue;
end;