DBA Data[Home] [Help]

APPS.PA_SELF_SERVICE_WF_PKG dependencies on STANDARD

Line 17: standard parameters for workflow function activity APIs

13: /**
14: Purpose: This procedure checks if the timecard can be autoapproved.
15:
16: Input: This procedure is called from workflow activity - so it has
17: standard parameters for workflow function activity APIs
18: p_s_item_type - Internal Name of the workflow itemtype calling this
19: procedure.
20: p_s_item_key - Unique workflow instance identifier for the item type
21: calling this procedure.

Line 43: standard parameters for workflow function activity APIs.

39: Purpose: This procedure finds an approver. It calls client extensions to find
40: an approver setup by the user.
41:
42: Input: This procedure is called from workflow activity - so it has
43: standard parameters for workflow function activity APIs.
44: The parameter descriptions are given for procedure 'Autoapprove'.
45: **/
46:
47: PROCEDURE FindApprover( p_s_item_type IN VARCHAR2,

Line 57: standard parameters for workflow function activity APIs.

53: /**
54: Purpose: This procedure checks if the timecard is routed to the FirstApprover.
55:
56: Input: This procedure is called from workflow activity - so it has
57: standard parameters for workflow function activity APIs.
58: The parameter descriptions are given for procedure 'Autoapprove'.
59: **/
60: PROCEDURE FirstApprover( p_s_item_type IN VARCHAR2,
61: p_s_item_key IN VARCHAR2,

Line 71: standard parameters for workflow function activity APIs.

67: Purpose: This procedure checks if the timecard is routed to the Approver who
68: is not a first approver.
69:
70: Input: This procedure is called from workflow activity - so it has
71: standard parameters for workflow function activity APIs.
72: The parameter descriptions are given for procedure 'Autoapprove'.
73: **/
74: PROCEDURE ApprovalForwarded( p_s_item_type IN VARCHAR2,
75: p_s_item_key IN VARCHAR2,

Line 85: standard parameters for workflow function activity APIs.

81: Purpose: This procedure checks if the approver is the direct manager of the
82: employee.
83:
84: Input: This procedure is called from workflow activity - so it has
85: standard parameters for workflow function activity APIs.
86: The parameter descriptions are given for procedure 'Autoapprove'.
87: **/
88: PROCEDURE IsApproverManager( p_s_item_type IN VARCHAR2,
89: p_s_item_key IN VARCHAR2,

Line 99: standard parameters for workflow function activity APIs.

95: Purpose: This procedure records information about the previous approver
96: everytime the timecard is routed to another approver.
97:
98: Input: This procedure is called from workflow activity - so it has
99: standard parameters for workflow function activity APIs.
100: The parameter descriptions are given for procedure 'Autoapprove'.
101: **/
102: PROCEDURE RecordForwardFromInfo(p_s_item_type IN VARCHAR2,
103: p_s_item_key IN VARCHAR2,

Line 113: standard parameters for workflow function activity APIs.

109: Purpose: This procedure calls client extension to check authority of the
110: approver.
111:
112: Input: This procedure is called from workflow activity - so it has
113: standard parameters for workflow function activity APIs.
114: The parameter descriptions are given for procedure 'Autoapprove'.
115: **/
116: PROCEDURE VerifyAuthority( p_s_item_type IN VARCHAR2,
117: p_s_item_key IN VARCHAR2,

Line 127: standard parameters for workflow function activity APIs.

123: Purpose: This procedure updates the PA_EXPENDITURE_ALL table once timecard
124: is approved.
125:
126: Input: This procedure is called from workflow activity - so it has
127: standard parameters for workflow function activity APIs.
128: The parameter descriptions are given for procedure 'Autoapprove'.
129: **/
130: PROCEDURE Approved( p_s_item_type IN VARCHAR2,
131: p_s_item_key IN VARCHAR2,

Line 141: standard parameters for workflow function activity APIs.

137: Purpose: This procedure sets the status to Rejected and reset workflow
138: attributes since the instance can be restarted.
139:
140: Input: This procedure is called from workflow activity - so it has
141: standard parameters for workflow function activity APIs.
142: The parameter descriptions are given for procedure 'Autoapprove'.
143: **/
144: PROCEDURE Rejected( p_s_item_type IN VARCHAR2,
145: p_s_item_key IN VARCHAR2,