DBA Data[Home] [Help]

APPS.BIS_CONCURRENT_MANAGER_PVT dependencies on BIS_UTILITIES_PVT

Line 181: BIS_UTILITIES_PVT.Add_Error_Message

177: BIS_UTILITIES_PUB.put_line(p_text =>'exception 2 in Manage_Alert_Registrations: '||sqlerrm);
178: when others then
179: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
180: BIS_UTILITIES_PUB.put_line(p_text =>'exception 3 in Manage_Alert_Registrations: '||sqlerrm);
181: BIS_UTILITIES_PVT.Add_Error_Message
182: ( p_error_msg_id => SQLCODE
183: , p_error_description => SQLERRM
184: , p_error_proc_name => G_PKG_NAME||'.Manage_Alert_Registrations'
185: , p_error_table => x_error_tbl

Line 410: = BIS_UTILITIES_PVT.G_BIS_APPLICATION_SHORT_NAME;

406: From Fnd_Concurrent_Programs P, Fnd_Application A
407: Where Concurrent_Program_Name = l_conc_program_name
408: And P.Application_ID = A.Application_ID
409: And A.Application_Short_Name
410: = BIS_UTILITIES_PVT.G_BIS_APPLICATION_SHORT_NAME;
411:
412: EXCEPTION
413: WHEN OTHERS THEN
414: BIS_UTILITIES_PUB.put_line(p_text =>'Error in Get_PMF_Concurrent_Program_ID: '||SQLERRM);

Line 614: BIS_UTILITIES_PVT.Add_Error_Message

610: x_errbuf := 'Request: '||to_char(l_request_number)
611: ||', Error3: '||SQLERRM
612: || 'Error from FND_REQUEST.SUBMIT_REQUEST : ' || FND_MESSAGE.GET;
613: x_retcode := SQLCODE;
614: BIS_UTILITIES_PVT.Add_Error_Message
615: ( p_error_msg_id => SQLCODE
616: , p_error_description => SQLERRM
617: , p_error_proc_name => G_PKG_NAME||'.Service_Alert_Request'
618: );

Line 878: l_every := BIS_UTILITIES_PVT.getPrompt( 'BIS_PERFORMANCE_ALERT_PROMPTS'

874:
875: l_schedule_unit := Get_Freq_Display_Unit(p_schedule_unit);
876:
877: IF (upper(p_schedule_unit) <> 'ONCE') THEN
878: l_every := BIS_UTILITIES_PVT.getPrompt( 'BIS_PERFORMANCE_ALERT_PROMPTS'
879: , 'BIS_EVERY');
880: l_schedule_freq_unit:=l_every||' '||p_schedule_freq||' '||l_schedule_unit;
881: ELSE
882: l_schedule_freq_unit := lower(l_schedule_unit);

Line 905: l_repeat_unit := BIS_UTILITIES_PVT.Get_FND_Message(

901: BEGIN
902:
903: --BIS_UTILITIES_PUB.put_line(p_text =>'Translating unit code: '||p_freq_unit_code);
904: IF (UPPER(p_freq_unit_code) = 'ONCE') THEN
905: l_repeat_unit := BIS_UTILITIES_PVT.Get_FND_Message(
906: p_message_name => 'BIS_PMF_ALERT_ONCE');
907: RETURN l_repeat_unit;
908: ELSE
909: BEGIN