DBA Data[Home] [Help]

APPS.OKC_REP_STATUS_UPDATE_PVT dependencies on FND_MSG_PUB

Line 118: FND_MSG_PUB.initialize;

114: END IF;
115:
116: -- Initialize message list if p_init_msg_list is set to TRUE.
117: IF FND_API.to_Boolean( p_init_msg_list ) THEN
118: FND_MSG_PUB.initialize;
119: END IF;
120:
121: -- Update the status of the terminated contracts in the active contracts table
122: OPEN contracts_cur;

Line 310: FND_MSG_PUB.Count_And_Get(

306: p_token1_value => SQLCODE,
307: p_token2 => G_SQLERRM_TOKEN,
308: p_token2_value => SQLERRM);
309:
310: FND_MSG_PUB.Count_And_Get(
311: p_count => x_msg_count,
312: p_data => x_msg_data
313: );
314:

Line 373: errbuf := substr(FND_MSG_PUB.Get(), 1, 200);

369: );
370:
371: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
372: retcode := G_RETURN_CODE_ERROR;
373: errbuf := substr(FND_MSG_PUB.Get(), 1, 200);
374: END IF;
375:
376: FND_FILE.PUT_LINE(FND_FILE.LOG, '***** END contract_status_update_manager() *****');
377: