DBA Data[Home] [Help]

APPS.POA_CM_EVAL_SCORES_ICX dependencies on POA_CM_EVAL_SCORES

Line 1: PACKAGE BODY POA_cm_eval_scores_icx AS

1: PACKAGE BODY POA_cm_eval_scores_icx AS
2: /* $Header: POACMSCB.pls 115.15 2003/04/29 21:47:10 rvickrey ship $ */
3:
4: PROCEDURE Reload_Header(p_header t_header_record, error_msg VARCHAR2)
5: IS

Line 339: ');

335:
336: if (which_one = 2) then
337: htp.p('
338:    
339: ');
340: end if;
341:
342: htp.p('
343:

Line 661: poa_cm_eval_scores_icx.score_entry_page(

657:
658:
659:
660: if (POA_CM_SUBMIT_TYPE = 'Next') then
661: poa_cm_eval_scores_icx.score_entry_page(
662: poa_cm_custom_measure_code ,
663: poa_cm_custom_measure ,
664: l_period_type ,
665: poa_cm_user_period_type ,

Line 686: poa_cm_eval_scores_icx.query_evals(

682: POA_CM_EVALUATION_ID );
683: end if;
684:
685: if (POA_CM_SUBMIT_TYPE = 'Update') then
686: poa_cm_eval_scores_icx.query_evals(
687: poa_cm_custom_measure_code ,
688: poa_cm_custom_measure ,
689: l_period_type ,
690: poa_cm_user_period_type ,

Line 791: from poa_cm_eval_scores

787: WHERE evaluation_id = l_evaluation_id;
788:
789: open c_Criteria for
790: select criteria_code, weight, min_score, max_score
791: from poa_cm_eval_scores
792: where evaluation_id = l_evaluation_id;
793:
794: loop
795: fetch c_Criteria into l_criteria_table(l_index);

Line 804: FROM poa_cm_eval_scores

800: FOR v_counter IN 1..l_criteria_table.count LOOP
801:
802: OPEN c_eval_scores FOR
803: SELECT score, comments
804: FROM poa_cm_eval_scores
805: WHERE evaluation_id = l_evaluation_id
806: AND criteria_code = l_criteria_table(v_counter-1).criteria_code;
807:
808: FETCH c_eval_scores INTO l_scores_table(v_counter-1).score, l_scores_table(v_counter-1).comments;

Line 831: var f = document.POA_CM_EVAL_SCORES_R;

827:
828: htp.p('
829: function weighted_score(linenum)
830: {
831: var f = document.POA_CM_EVAL_SCORES_R;
832:
833: if (isNaN(f.SCORE[linenum].value))
834: {
835: alert(''Please enter a valid score.'');

Line 876: var f = document.POA_CM_EVAL_SCORES_R;

872:
873: function updateScores()
874: {
875:
876: var f = document.POA_CM_EVAL_SCORES_R;
877:
878: for (var i = 0; i < (f.WEIGHTED_SCORE.length-1); i++)
879: weighted_score(i);
880: }

Line 896: var f = document.POA_CM_EVAL_SCORES_R;

892:
893:
894: function submitDoc(submit_type)
895: {
896: var f = document.POA_CM_EVAL_SCORES_R;
897:
898: if (submit_type == "Refresh")
899: f.POA_CM_SUBMIT_TYPE.value = "Refresh";
900: else if (submit_type == "Done")

Line 921: document.POA_CM_EVAL_SCORES_R.submit();

917: return;
918: }
919: }
920:
921: document.POA_CM_EVAL_SCORES_R.submit();
922: }
923:
924: function cancelAction()
925: {

Line 926: var f = document.POA_CM_EVAL_SCORES_R;

922: }
923:
924: function cancelAction()
925: {
926: var f = document.POA_CM_EVAL_SCORES_R;
927:
928: for (var i = 0; i < f.SCORE.length; i++)
929: {
930: f.SCORE[i].value = "";

Line 1038: p_parent_region_code=>'POA_CM_EVAL_SCORES_R',

1034:
1035: -- Heading
1036:
1037: ak_query_pkg.exec_query(p_parent_region_appl_id=>201,
1038: p_parent_region_code=>'POA_CM_EVAL_SCORES_R',
1039: p_responsibility_id=>icx_sec.getID(icx_sec.PV_RESPONSIBILITY_ID),
1040: p_user_id=>icx_sec.getID(icx_sec.PV_WEB_USER_ID),
1041: p_return_parents=>'F',
1042: p_return_children=>'F');

Line 1056: htp.p('
');

1052: END LOOP;
1053:
1054: htp.p('');
1055:
1056: htp.p('');
1057:
1058:
1059: FOR v_counter IN 1..l_criteria_table.count LOOP
1060:

Line 1383:

1379: Evaluator
1380: Creation Date
1381: Last Update Date
1382:
1383:
1384:
1385: ');
1386:
1387: htp.p('');

Line 1574: END poa_cm_eval_scores_icx;

1570: htp.htmlClose;
1571:
1572: END query_evals;
1573:
1574: END poa_cm_eval_scores_icx;