DBA Data[Home] [Help]

APPS.FND_REQUEST_SET dependencies on STANDARD

Line 6: -- STANDARD_STAGE_EVALUATION

2: /* $Header: AFRSSUBS.pls 120.2 2005/08/12 04:38:39 ktanneru ship $ */
3:
4:
5: -- Name
6: -- STANDARD_STAGE_EVALUATION
7: --
8: -- Purpose
9: -- Standard evaluation function for Request Set Stages.
10: -- Returns 'E' if any errors occurred in the stage requests.

Line 9: -- Standard evaluation function for Request Set Stages.

5: -- Name
6: -- STANDARD_STAGE_EVALUATION
7: --
8: -- Purpose
9: -- Standard evaluation function for Request Set Stages.
10: -- Returns 'E' if any errors occurred in the stage requests.
11: -- Returns 'W' if there were any Warnings and no Errors in the
12: -- stage requests.
13: -- Returns 'S' if all requests were sucessfull.

Line 16: function standard_stage_evaluation return varchar2;

12: -- stage requests.
13: -- Returns 'S' if all requests were sucessfull.
14: -- Will also return 'S' if there are no requests to evaluate.
15: --
16: function standard_stage_evaluation return varchar2;
17:
18: --
19: -- These values can be used to tune the amount of time the standard
20: -- stage evaluation function will wait on running requests

Line 19: -- These values can be used to tune the amount of time the standard

15: --
16: function standard_stage_evaluation return varchar2;
17:
18: --
19: -- These values can be used to tune the amount of time the standard
20: -- stage evaluation function will wait on running requests
21: -- stage_looptimes = the number of times it will loop, waiting for the request to finish
22: -- stage_sleeptime = the number of seconds it will sleep
23: -- Set these values higher if you are experiencing requests that take a longer time to complete.