in oracle workflow if i want to send a mail to the user after sending if the user didn't approve the mail after 10 mins it is automatimatically approved how we can approach?
Answer Posted / vasu
We can Caliculate time and based on time we can able to send a notification
FUNCTION get_timeout_minutes RETURN NUMBER IS
BEGIN
RETURN(get_next_working_date(SYSDATE
,g_number_of_wait_days) -
SYSDATE) * 24 * 60;
END get_timeout_minutes;
PROCEDURE set_wait_days_for_timeout
(
itemtype IN VARCHAR2
,itemkey IN VARCHAR2
,actid IN NUMBER
,funcmode IN VARCHAR2
,RESULT IN OUT VARCHAR2
) IS
n_timeout_in_minutes NUMBER := get_timeout_minutes;
BEGIN
IF (funcmode != 'RUN')
THEN
RETURN;
END IF;
wf_engine.setitemattrnumber(itemtype => itemtype
,itemkey => itemkey
,aname => 'WAIT_DAYS_INCLUSIVE_WEEEKEND_H'
,avalue => n_timeout_in_minutes);
RESULT := 'COMPLETE:Y';
END set_wait_days_for_timeout;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is a value set? List its various types.
Can you explain the difference between architecture followed in 10g & 11g?
How can you achieve loose coupling in soa framework?
What does appl_top directory contain?
What is instead of trigger in where we will use?
Are you familiar with internet architecture of oracle apps 11i?
what are the balancing segments in AR?
List the various types of value set.
What are file in oracle.
How can a process be deployed in soa?
Pls tel me the best text book for Oracle Apps 11i Tech? & I want D2K Text book also?
Which oracle applications pl/sql standard apis you are familiar, have you used most of them?
WHAT IS CUSTOM VIEW AND CUSTOM COMPONENT?
How to create a purchase order without a requisition?
tell my any difficult situtation you solved in your experience in your company?