DBA Data[Home] [Help]

APPS.PO_MULTI_MOD_VALIDATIONS dependencies on FND_MSG_PUB

Line 2287: --initialize FND_MSG_PUB before adding any new messages to the stack

2283: IF d_stmt THEN
2284: PO_LOG.stmt(d_mod,d_position,'Calling PO_UDA_DEFAULTING_PKG.UDA_SUBMISSION_CHECK');
2285: END IF;
2286:
2287: --initialize FND_MSG_PUB before adding any new messages to the stack
2288: FND_MSG_PUB.Initialize;
2289:
2290: PO_UDA_DEFAULTING_PKG.UDA_SUBMISSION_CHECK(
2291: p_pk1_value => l_uda_key_po_header_id,

Line 2288: FND_MSG_PUB.Initialize;

2284: PO_LOG.stmt(d_mod,d_position,'Calling PO_UDA_DEFAULTING_PKG.UDA_SUBMISSION_CHECK');
2285: END IF;
2286:
2287: --initialize FND_MSG_PUB before adding any new messages to the stack
2288: FND_MSG_PUB.Initialize;
2289:
2290: PO_UDA_DEFAULTING_PKG.UDA_SUBMISSION_CHECK(
2291: p_pk1_value => l_uda_key_po_header_id,
2292: p_pk2_value => l_uda_key_draft_id,

Line 2330: l_msg_count := FND_MSG_PUB.Count_Msg;

2326: IF d_stmt THEN
2327: PO_LOG.stmt(d_mod,d_position,'Submission check has failed for UDA');
2328: END IF;
2329:
2330: l_msg_count := FND_MSG_PUB.Count_Msg;
2331:
2332: IF d_stmt THEN
2333: PO_LOG.stmt(d_mod,d_position,'l_msg_count',l_msg_count);
2334: END IF;

Line 2342: l_msg_text := FND_MSG_PUB.get (msg_counter, FND_API.g_true);

2338: FOR msg_counter IN 1 ..l_msg_count
2339: LOOP
2340:
2341: d_position := 70;
2342: l_msg_text := FND_MSG_PUB.get (msg_counter, FND_API.g_true);
2343:
2344: IF d_stmt THEN
2345: PO_LOG.stmt(d_mod,d_position,'l_msg_text',l_msg_text);
2346: END IF;