DBA Data[Home] [Help]

APPS.CS_SR_CUST_CONT_MAINT_PVT dependencies on FND_MSG_PUB

Line 35: FND_MSG_PUB.Add_Exc_Msg

31: ELSIF p_level = ('FULL') then
32: RETURN FND_API.G_VALID_LEVEL_FULL ;
33: ELSE
34: -- Unrecognized parameter.
35: FND_MSG_PUB.Add_Exc_Msg
36: ( p_pkg_name => G_PVT_NAME ,
37: p_procedure_name => 'G_VALID_LEVEL' ,
38: p_error_text => 'Unrecognized Value : '||p_level
39: );

Line 54: FND_MSG_PUB.Add_Exc_Msg

50: elsif p_flag = 'FALSE' then
51: return FND_API.G_FALSE ;
52: ELSE
53: -- Unrecognized parameter.
54: FND_MSG_PUB.Add_Exc_Msg
55: ( p_pkg_name => G_PVT_NAME ,
56: p_procedure_name => 'G_BOOLEAN' ,
57: p_error_text => 'Unrecognized Value : '||p_flag
58: );

Line 357: -- return FND_MSG_PUB.Get(p_msg_index=>1,p_encoded =>'F' );

353: x_msg_data => l_msg_data);
354:
355: -- If procedure does not return success then pass back null (since will be used in view definition)
356: if (l_return_status <> FND_API.G_RET_STS_SUCCESS) then
357: -- return FND_MSG_PUB.Get(p_msg_index=>1,p_encoded =>'F' );
358: return null;
359: else
360: return l_formatted_phone_number;
361: end if;