DBA Data[Home] [Help]

APPS.CS_ERES_INT_PKG dependencies on FND_MSG_PUB

Line 284: FND_MSG_PUB.Count_And_Get

280:
281: EXCEPTION
282: WHEN FND_API.G_EXC_ERROR THEN
283: x_return_status := FND_API.G_RET_STS_ERROR;
284: FND_MSG_PUB.Count_And_Get
285: ( p_count => x_msg_count,
286: p_data => x_msg_data
287: );
288:

Line 291: FND_MSG_PUB.Count_And_Get

287: );
288:
289: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
290: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
291: FND_MSG_PUB.Count_And_Get
292: ( p_count => x_msg_count,
293: p_data => x_msg_data
294: );
295: WHEN OTHERS THEN

Line 297: FND_MSG_PUB.Count_And_Get

293: p_data => x_msg_data
294: );
295: WHEN OTHERS THEN
296: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
297: FND_MSG_PUB.Count_And_Get
298: ( p_count => x_msg_count,
299: p_data => x_msg_data
300: );
301: END Start_Approval_Process ;

Line 608: FND_MSG_PUB.ADD;

604: WHEN OTHERS THEN
605: FND_MESSAGE.SET_NAME ('CS' , 'CS_ERES_XML_GEN_FAILED');
606: FND_MESSAGE.SET_TOKEN ('SQLCODE', SQLCODE);
607: FND_MESSAGE.SET_TOKEN ('SQLERRM', SQLERRM);
608: FND_MSG_PUB.ADD;
609: RETURN NULL;
610: END Append_EA_Data ;
611:
612: -- Following functions are internally used by the Generate_XML_Document while generating the

Line 2024: FND_MSG_PUB.ADD;

2020: --dbms_output.put_line('Other Error: '||sqlcode||sqlerrm);
2021: FND_MESSAGE.SET_NAME('CS','CS_ERES_XML_GEN_FAILED');
2022: FND_MESSAGE.SET_TOKEN ('SQLCODE',SQLCODE);
2023: FND_MESSAGE.SET_TOKEN ('SQLERRM',SQLERRM);
2024: FND_MSG_PUB.ADD;
2025: RETURN NULL;
2026: END Generate_XML_Document ;
2027:
2028: --------------------------------------------------------------------------------

Line 2534: IF (FND_MSG_PUB.Count_Msg > 1) THEN

2530: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2531:
2532: --Get all the error messages and add error messages to the note
2533:
2534: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2535: FOR j in 1..FND_MSG_PUB.Count_Msg
2536: LOOP
2537: FND_MSG_PUB.Get(
2538: p_msg_index => j,

Line 2535: FOR j in 1..FND_MSG_PUB.Count_Msg

2531:
2532: --Get all the error messages and add error messages to the note
2533:
2534: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2535: FOR j in 1..FND_MSG_PUB.Count_Msg
2536: LOOP
2537: FND_MSG_PUB.Get(
2538: p_msg_index => j,
2539: p_encoded => 'F',

Line 2537: FND_MSG_PUB.Get(

2533:
2534: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2535: FOR j in 1..FND_MSG_PUB.Count_Msg
2536: LOOP
2537: FND_MSG_PUB.Get(
2538: p_msg_index => j,
2539: p_encoded => 'F',
2540: p_data => lx_msg_data,
2541: p_msg_index_out => lx_msg_index_out);

Line 2561: FND_MSG_PUB.Get(

2557: END IF;
2558: END IF;
2559: ELSE
2560: --Only one error
2561: FND_MSG_PUB.Get(
2562: p_msg_index => 1,
2563: p_encoded => 'F',
2564: p_data => lx_msg_data,
2565: p_msg_index_out => lx_msg_index_out);

Line 2583: END IF ; -- fnd_msg_pub

2579: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'cs.plsql.CS_ERES_INT_PKG.Post_Approval_Process', dbg_msg);
2580: END IF;
2581: END IF;
2582: END IF;
2583: END IF ; -- fnd_msg_pub
2584:
2585: END IF ;
2586:
2587: END LOOP;

Line 2659: IF (FND_MSG_PUB.Count_Msg > 1) THEN

2655: l_note_text := l_note_text||l_chr_newline||l_note_err_msg||l_chr_newline;
2656:
2657: --Get all the error messages and add error messages to the note
2658:
2659: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2660: FOR j in 1..FND_MSG_PUB.Count_Msg
2661: LOOP
2662: FND_MSG_PUB.Get(
2663: p_msg_index => j,

Line 2660: FOR j in 1..FND_MSG_PUB.Count_Msg

2656:
2657: --Get all the error messages and add error messages to the note
2658:
2659: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2660: FOR j in 1..FND_MSG_PUB.Count_Msg
2661: LOOP
2662: FND_MSG_PUB.Get(
2663: p_msg_index => j,
2664: p_encoded => 'F',

Line 2662: FND_MSG_PUB.Get(

2658:
2659: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2660: FOR j in 1..FND_MSG_PUB.Count_Msg
2661: LOOP
2662: FND_MSG_PUB.Get(
2663: p_msg_index => j,
2664: p_encoded => 'F',
2665: p_data => lx_msg_data,
2666: p_msg_index_out => lx_msg_index_out);

Line 2686: FND_MSG_PUB.Get(

2682: END IF;
2683: END IF;
2684: ELSE
2685: --Only one error
2686: FND_MSG_PUB.Get(
2687: p_msg_index => 1,
2688: p_encoded => 'F',
2689: p_data => lx_msg_data,
2690: p_msg_index_out => lx_msg_index_out);

Line 2875: IF (FND_MSG_PUB.Count_Msg > 1) THEN

2871: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2872:
2873: --Get all the error messages and add error messages to the note
2874:
2875: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2876: FOR j in 1..FND_MSG_PUB.Count_Msg
2877: LOOP
2878: FND_MSG_PUB.Get(
2879: p_msg_index => j,

Line 2876: FOR j in 1..FND_MSG_PUB.Count_Msg

2872:
2873: --Get all the error messages and add error messages to the note
2874:
2875: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2876: FOR j in 1..FND_MSG_PUB.Count_Msg
2877: LOOP
2878: FND_MSG_PUB.Get(
2879: p_msg_index => j,
2880: p_encoded => 'F',

Line 2878: FND_MSG_PUB.Get(

2874:
2875: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2876: FOR j in 1..FND_MSG_PUB.Count_Msg
2877: LOOP
2878: FND_MSG_PUB.Get(
2879: p_msg_index => j,
2880: p_encoded => 'F',
2881: p_data => lx_msg_data,
2882: p_msg_index_out => lx_msg_index_out);

Line 2902: FND_MSG_PUB.Get(

2898: END IF;
2899: END IF;
2900: ELSE
2901: --Only one error
2902: FND_MSG_PUB.Get(
2903: p_msg_index => 1,
2904: p_encoded => 'F',
2905: p_data => lx_msg_data,
2906: p_msg_index_out => lx_msg_index_out);

Line 2924: END IF ; -- fnd_msg_pub

2920: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'cs.plsql.CS_ERES_INT_PKG.Post_Approval_Process', dbg_msg);
2921: END IF;
2922: END IF;
2923: END IF;
2924: END IF ; -- fnd_msg_pub
2925: END IF ;
2926: END LOOP;
2927:
2928: END IF ; -- end if for the note_type check

Line 2985: FND_MSG_PUB.ADD;

2981: WHEN OTHERS THEN
2982: FND_MESSAGE.SET_NAME('CS','CS_ERES_CALLBACK_API_FAILED');
2983: FND_MESSAGE.SET_TOKEN ('P_SQLCODE',SQLCODE);
2984: FND_MESSAGE.SET_TOKEN ('P_SQLERRM',SQLERRM);
2985: FND_MSG_PUB.ADD;
2986: RAISE;
2987:
2988: END Post_Approval_Process ;
2989:

Line 3064: FND_MSG_PUB.ADD;

3060: EXCEPTION
3061: WHEN OTHERS THEN
3062: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3063: FND_MESSAGE.SET_NAME('CS','CS_ERES_INVLD_INTMED_STS');
3064: FND_MSG_PUB.ADD;
3065: RAISE;
3066: END Get_Target_SR_Status ;
3067:
3068: END CS_ERES_INT_PKG;