DBA Data[Home] [Help]

APPS.WIP_TRANSACTION_PUB dependencies on FND_MSG_PUB

Line 89: FND_MSG_PUB.Count_And_Get

85: x_return_status := FND_API.G_RET_STS_SUCCESS;
86:
87: -- Get message count and data
88:
89: FND_MSG_PUB.Count_And_Get
90: ( p_count => x_msg_count
91: , p_data => x_msg_data
92: );
93:

Line 103: FND_MSG_PUB.Count_And_Get

99: x_return_status := FND_API.G_RET_STS_ERROR;
100:
101: -- Get message count and data
102:
103: FND_MSG_PUB.Count_And_Get
104: ( p_count => x_msg_count
105: , p_data => x_msg_data
106: );
107:

Line 114: FND_MSG_PUB.Count_And_Get

110: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
111:
112: -- Get message count and data
113:
114: FND_MSG_PUB.Count_And_Get
115: ( p_count => x_msg_count
116: , p_data => x_msg_data
117: );
118:

Line 123: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

119: WHEN OTHERS THEN
120:
121: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
122:
123: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
124: THEN
125: FND_MSG_PUB.Add_Exc_Msg
126: ( G_PKG_NAME
127: , 'Get_Transaction'

Line 125: FND_MSG_PUB.Add_Exc_Msg

121: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
122:
123: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
124: THEN
125: FND_MSG_PUB.Add_Exc_Msg
126: ( G_PKG_NAME
127: , 'Get_Transaction'
128: );
129: END IF;

Line 133: FND_MSG_PUB.Count_And_Get

129: END IF;
130:
131: -- Get message count and data
132:
133: FND_MSG_PUB.Count_And_Get
134: ( p_count => x_msg_count
135: , p_data => x_msg_data
136: );
137: