DBA Data[Home] [Help]

APPS.PA_SEARCH_PUB dependencies on FND_MSG_PUB

Line 125: FND_MSG_PUB.initialize;

121: END IF;
122:
123: -- Initialise message stack if required
124: IF FND_API.TO_BOOLEAN (p_init_msg_list) THEN
125: FND_MSG_PUB.initialize;
126: END IF;
127:
128: -- assign the assignment id to the g_search_criteria global pl/sql record
129: -- if the assignment id is passed to the API.

Line 716: IF FND_MSG_PUB.Count_Msg = 0 AND

712: -- 1) p_validate_only = 'F', OR
713: -- 2) the search criteria has not been passed to the API --
714: -- we got the criteria in the API, then call the private API.
715:
716: IF FND_MSG_PUB.Count_Msg = 0 AND
717: (p_validate_only = FND_API.G_FALSE OR
718: p_get_search_criteria = FND_API.G_TRUE)
719: THEN
720:

Line 811: x_msg_count := FND_MSG_PUB.Count_Msg;

807: -- IF the number of messages is 1 then fetch the message code
808: -- from the stack and return its text
809: --
810:
811: x_msg_count := FND_MSG_PUB.Count_Msg;
812:
813: IF x_msg_count = 1 THEN
814: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
815: ,p_msg_index => 1

Line 823: IF FND_MSG_PUB.Count_Msg <> 0 THEN

819:
820: END IF;
821:
822: --if there are errors in the stack then set x_return_status.
823: IF FND_MSG_PUB.Count_Msg <> 0 THEN
824:
825: x_return_status := FND_API.G_RET_STS_ERROR;
826:
827: -- clear the globals

Line 843: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_SEARCH_PUB.Run_Search'

839:
840: IF p_commit = FND_API.G_TRUE THEN
841: ROLLBACK TO SEARCH_PUB_RUN_OA_SEARCH;
842: END IF;
843: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_SEARCH_PUB.Run_Search'
844: , p_procedure_name => PA_DEBUG.G_Err_Stack);
845: x_return_status:= FND_API.G_RET_STS_UNEXP_ERROR;
846: RAISE;
847: