DBA Data[Home] [Help]

APPS.FUN_WF_COMMON dependencies on FND_MESSAGE

Line 25: * Pop messages off the fnd_message stack and

21:
22: /*-----------------------------------------------------
23: * FUNCTION concat_msg_stack
24: * ----------------------------------------------------
25: * Pop messages off the fnd_message stack and
26: * concat them, separated by '\n'.
27: *
28: * If there are not enough messages in the stack, then
29: * all the messages are popped.

Line 782: FND_MESSAGE.Set_Name('FUN','FUN_AME_EXECUTION_EXCEPTION');

778: THEN
779: -- Ame had an exception whilst generating the approver
780: -- list.
781: x_return_status := FND_API.G_RET_STS_ERROR;
782: FND_MESSAGE.Set_Name('FUN','FUN_AME_EXECUTION_EXCEPTION');
783: x_error_message := FND_MESSAGE.GET;
784:
785: RETURN;
786: END IF;

Line 783: x_error_message := FND_MESSAGE.GET;

779: -- Ame had an exception whilst generating the approver
780: -- list.
781: x_return_status := FND_API.G_RET_STS_ERROR;
782: FND_MESSAGE.Set_Name('FUN','FUN_AME_EXECUTION_EXCEPTION');
783: x_error_message := FND_MESSAGE.GET;
784:
785: RETURN;
786: END IF;
787:

Line 892: FND_MESSAGE.Set_Name('FUN','FUN_AME_INVALID_USERS');

888: approverIn => l_invalid_usr_rec);
889: END LOOP;
890:
891: x_return_status := FND_API.G_RET_STS_ERROR;
892: FND_MESSAGE.Set_Name('FUN','FUN_AME_INVALID_USERS');
893: FND_MESSAGE.Set_Token ('USER_LIST',l_invalid_users);
894: x_error_message := FND_MESSAGE.GET;
895:
896: ELSE

Line 893: FND_MESSAGE.Set_Token ('USER_LIST',l_invalid_users);

889: END LOOP;
890:
891: x_return_status := FND_API.G_RET_STS_ERROR;
892: FND_MESSAGE.Set_Name('FUN','FUN_AME_INVALID_USERS');
893: FND_MESSAGE.Set_Token ('USER_LIST',l_invalid_users);
894: x_error_message := FND_MESSAGE.GET;
895:
896: ELSE
897: -- Check if the ADHOC role already exists

Line 894: x_error_message := FND_MESSAGE.GET;

890:
891: x_return_status := FND_API.G_RET_STS_ERROR;
892: FND_MESSAGE.Set_Name('FUN','FUN_AME_INVALID_USERS');
893: FND_MESSAGE.Set_Token ('USER_LIST',l_invalid_users);
894: x_error_message := FND_MESSAGE.GET;
895:
896: ELSE
897: -- Check if the ADHOC role already exists
898: IF l_role_exists = 'Y'

Line 938: FND_MESSAGE.Set_Name('FUN','FUN_AME_UNEXPECTED_EXCEPTION');

934: SQLERRM || ' Error occurred '||
935: 'for transaction ' || p_transaction_id);
936: END IF;
937:
938: FND_MESSAGE.Set_Name('FUN','FUN_AME_UNEXPECTED_EXCEPTION');
939: x_error_message := FND_MESSAGE.GET;
940: x_return_status := FND_API.G_RET_STS_ERROR;
941:
942: END get_ame_role_list;

Line 939: x_error_message := FND_MESSAGE.GET;

935: 'for transaction ' || p_transaction_id);
936: END IF;
937:
938: FND_MESSAGE.Set_Name('FUN','FUN_AME_UNEXPECTED_EXCEPTION');
939: x_error_message := FND_MESSAGE.GET;
940: x_return_status := FND_API.G_RET_STS_ERROR;
941:
942: END get_ame_role_list;
943: