DBA Data[Home] [Help]

APPS.AHL_RM_ASSO_DOCASO_PVT dependencies on AHL_RM_ROUTE_UTIL

Line 140: AHL_RM_ROUTE_UTIL.validate_lookup(

136:
137: IF p_x_association_tbl.count >0 THEN
138: FOR i in p_x_association_tbl.FIRST .. p_x_association_tbl.LAST
139: LOOP
140: AHL_RM_ROUTE_UTIL.validate_lookup(
141: x_return_status => x_return_status,
142: x_msg_data => x_msg_data,
143: p_lookup_type => 'AHL_OBJECT_TYPE',
144: p_lookup_meaning => p_x_association_tbl(i).object_type_desc,

Line 164: AHL_RM_ROUTE_UTIL.Route_Number_To_Id

160: -- This will fail if no record are passed to this API or if records with different association types are passed. This needs to be fixed sooner or later. - Balaji
161: IF p_x_association_tbl(i).object_id IS NULL THEN
162: IF p_x_association_tbl(i).object_type_code = 'ROUTE' THEN
163: -- Function to convert Operation number, operation revision to id
164: AHL_RM_ROUTE_UTIL.Route_Number_To_Id
165: (
166: p_route_number => p_x_association_tbl(i).object_number,
167: p_route_revision => p_x_association_tbl(i).object_revision,
168: x_route_id => p_x_association_tbl(i).object_id,

Line 173: AHL_RM_ROUTE_UTIL.Operation_Number_To_Id

169: x_return_status => x_return_status
170: );
171: ELSIF p_x_association_tbl(i).object_type_code = 'OPERATION' THEN
172: -- Function to convert Operation number, operation revision to id
173: AHL_RM_ROUTE_UTIL.Operation_Number_To_Id
174: (
175: p_operation_number => p_x_association_tbl(i).object_number,
176: p_operation_revision => p_x_association_tbl(i).object_revision,
177: x_operation_id => p_x_association_tbl(i).object_id,

Line 202: AHL_RM_ROUTE_UTIL.validate_ApplnUsage

198: --This is to be added before calling AHL_DI_ASSO_DOC_GEN_PUB.PROCESS_ASSOCIATION ()
199: -- Validate Application Usage
200: IF (p_x_association_tbl(1).object_type_code = 'ROUTE')
201: THEN
202: AHL_RM_ROUTE_UTIL.validate_ApplnUsage
203: (
204: p_object_id => p_x_association_tbl(1).OBJECT_ID,
205: p_association_type => p_x_association_tbl(1).OBJECT_TYPE_CODE,
206: x_return_status => x_return_status,

Line 268: AHL_RM_ROUTE_UTIL.validate_operation_status

264: AHL_DEBUG_PUB.debug( 'aso_object_type_code = OPERATION');
265: END IF;
266:
267: -- Check if the Route is existing and in Draft status
268: AHL_RM_ROUTE_UTIL.validate_operation_status
269: (
270: p_x_association_tbl(1).OBJECT_ID,
271: l_msg_data,
272: l_return_status

Line 301: AHL_RM_ROUTE_UTIL.validate_route_status

297: AHL_DEBUG_PUB.debug( 'aso_object_type_code = ROUTE');
298: END IF;
299:
300: -- Check if the Route is existing and in Draft status
301: AHL_RM_ROUTE_UTIL.validate_route_status
302: (
303: p_x_association_tbl(1).OBJECT_ID,
304: l_msg_data,
305: l_return_status