DBA Data[Home] [Help]

APPS.AMS_STATUS_PVT dependencies on FND_API

Line 89: -- object area (and activity type). Return fnd_api.g_true

85: -- Is_Approval_Needed
86: --
87: -- USAGE
88: -- Check if a certain type of approval is needed for an
89: -- object area (and activity type). Return fnd_api.g_true
90: -- or fnd_api.g_false.
91: --
92: -- PARAMETERS
93: -- 1. p_arc_approval_for: arc qualifier for a area, e.g. 'PROM'

Line 90: -- or fnd_api.g_false.

86: --
87: -- USAGE
88: -- Check if a certain type of approval is needed for an
89: -- object area (and activity type). Return fnd_api.g_true
90: -- or fnd_api.g_false.
91: --
92: -- PARAMETERS
93: -- 1. p_arc_approval_for: arc qualifier for a area, e.g. 'PROM'
94: -- 2. p_approval_type: the lookup code of the approval type, e.g.

Line 129: p_init_msg_list IN VARCHAR2 := FND_API.g_false,

125: -- next statuses
126: --
127: --------------- end of comments ----------------------------
128: PROCEDURE Get_Next_Statuses(
129: p_init_msg_list IN VARCHAR2 := FND_API.g_false,
130: x_msg_count OUT NOCOPY NUMBER,
131: x_msg_data OUT NOCOPY VARCHAR2,
132:
133: p_arc_status_for IN VARCHAR2,

Line 159: p_init_msg_list IN VARCHAR2 := FND_API.g_false,

155: -- 5. x_valid_flag: indicate if the status change is valid
156: --
157: --------------- end of comments ----------------------------
158: PROCEDURE Validate_Status_Change(
159: p_init_msg_list IN VARCHAR2 := FND_API.g_false,
160: x_msg_count OUT NOCOPY NUMBER,
161: x_msg_data OUT NOCOPY VARCHAR2,
162:
163: p_arc_status_for IN VARCHAR2,

Line 167: x_valid_flag OUT NOCOPY VARCHAR2, -- fnd_api.g_true, fnd_api.g_false

163: p_arc_status_for IN VARCHAR2,
164: p_current_status_id IN VARCHAR2,
165: p_next_status_id IN VARCHAR2,
166: p_activity_type_code IN VARCHAR2 := NULL,
167: x_valid_flag OUT NOCOPY VARCHAR2, -- fnd_api.g_true, fnd_api.g_false
168: x_return_status OUT NOCOPY VARCHAR2
169: );
170:
171: END AMS_STATUS_PVT ;