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?
Answers were Sorted based on User's Feedback
Answer / upendra
By Using Workflow rationalization we can do easily.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
which is the table for storing organization information?
9 Answers Infosys, Scan Steel,
What will happen If I am not giveing the Suspense accout while defineing the Set of Books in GL?
where we will put the control file ,where we will run sql star loader what is the cmd?
what is the need of registering table in apps?
How many types of projects are there in project module?
6 Answers Fujitsu, Tech Mahindra,
what are the difference between 11.5.7 and 11.5.9 in oracle apps
what are the important table names in purchasing?
in sql *loder how to skip the middle records ex:from 10th to 20th records i want to skip?
How will you get the concurrent program output as email?
Which modules of oracle apps have forms and reports? I am a beginner in oracle apps so kindly answer my query.
what are the prerequisite set ups for inter organization transaction?
How to make Parameter as Mandatory?