DBA Data[Home] [Help]

APPS.ZPB_WF dependencies on FND_MSG_PUB

Line 4432: FND_MSG_PUB.initialize;

4428: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
4429: END IF;
4430: -- Initialize message list if p_init_msg_list is set to TRUE.
4431: IF FND_API.to_Boolean(p_init_msg_list) THEN
4432: FND_MSG_PUB.initialize;
4433: END IF;
4434: -- Initialize API return status to success
4435: x_return_status := FND_API.G_RET_STS_SUCCESS;
4436:

Line 4456: FND_MSG_PUB.Count_And_Get(

4452: if InstanceStatusCode = 'ISCNotFound' then
4453: x_msg_count := 1;
4454: x_msg_data := 'No Instance ws found for this Business Process.';
4455: -- Standard call to get message count and if count is 1, get message info.
4456: FND_MSG_PUB.Count_And_Get(
4457: p_count => x_msg_count,
4458: p_data => x_msg_data );
4459:
4460: -- DBMS_OUTPUT.PUT_LINE('No Instance ws found for this Business Process.');

Line 4468: FND_MSG_PUB.Count_And_Get(

4464: if InstanceStatusCode = 'ACTIVE' then
4465: x_msg_count := 1;
4466: x_msg_data := 'The instance of this Business Process is currently running. Instance: ' || p_InstanceID ;
4467: -- Standard call to get message count and if count is 1, get message info.
4468: FND_MSG_PUB.Count_And_Get(
4469: p_count => x_msg_count,
4470: p_data => x_msg_data );
4471:
4472: -- DBMS_OUTPUT.PUT_LINE('The instance of this Business Process is currently running. Instance: ' || p_InstanceID);

Line 4549: FND_MSG_PUB.Count_And_Get(

4545:
4546: x_msg_count := 1;
4547: x_msg_data := 'The Data Load task was missing the WF Process Name for this Business Process.';
4548: -- Standard call to get message count and if count is 1, get message info.
4549: FND_MSG_PUB.Count_And_Get(
4550: p_count => x_msg_count,
4551: p_data => x_msg_data );
4552:
4553: -- DBMS_OUTPUT.PUT_LINE('The Data Load task was not found for this Instance of the Business Process.');

Line 4680: FND_MSG_PUB.Count_And_Get(

4676: IF FND_API.To_Boolean( p_commit ) THEN
4677: COMMIT WORK;
4678: END IF;
4679: -- Standard call to get message count and if count is 1, get message info.
4680: FND_MSG_PUB.Count_And_Get(
4681: p_count => x_msg_count,
4682: p_data => x_msg_data
4683: );
4684:

Line 4692: FND_MSG_PUB.Count_And_Get(

4688: exception
4689: WHEN FND_API.G_EXC_ERROR THEN
4690: ROLLBACK TO zpb_request_explanation;
4691: x_return_status := FND_API.G_RET_STS_ERROR;
4692: FND_MSG_PUB.Count_And_Get(
4693: p_count => x_msg_count,
4694: p_data => x_msg_data
4695: );
4696: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 4699: FND_MSG_PUB.Count_And_Get(

4695: );
4696: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
4697: ROLLBACK TO zpb_request_explanation;
4698: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4699: FND_MSG_PUB.Count_And_Get(
4700: p_count => x_msg_count,
4701: p_data => x_msg_data
4702: );
4703: WHEN OTHERS THEN

Line 4706: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

4702: );
4703: WHEN OTHERS THEN
4704: ROLLBACK TO zpb_request_explanation;
4705: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4706: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
4707: FND_MSG_PUB.Add_Exc_Msg(
4708: G_PKG_NAME,
4709: l_api_name
4710: );

Line 4707: FND_MSG_PUB.Add_Exc_Msg(

4703: WHEN OTHERS THEN
4704: ROLLBACK TO zpb_request_explanation;
4705: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4706: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
4707: FND_MSG_PUB.Add_Exc_Msg(
4708: G_PKG_NAME,
4709: l_api_name
4710: );
4711: END IF;

Line 4712: FND_MSG_PUB.Count_And_Get(

4708: G_PKG_NAME,
4709: l_api_name
4710: );
4711: END IF;
4712: FND_MSG_PUB.Count_And_Get(
4713: p_count => x_msg_count,
4714: p_data => x_msg_data
4715: );
4716: