DBA Data[Home] [Help]

APPS.PAY_NO_HIGH_RATE_TAX dependencies on HR_UTILITY

Line 600: hr_utility.set_message (801, 'PAY_376954_NO_TABLE_NOT_FOUND');

596: if (p_table_name <> '9999') then
597: l_table_name := p_table_name;
598: end if;
599:
600: hr_utility.set_message (801, 'PAY_376954_NO_TABLE_NOT_FOUND');
601: hr_utility.set_message_token (801, 'TABLE', l_table_name);
602: l_no_tax_card_msg := hr_utility.get_message;
603:
604: fnd_file.put_line (fnd_file.LOG, l_no_tax_card_msg );

Line 601: hr_utility.set_message_token (801, 'TABLE', l_table_name);

597: l_table_name := p_table_name;
598: end if;
599:
600: hr_utility.set_message (801, 'PAY_376954_NO_TABLE_NOT_FOUND');
601: hr_utility.set_message_token (801, 'TABLE', l_table_name);
602: l_no_tax_card_msg := hr_utility.get_message;
603:
604: fnd_file.put_line (fnd_file.LOG, l_no_tax_card_msg );
605: p_tax_card_msg := l_no_tax_card_msg ;

Line 602: l_no_tax_card_msg := hr_utility.get_message;

598: end if;
599:
600: hr_utility.set_message (801, 'PAY_376954_NO_TABLE_NOT_FOUND');
601: hr_utility.set_message_token (801, 'TABLE', l_table_name);
602: l_no_tax_card_msg := hr_utility.get_message;
603:
604: fnd_file.put_line (fnd_file.LOG, l_no_tax_card_msg );
605: p_tax_card_msg := l_no_tax_card_msg ;
606: RETURN l_normal_tax;

Line 656: hr_utility.set_location('Entered '||l_proc,5);

652: l_proc varchar2(72) ;
653: --
654: begin
655: --
656: hr_utility.set_location('Entered '||l_proc,5);
657: hr_utility.set_location('. Message Name: '||p_message_name,40);
658: fnd_message.set_name(p_product, p_message_name);
659: if p_token1 is not null then
660: /* Obtain token 1 name and value */

Line 657: hr_utility.set_location('. Message Name: '||p_message_name,40);

653: --
654: begin
655: --
656: hr_utility.set_location('Entered '||l_proc,5);
657: hr_utility.set_location('. Message Name: '||p_message_name,40);
658: fnd_message.set_name(p_product, p_message_name);
659: if p_token1 is not null then
660: /* Obtain token 1 name and value */
661: l_colon_position := instr(p_token1,':');

Line 665: hr_utility.set_location('. Token1: '||l_token_name||'. Value: '||l_token_value,50);

661: l_colon_position := instr(p_token1,':');
662: l_token_name := substr(p_token1,1,l_colon_position-1);
663: l_token_value := substr(p_token1,l_colon_position+1,length(p_token1));
664: fnd_message.set_token(l_token_name, l_token_value);
665: hr_utility.set_location('. Token1: '||l_token_name||'. Value: '||l_token_value,50);
666: end if;
667: if p_token2 is not null then
668: /* Obtain token 2 name and value */
669: l_colon_position := instr(p_token2,':');

Line 673: hr_utility.set_location('. Token2: '||l_token_name||'. Value: '||l_token_value,60);

669: l_colon_position := instr(p_token2,':');
670: l_token_name := substr(p_token2,1,l_colon_position-1);
671: l_token_value := substr(p_token2,l_colon_position+1,length(p_token2));
672: fnd_message.set_token(l_token_name, l_token_value);
673: hr_utility.set_location('. Token2: '||l_token_name||'. Value: '||l_token_value,60);
674: end if;
675: if p_token3 is not null then
676: /* Obtain token 3 name and value */
677: l_colon_position := instr(p_token3,':');

Line 681: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);

677: l_colon_position := instr(p_token3,':');
678: l_token_name := substr(p_token3,1,l_colon_position-1);
679: l_token_value := substr(p_token3,l_colon_position+1,length(p_token3));
680: fnd_message.set_token(l_token_name, l_token_value);
681: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);
682: end if;
683: l_message := substr(fnd_message.get,1,254);
684: hr_utility.set_location('leaving '||l_proc,100);
685: return l_message;

Line 684: hr_utility.set_location('leaving '||l_proc,100);

680: fnd_message.set_token(l_token_name, l_token_value);
681: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);
682: end if;
683: l_message := substr(fnd_message.get,1,254);
684: hr_utility.set_location('leaving '||l_proc,100);
685: return l_message;
686: end get_message;
687: ------------------------------------------------------------------------
688:

Line 861: hr_utility.set_message (801, 'PAY_376863_NO_TAX_CARD_ELE_ERR');

857: OPEN get_person_details (l_main_person_id ,p_date_earned ) ;
858: FETCH get_person_details into l_full_name , l_emp_num ;
859: CLOSE get_person_details;
860:
861: hr_utility.set_message (801, 'PAY_376863_NO_TAX_CARD_ELE_ERR');
862: hr_utility.set_message_token (801, 'EMP_NAME', l_full_name);
863: hr_utility.set_message_token (801, 'EMP_NUM', l_emp_num);
864:
865: l_no_tax_card_msg := hr_utility.get_message ;

Line 862: hr_utility.set_message_token (801, 'EMP_NAME', l_full_name);

858: FETCH get_person_details into l_full_name , l_emp_num ;
859: CLOSE get_person_details;
860:
861: hr_utility.set_message (801, 'PAY_376863_NO_TAX_CARD_ELE_ERR');
862: hr_utility.set_message_token (801, 'EMP_NAME', l_full_name);
863: hr_utility.set_message_token (801, 'EMP_NUM', l_emp_num);
864:
865: l_no_tax_card_msg := hr_utility.get_message ;
866:

Line 863: hr_utility.set_message_token (801, 'EMP_NUM', l_emp_num);

859: CLOSE get_person_details;
860:
861: hr_utility.set_message (801, 'PAY_376863_NO_TAX_CARD_ELE_ERR');
862: hr_utility.set_message_token (801, 'EMP_NAME', l_full_name);
863: hr_utility.set_message_token (801, 'EMP_NUM', l_emp_num);
864:
865: l_no_tax_card_msg := hr_utility.get_message ;
866:
867: -- Put the meassage in the log file

Line 865: l_no_tax_card_msg := hr_utility.get_message ;

861: hr_utility.set_message (801, 'PAY_376863_NO_TAX_CARD_ELE_ERR');
862: hr_utility.set_message_token (801, 'EMP_NAME', l_full_name);
863: hr_utility.set_message_token (801, 'EMP_NUM', l_emp_num);
864:
865: l_no_tax_card_msg := hr_utility.get_message ;
866:
867: -- Put the meassage in the log file
868: fnd_file.put_line (fnd_file.LOG, l_no_tax_card_msg );
869: