DBA Data[Home] [Help]

APPS.ITG_BOAPI_WRAPPERS dependencies on FND_MSG_PUB

Line 92: FND_MSG_PUB.INITIALIZE;

88: RETURN;
89: END IF;
90:
91: -- Remove FND_MSG from every package. Do it once per transaction here.
92: FND_MSG_PUB.INITIALIZE;
93:
94: /*
95: FND_GLOBAL.apps_initialize(
96: user_id => nvl(fnd_profile.value('ITG_XML_USER'),itg_x_utils.c_user_id),

Line 357: FND_MSG_PUB.get(

353: END IF;
354: END IF;
355:
356: /* Now loop through FND messages and add collaboration details*/
357: FND_MSG_PUB.get(
358: p_msg_index => FND_MSG_PUB.G_FIRST,
359: p_encoded => FND_API.G_FALSE,
360: p_data => l_text,
361: p_msg_index_out => l_inxout);

Line 358: p_msg_index => FND_MSG_PUB.G_FIRST,

354: END IF;
355:
356: /* Now loop through FND messages and add collaboration details*/
357: FND_MSG_PUB.get(
358: p_msg_index => FND_MSG_PUB.G_FIRST,
359: p_encoded => FND_API.G_FALSE,
360: p_data => l_text,
361: p_msg_index_out => l_inxout);
362:

Line 393: FND_MSG_PUB.get(

389: END IF;
390: END IF;
391: END IF;
392:
393: FND_MSG_PUB.get(
394: p_msg_index => FND_MSG_PUB.G_NEXT,
395: p_encoded => FND_API.G_FALSE,
396: p_data => l_text,
397: p_msg_index_out => l_inxout);

Line 394: p_msg_index => FND_MSG_PUB.G_NEXT,

390: END IF;
391: END IF;
392:
393: FND_MSG_PUB.get(
394: p_msg_index => FND_MSG_PUB.G_NEXT,
395: p_encoded => FND_API.G_FALSE,
396: p_data => l_text,
397: p_msg_index_out => l_inxout);
398: END LOOP;

Line 401: FND_MSG_PUB.Delete_Msg;

397: p_msg_index_out => l_inxout);
398: END LOOP;
399: END IF;
400: /* Delete global message table*/
401: FND_MSG_PUB.Delete_Msg;
402:
403: IF (l_Debug_Level <= 2) THEN
404: itg_debug_pub.Add('Exiting ITG_BOAPI_Wrappers.Reap_Messages', 2);
405: END IF;