DBA Data[Home] [Help]

APPS.JL_VENDORMERGE_GRP dependencies on FND_MSG_PUB

Line 77: FND_MSG_PUB.initialize;

73:
74: -- Initialize API message list if necessary.
75: -- Initialize message list if p_init_msg_list is set to TRUE.
76: IF FND_API.to_Boolean( p_init_msg_list) THEN
77: FND_MSG_PUB.initialize;
78: END IF;
79:
80:
81: p_return_status := FND_API.G_RET_STS_SUCCESS;

Line 157: FND_MSG_PUB.Add;

153: p_return_status := FND_API.G_RET_STS_ERROR ;
154: ROLLBACK TO jl_vendor_merge;
155: FND_MESSAGE.SET_NAME('AR', 'HZ_MERGE_SQL_ERROR');
156: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
157: FND_MSG_PUB.Add;
158: /*---------------------------------------------------------+
159: | FND_MSG_PUB.Count_And_Get used to get the count of mesg.|
160: | in the message stack. If there is only one message in |
161: | the stack it retrieves this message |

Line 159: | FND_MSG_PUB.Count_And_Get used to get the count of mesg.|

155: FND_MESSAGE.SET_NAME('AR', 'HZ_MERGE_SQL_ERROR');
156: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
157: FND_MSG_PUB.Add;
158: /*---------------------------------------------------------+
159: | FND_MSG_PUB.Count_And_Get used to get the count of mesg.|
160: | in the message stack. If there is only one message in |
161: | the stack it retrieves this message |
162: +---------------------------------------------------------*/
163: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,

Line 163: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,

159: | FND_MSG_PUB.Count_And_Get used to get the count of mesg.|
160: | in the message stack. If there is only one message in |
161: | the stack it retrieves this message |
162: +---------------------------------------------------------*/
163: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
164: p_count => p_msg_count,
165: p_data => p_msg_data
166: );
167: --