DBA Data[Home] [Help]

APPS.FEM_ENGINES_PKG dependencies on FND_MSG_PUB

Line 83: FND_MSG_PUB.Initialize;

79:
80: CASE p_init_msg_list
81: WHEN c_false THEN NULL;
82: WHEN c_true THEN
83: FND_MSG_PUB.Initialize;
84: ELSE RAISE e_bad_p_init_msg_list;
85: END CASE;
86:
87: CASE p_encoded

Line 223: fnd_msg_pub.add;

219: END LOOP;
220:
221: IF (v_msg_mode = 0)
222: THEN
223: fnd_msg_pub.add;
224: END IF;
225: v_msg_mode := 0;
226:
227: END IF;

Line 414: -- Tells whether or not to initialize the FND_MSG_PUB message stack by

410: -- Optional OA-compliance parameter.
411: -- Default is 1.0 (and this is currently the only acceptable value).
412: -- p_init_msg_list
413: -- Optional OA-compliance flag parameter.
414: -- Tells whether or not to initialize the FND_MSG_PUB message stack by
415: -- calling FND_MSG_PUB.Initialize.
416: -- Valid values are 'T' and 'F'; default is 'F'.
417: -- p_commit:
418: -- Optional OA-compliance flag parameter. Valid values are 'T' and 'F'.

Line 415: -- calling FND_MSG_PUB.Initialize.

411: -- Default is 1.0 (and this is currently the only acceptable value).
412: -- p_init_msg_list
413: -- Optional OA-compliance flag parameter.
414: -- Tells whether or not to initialize the FND_MSG_PUB message stack by
415: -- calling FND_MSG_PUB.Initialize.
416: -- Valid values are 'T' and 'F'; default is 'F'.
417: -- p_commit:
418: -- Optional OA-compliance flag parameter. Valid values are 'T' and 'F'.
419: -- Note that this procedure is read-only, there is nothing to commit,

Line 423: -- Passed to FND_MSG_PUB.Count_and_Get to determine the format of any

419: -- Note that this procedure is read-only, there is nothing to commit,
420: -- so this parameter is not used.
421: -- p_encoded:
422: -- Optional OA-compliance flag parameter.
423: -- Passed to FND_MSG_PUB.Count_and_Get to determine the format of any
424: -- message passed back in x_msg_data.
425: -- Valid values are 'T' and 'F'; default is 'T'.
426: -- x_return_status:
427: -- OA-compliance OUT parameter.

Line 432: -- on the FND_MSG_PUB message stack. If x_msg_count = 1, the message

428: -- Returns 'S' for success if an assignment level is found;
429: -- Returns 'E' for error if no assignment level is found.
430: -- x_msg_count:
431: -- OA-compliance OUT parameter. Tells how many messages are waiting
432: -- on the FND_MSG_PUB message stack. If x_msg_count = 1, the message
433: -- has already been fetched from the stack and is found in x_msg_data.
434: -- x_msg_data:
435: -- OA-compliance OUT parameter. If x_msg_count = 1, the message
436: -- has already been fetched from the stack and is found in x_msg_data.

Line 488: FND_MSG_PUB.Count_and_Get(

484: x_return_status => x_return_status);
485:
486: IF (x_return_status <> c_success)
487: THEN
488: FND_MSG_PUB.Count_and_Get(
489: p_encoded => c_false,
490: p_count => x_msg_count,
491: p_data => x_msg_data);
492: RETURN;

Line 623: -- Put user error message on the FND_MSG_PUB stack and to the debug log:

619: ' at assignment level 4: Object Type, Step=ALL, Object ID IS NULL');
620: EXCEPTION
621: WHEN no_data_found THEN
622:
623: -- Put user error message on the FND_MSG_PUB stack and to the debug log:
624: -- "No parameter assignment found. Parameter Name: PARAMETER_NAME. Object Type: OBJECT_TYPE"
625: FEM_ENGINES_PKG.PUT_MESSAGE
626: (p_app_name => 'FEM',
627: p_msg_name => 'FEM_PB_NO_ASSIGNMENTS_ERROR',

Line 643: FND_MSG_PUB.Count_and_Get(

639: p_value1 => p_parameter_name,
640: p_token2 => 'OBJECT_TYPE',
641: p_value2 => p_object_type_code);
642:
643: FND_MSG_PUB.Count_and_Get(
644: p_encoded => p_encoded,
645: p_count => x_msg_count,
646: p_data => x_msg_data);
647:

Line 678: FND_MSG_PUB.Count_and_Get(

674: p_msg_text => 'Returning ' || v_param_data_type || ' parameter value: ' || x_pb_param_value);
675:
676: x_pb_param_data_type := v_param_data_type;
677:
678: FND_MSG_PUB.Count_and_Get(
679: p_encoded => p_encoded,
680: p_count => x_msg_count,
681: p_data => x_msg_data);
682: