DBA Data[Home] [Help]

APPS.BIS_SUBMIT_REQUESTSET dependencies on FND_MESSAGE

Line 1317: l_message_text1:=fnd_message.get_string('BIS','BIS_BIA_PMV_RFH_DATE_API_MSG');

1313: --bug 4314736
1314: --l_formatted_date:=to_char(l_last_refresh_date,fnd_profile.value_specific('ICX_DATE_FORMAT_MASK'));
1315: l_formatted_date:= BIS_RSG_PMV_REPORT_PKG.date_to_charDTTZ(l_last_refresh_date);
1316:
1317: l_message_text1:=fnd_message.get_string('BIS','BIS_BIA_PMV_RFH_DATE_API_MSG');
1318: log(l_module, 'message text:'||l_message_text1);
1319: if p_url_flag='Y' then
1320: --CODE FIX FOR 4653272, replaced ? with &
1321: -- CODE FIX FOR 4710006, added call to icx_sec.CreateRFURL, to convert to MAC compliant

Line 1339: l_return_string:=''||fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR')||'';

1335: end if;
1336: log(l_module, 'got details url: '||l_return_string);
1337: else if l_last_refresh_date=to_date('01-01-1900','DD-MM-YYYY') then
1338: if p_url_flag='Y' then
1339: l_return_string:=''||fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR')||'';
1340: else
1341: l_return_string:=fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR');
1342: end if;
1343: else

Line 1341: l_return_string:=fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR');

1337: else if l_last_refresh_date=to_date('01-01-1900','DD-MM-YYYY') then
1338: if p_url_flag='Y' then
1339: l_return_string:=''||fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR')||'';
1340: else
1341: l_return_string:=fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR');
1342: end if;
1343: else
1344: l_return_string:=null;
1345: end if;

Line 1350: l_message_text1:=fnd_message.get_string('BIS','BIS_BIA_PMV_RFH_DATE_API_MSG');

1346: end if;
1347: end if;
1348: if p_obj_type in ('REPORT','PORTLET','TABLE','VIEW','MV') then
1349: if l_last_refresh_date is not null and l_last_refresh_date<>to_date('01-01-1900','DD-MM-YYYY') then
1350: l_message_text1:=fnd_message.get_string('BIS','BIS_BIA_PMV_RFH_DATE_API_MSG');
1351: --bug 4314736
1352: --l_formatted_date:=to_char(l_last_refresh_date,fnd_profile.value_specific('ICX_DATE_FORMAT_MASK'));
1353: l_formatted_date:= BIS_RSG_PMV_REPORT_PKG.date_to_charDTTZ(l_last_refresh_date);
1354:

Line 1377: l_return_string:=''||fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR')||'';

1373: end if;
1374: log(l_module, 'got details url: '||l_return_string);
1375: else if l_last_refresh_date=to_date('01-01-1900','DD-MM-YYYY') then
1376: if p_url_flag='Y' then
1377: l_return_string:=''||fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR')||'';
1378: else
1379: l_return_string:=fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR');
1380: end if;
1381: else

Line 1379: l_return_string:=fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR');

1375: else if l_last_refresh_date=to_date('01-01-1900','DD-MM-YYYY') then
1376: if p_url_flag='Y' then
1377: l_return_string:=''||fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR')||'';
1378: else
1379: l_return_string:=fnd_message.get_string('BIS','BIS_PMV_LAST_UPDATE_ERR');
1380: end if;
1381: else
1382: l_return_string:=null;
1383: end if;

Line 1389: l_current_stat_message := FND_MESSAGE.get_string('BIS','BIS_RSG_RS_CURRENT_STATUS');

1385: end if;
1386:
1387: -- Enh#4289567 :: to display Current Status Icon with Data Last Update Date
1388: IF (p_url_flag='Y' AND p_obj_type IN ('REPORT','PAGE','PORTLET') AND request_set_running(p_obj_type, p_obj_name, l_rs_run_time) = 'Y') THEN
1389: l_current_stat_message := FND_MESSAGE.get_string('BIS','BIS_RSG_RS_CURRENT_STATUS');
1390: l_current_status_gif := '/OA_MEDIA/bispro16.gif';
1391: l_return_string := ''||l_current_stat_message|| l_rs_run_time ||<br>
1392:                       '' || l_return_string;