DBA Data[Home] [Help]

APPS.CS_ERES_INT_PKG dependencies on FND_MSG_PUB

Line 285: FND_MSG_PUB.Count_And_Get

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

Line 292: FND_MSG_PUB.Count_And_Get

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

Line 298: FND_MSG_PUB.Count_And_Get

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

Line 624: FND_MSG_PUB.ADD;

620: WHEN OTHERS THEN
621: FND_MESSAGE.SET_NAME ('CS' , 'CS_ERES_XML_GEN_FAILED');
622: FND_MESSAGE.SET_TOKEN ('SQLCODE', SQLCODE);
623: FND_MESSAGE.SET_TOKEN ('SQLERRM', SQLERRM);
624: FND_MSG_PUB.ADD;
625: RETURN NULL;
626: END Append_EA_Data ;
627:
628: -- Following functions are internally used by the Generate_XML_Document while generating the

Line 2109: FND_MSG_PUB.ADD;

2105: --dbms_output.put_line('Other Error: '||sqlcode||sqlerrm);
2106: FND_MESSAGE.SET_NAME('CS','CS_ERES_XML_GEN_FAILED');
2107: FND_MESSAGE.SET_TOKEN ('SQLCODE',SQLCODE);
2108: FND_MESSAGE.SET_TOKEN ('SQLERRM',SQLERRM);
2109: FND_MSG_PUB.ADD;
2110: RETURN NULL;
2111: END Generate_XML_Document ;
2112:
2113: --------------------------------------------------------------------------------

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

2624: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2625:
2626: --Get all the error messages and add error messages to the note
2627:
2628: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2629: FOR j in 1..FND_MSG_PUB.Count_Msg
2630: LOOP
2631: FND_MSG_PUB.Get(
2632: p_msg_index => j,

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

2625:
2626: --Get all the error messages and add error messages to the note
2627:
2628: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2629: FOR j in 1..FND_MSG_PUB.Count_Msg
2630: LOOP
2631: FND_MSG_PUB.Get(
2632: p_msg_index => j,
2633: p_encoded => 'F',

Line 2631: FND_MSG_PUB.Get(

2627:
2628: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2629: FOR j in 1..FND_MSG_PUB.Count_Msg
2630: LOOP
2631: FND_MSG_PUB.Get(
2632: p_msg_index => j,
2633: p_encoded => 'F',
2634: p_data => lx_msg_data,
2635: p_msg_index_out => lx_msg_index_out);

Line 2655: FND_MSG_PUB.Get(

2651: END IF;
2652: END IF;
2653: ELSE
2654: --Only one error
2655: FND_MSG_PUB.Get(
2656: p_msg_index => 1,
2657: p_encoded => 'F',
2658: p_data => lx_msg_data,
2659: p_msg_index_out => lx_msg_index_out);

Line 2677: END IF ; -- fnd_msg_pub

2673: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'cs.plsql.CS_ERES_INT_PKG.Post_Approval_Process', dbg_msg);
2674: END IF;
2675: END IF;
2676: END IF;
2677: END IF ; -- fnd_msg_pub
2678:
2679: END IF ;
2680:
2681: END LOOP;

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

2749: l_note_text := l_note_text||l_chr_newline||l_note_err_msg||l_chr_newline;
2750:
2751: --Get all the error messages and add error messages to the note
2752:
2753: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2754: FOR j in 1..FND_MSG_PUB.Count_Msg
2755: LOOP
2756: FND_MSG_PUB.Get(
2757: p_msg_index => j,

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

2750:
2751: --Get all the error messages and add error messages to the note
2752:
2753: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2754: FOR j in 1..FND_MSG_PUB.Count_Msg
2755: LOOP
2756: FND_MSG_PUB.Get(
2757: p_msg_index => j,
2758: p_encoded => 'F',

Line 2756: FND_MSG_PUB.Get(

2752:
2753: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2754: FOR j in 1..FND_MSG_PUB.Count_Msg
2755: LOOP
2756: FND_MSG_PUB.Get(
2757: p_msg_index => j,
2758: p_encoded => 'F',
2759: p_data => lx_msg_data,
2760: p_msg_index_out => lx_msg_index_out);

Line 2780: FND_MSG_PUB.Get(

2776: END IF;
2777: END IF;
2778: ELSE
2779: --Only one error
2780: FND_MSG_PUB.Get(
2781: p_msg_index => 1,
2782: p_encoded => 'F',
2783: p_data => lx_msg_data,
2784: p_msg_index_out => lx_msg_index_out);

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

2965: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2966:
2967: --Get all the error messages and add error messages to the note
2968:
2969: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2970: FOR j in 1..FND_MSG_PUB.Count_Msg
2971: LOOP
2972: FND_MSG_PUB.Get(
2973: p_msg_index => j,

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

2966:
2967: --Get all the error messages and add error messages to the note
2968:
2969: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2970: FOR j in 1..FND_MSG_PUB.Count_Msg
2971: LOOP
2972: FND_MSG_PUB.Get(
2973: p_msg_index => j,
2974: p_encoded => 'F',

Line 2972: FND_MSG_PUB.Get(

2968:
2969: IF (FND_MSG_PUB.Count_Msg > 1) THEN
2970: FOR j in 1..FND_MSG_PUB.Count_Msg
2971: LOOP
2972: FND_MSG_PUB.Get(
2973: p_msg_index => j,
2974: p_encoded => 'F',
2975: p_data => lx_msg_data,
2976: p_msg_index_out => lx_msg_index_out);

Line 2996: FND_MSG_PUB.Get(

2992: END IF;
2993: END IF;
2994: ELSE
2995: --Only one error
2996: FND_MSG_PUB.Get(
2997: p_msg_index => 1,
2998: p_encoded => 'F',
2999: p_data => lx_msg_data,
3000: p_msg_index_out => lx_msg_index_out);

Line 3018: END IF ; -- fnd_msg_pub

3014: FND_LOG.STRING(FND_LOG.LEVEL_PROCEDURE, 'cs.plsql.CS_ERES_INT_PKG.Post_Approval_Process', dbg_msg);
3015: END IF;
3016: END IF;
3017: END IF;
3018: END IF ; -- fnd_msg_pub
3019: END IF ;
3020: END LOOP;
3021:
3022: END IF ; -- end if for the note_type check

Line 3079: FND_MSG_PUB.ADD;

3075: WHEN OTHERS THEN
3076: FND_MESSAGE.SET_NAME('CS','CS_ERES_CALLBACK_API_FAILED');
3077: FND_MESSAGE.SET_TOKEN ('P_SQLCODE',SQLCODE);
3078: FND_MESSAGE.SET_TOKEN ('P_SQLERRM',SQLERRM);
3079: FND_MSG_PUB.ADD;
3080: RAISE;
3081:
3082: END Post_Approval_Process ;
3083:

Line 3158: FND_MSG_PUB.ADD;

3154: EXCEPTION
3155: WHEN OTHERS THEN
3156: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3157: FND_MESSAGE.SET_NAME('CS','CS_ERES_INVLD_INTMED_STS');
3158: FND_MSG_PUB.ADD;
3159: RAISE;
3160: END Get_Target_SR_Status ;
3161:
3162: END CS_ERES_INT_PKG;