DBA Data[Home] [Help]

APPS.HRI_PARAMETERS dependencies on FND_MESSAGE

Line 477: fnd_message.set_name('HRI','HR_BIS_PLSQL_CART_REQ_PARAM');

473: IF l_param_missing_req_val_name = 'BGT_ID' THEN
474: l_param_missing_req_label := Display_Label('HR_BIS_BUDGET');
475: END IF;
476:
477: fnd_message.set_name('HRI','HR_BIS_PLSQL_CART_REQ_PARAM');
478: fnd_message.set_token('PARAMETER',l_param_missing_req_label);
479:
480: htp.br;
481: htp.br;

Line 478: fnd_message.set_token('PARAMETER',l_param_missing_req_label);

474: l_param_missing_req_label := Display_Label('HR_BIS_BUDGET');
475: END IF;
476:
477: fnd_message.set_name('HRI','HR_BIS_PLSQL_CART_REQ_PARAM');
478: fnd_message.set_token('PARAMETER',l_param_missing_req_label);
479:
480: htp.br;
481: htp.br;
482: htp.br;

Line 483: htp.bold(fnd_message.get);

479:
480: htp.br;
481: htp.br;
482: htp.br;
483: htp.bold(fnd_message.get);
484: htp.formClose;
485: htp.bodyClose;
486: htp.htmlClose;
487:

Line 655: fnd_message.set_name( 'HRI', p_label_name );

651: -- This private function gets the translation for each of the report parameter
652: -- labels. Pass in the message_name (e.g. 'HR_BIS_PRODUCT_CATEGORY') and
653: -- it passes back the correct translation
654:
655: fnd_message.set_name( 'HRI', p_label_name );
656: return fnd_message.get;
657:
658: END Display_Label;
659:

Line 656: return fnd_message.get;

652: -- labels. Pass in the message_name (e.g. 'HR_BIS_PRODUCT_CATEGORY') and
653: -- it passes back the correct translation
654:
655: fnd_message.set_name( 'HRI', p_label_name );
656: return fnd_message.get;
657:
658: END Display_Label;
659:
660: --=========================================================================================

Line 1233: params(i).Value := params(i).Value || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_TOP'), NULL, 'VALUE="'||'HR_BIS_TOP'||'"');

1229: -- Parameter Request String : DISPLY
1230:
1231: params(i).Label := Display_Label('HR_BIS_DISPLAY');
1232: params(i).Value := htf.formSelectOpen('DISPLY');
1233: params(i).Value := params(i).Value || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_TOP'), NULL, 'VALUE="'||'HR_BIS_TOP'||'"');
1234: params(i).Value := params(i).Value || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_BOTTOM'), NULL, 'VALUE="'||'HR_BIS_BOTTOM'||'"');
1235:
1236: params(i).Value := params(i).Value || htf.formSelectClose;
1237:

Line 1234: params(i).Value := params(i).Value || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_BOTTOM'), NULL, 'VALUE="'||'HR_BIS_BOTTOM'||'"');

1230:
1231: params(i).Label := Display_Label('HR_BIS_DISPLAY');
1232: params(i).Value := htf.formSelectOpen('DISPLY');
1233: params(i).Value := params(i).Value || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_TOP'), NULL, 'VALUE="'||'HR_BIS_TOP'||'"');
1234: params(i).Value := params(i).Value || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_BOTTOM'), NULL, 'VALUE="'||'HR_BIS_BOTTOM'||'"');
1235:
1236: params(i).Value := params(i).Value || htf.formSelectClose;
1237:
1238: params(i).Value := params(i).Value || htf.formSelectOpen('DCOUNT');

Line 1358: || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_CURRENT_EMPL_IN_JOB'),

1354:
1355: params(i).Label := Display_Label('HR_BIS_EMP_APP');
1356: params(i).Value := htf.formSelectOpen('EMPAPL');
1357: params(i).Value := params(i).Value
1358: || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_CURRENT_EMPL_IN_JOB'),
1359: NULL,
1360: 'VALUE="E"');
1361: params(i).Value := params(i).Value
1362: || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_CURRENT_APPL_FOR_JOB'),

Line 1362: || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_CURRENT_APPL_FOR_JOB'),

1358: || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_CURRENT_EMPL_IN_JOB'),
1359: NULL,
1360: 'VALUE="E"');
1361: params(i).Value := params(i).Value
1362: || htf.formSelectOption(fnd_message.get_string( 'HRI' ,'HR_BIS_CURRENT_APPL_FOR_JOB'),
1363: NULL,
1364: 'VALUE="A"');
1365:
1366: params(i).Value := params(i).Value || htf.formSelectClose;

Line 1393: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')

1389:
1390: IF p_option = 1
1391: THEN
1392: params(i).Value := params(i).Value ||
1393: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')
1394: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),
1395: NULL, 'VALUE="HR_BIS_TOTAL"');
1396: params(i).Value := params(i).Value ||
1397: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')

Line 1394: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),

1390: IF p_option = 1
1391: THEN
1392: params(i).Value := params(i).Value ||
1393: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')
1394: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),
1395: NULL, 'VALUE="HR_BIS_TOTAL"');
1396: params(i).Value := params(i).Value ||
1397: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')
1398: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),

Line 1397: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')

1393: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')
1394: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),
1395: NULL, 'VALUE="HR_BIS_TOTAL"');
1396: params(i).Value := params(i).Value ||
1397: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')
1398: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),
1399: NULL, 'VALUE="HR_BIS_PERCENT"');
1400: ELSIF p_option = 2
1401: THEN

Line 1398: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),

1394: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),
1395: NULL, 'VALUE="HR_BIS_TOTAL"');
1396: params(i).Value := params(i).Value ||
1397: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')
1398: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_SEPARATED'),
1399: NULL, 'VALUE="HR_BIS_PERCENT"');
1400: ELSIF p_option = 2
1401: THEN
1402: params(i).Value := params(i).Value ||

Line 1403: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')

1399: NULL, 'VALUE="HR_BIS_PERCENT"');
1400: ELSIF p_option = 2
1401: THEN
1402: params(i).Value := params(i).Value ||
1403: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')
1404: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),
1405: NULL, 'VALUE="HR_BIS_PERCENT"');
1406: params(i).Value := params(i).Value ||
1407: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')

Line 1404: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),

1400: ELSIF p_option = 2
1401: THEN
1402: params(i).Value := params(i).Value ||
1403: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')
1404: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),
1405: NULL, 'VALUE="HR_BIS_PERCENT"');
1406: params(i).Value := params(i).Value ||
1407: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')
1408: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),

Line 1407: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')

1403: htf.formSelectOption(fnd_message.get_string('HRI', 'HR_BIS_PERCENT')
1404: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),
1405: NULL, 'VALUE="HR_BIS_PERCENT"');
1406: params(i).Value := params(i).Value ||
1407: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')
1408: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),
1409: NULL, 'VALUE="HR_BIS_TOTAL"');
1410: END IF;
1411:

Line 1408: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),

1404: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),
1405: NULL, 'VALUE="HR_BIS_PERCENT"');
1406: params(i).Value := params(i).Value ||
1407: htf.formSelectOption(fnd_message.get_string('HRI' ,'HR_BIS_TOTAL')
1408: || ' ' || fnd_message.get_string('HRI', 'HR_BIS_INCREASE'),
1409: NULL, 'VALUE="HR_BIS_TOTAL"');
1410: END IF;
1411:
1412: params(i).Value := params(i).Value || htf.formSelectClose;

Line 1636: htf.formSelectOption(fnd_message.get_string('HRI','HR_BIS_MINIMUM_PROFICIENCY'),

1632:
1633: params(i).Label := Display_Label('HR_BIS_PROFICIENCY_LEVEL');
1634: params(i).Value := htf.formSelectOpen('PFMEAS');
1635: params(i).Value := params(i).Value ||
1636: htf.formSelectOption(fnd_message.get_string('HRI','HR_BIS_MINIMUM_PROFICIENCY'),
1637: NULL,
1638: 'VALUE="M"');
1639: params(i).Value := params(i).Value ||
1640: htf.formSelectOption(fnd_message.get_string('HRI','HR_BIS_PROFICIENCY_RANGE'),

Line 1640: htf.formSelectOption(fnd_message.get_string('HRI','HR_BIS_PROFICIENCY_RANGE'),

1636: htf.formSelectOption(fnd_message.get_string('HRI','HR_BIS_MINIMUM_PROFICIENCY'),
1637: NULL,
1638: 'VALUE="M"');
1639: params(i).Value := params(i).Value ||
1640: htf.formSelectOption(fnd_message.get_string('HRI','HR_BIS_PROFICIENCY_RANGE'),
1641: NULL,
1642: 'VALUE="R"');
1643:
1644: params(i).Value := params(i).Value || htf.formSelectClose;