DBA Data[Home] [Help]

APPS.JL_VENDORMERGE_GRP dependencies on FND_MSG_PUB

Line 65: FND_MSG_PUB.initialize;

61:
62: -- Initialize API message list if necessary.
63: -- Initialize message list if p_init_msg_list is set to TRUE.
64: IF FND_API.to_Boolean( p_init_msg_list) THEN
65: FND_MSG_PUB.initialize;
66: END IF;
67:
68:
69: p_return_status := FND_API.G_RET_STS_SUCCESS;

Line 132: FND_MSG_PUB.Add;

128: p_return_status := FND_API.G_RET_STS_ERROR ;
129: ROLLBACK TO jl_vendor_merge;
130: FND_MESSAGE.SET_NAME('AR', 'HZ_MERGE_SQL_ERROR');
131: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
132: FND_MSG_PUB.Add;
133: /*---------------------------------------------------------+
134: | FND_MSG_PUB.Count_And_Get used to get the count of mesg.|
135: | in the message stack. If there is only one message in |
136: | the stack it retrieves this message |

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

130: FND_MESSAGE.SET_NAME('AR', 'HZ_MERGE_SQL_ERROR');
131: FND_MESSAGE.SET_TOKEN('ERROR' ,SQLERRM);
132: FND_MSG_PUB.Add;
133: /*---------------------------------------------------------+
134: | FND_MSG_PUB.Count_And_Get used to get the count of mesg.|
135: | in the message stack. If there is only one message in |
136: | the stack it retrieves this message |
137: +---------------------------------------------------------*/
138: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,

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

134: | FND_MSG_PUB.Count_And_Get used to get the count of mesg.|
135: | in the message stack. If there is only one message in |
136: | the stack it retrieves this message |
137: +---------------------------------------------------------*/
138: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.G_FALSE,
139: p_count => p_msg_count,
140: p_data => p_msg_data
141: );
142: --