DBA Data[Home] [Help]

APPS.HR_PROCESS_CONTACT_SS dependencies on HR_TRANSACTION_API

Line 334: hr_transaction_api.get_transaction_step_info

330: --
331: -- For a given item key, there could be multiple transaction steps saved.
332: -- Get whether transaction data is written for contacts, phone, address.
333: --
334: hr_transaction_api.get_transaction_step_info
335: (p_item_type => p_item_type
336: ,p_item_key => p_item_key
337: ,p_activity_id => p_activity_id
338: ,p_transaction_step_id => l_trans_step_ids

Line 346: -- in hr_transaction_api.get_transaction_step_info.

342: --
343: -- ---------------------------------------------------------------------
344: -- NOTE:We need to adjust the index which referrences l_trans_step_ids
345: -- by 1 because that table was created with the index starts at 0
346: -- in hr_transaction_api.get_transaction_step_info.
347: -- ---------------------------------------------------------------------
348: --
349: ln_index := 0;
350: --

Line 360: l_contact_set := hr_transaction_api.get_varchar2_value

356: -- in each step.
357: -- if the step doesnot match, ignore the step and go to next step.
358: --
359: begin
360: l_contact_set := hr_transaction_api.get_varchar2_value
361: (p_transaction_step_id => l_trans_step_ids(ln_index)
362: ,p_name => 'P_CONTACT_SET');
363: exception
364: when others then

Line 380: l_contact_operation := hr_transaction_api.get_varchar2_value

376:
377: -- Save for later changes
378: begin
379: if l_contact_operation is null then
380: l_contact_operation := hr_transaction_api.get_varchar2_value
381: (p_transaction_step_id => l_trans_step_ids(ln_index)
382: ,p_name => 'P_CONTACT_OPERATION');
383: end if;
384: /* fix sansingh , at this juncture check if

Line 390: l_contact_operation := hr_transaction_api.get_varchar2_value

386: as P_PER_OR_CONTACT by PHONE NUMBER region
387: so obtain l_contact_operation from here
388: */
389: if l_contact_operation is null then
390: l_contact_operation := hr_transaction_api.get_varchar2_value
391: (p_transaction_step_id => l_trans_step_ids(ln_index)
392: ,p_name => 'P_PER_OR_CONTACT');
393: end if;
394: /*

Line 400: l_contact_operation := hr_transaction_api.get_varchar2_value

396: where the same values is saved as P_CONTACT_OR_PERSON ,
397: so obtain l_contact_operation from here
398: */
399: if l_contact_operation is null then
400: l_contact_operation := hr_transaction_api.get_varchar2_value
401: (p_transaction_step_id => l_trans_step_ids(ln_index)
402: ,p_name => 'P_CONTACT_OR_PERSON');
403: end if;
404: exception

Line 417: l_save_mode := hr_transaction_api.get_varchar2_value

413: begin
414: --
415: if l_save_mode is null then
416: --
417: l_save_mode := hr_transaction_api.get_varchar2_value
418: (p_transaction_step_id => l_trans_step_ids(ln_index)
419: ,p_name => 'P_SAVE_MODE');
420: --
421: end if;

Line 443: l_shared_Residence_Flag := hr_transaction_api.get_varchar2_value

439: -- Get Shared Residence Flag
440: begin
441: --
442: --
443: l_shared_Residence_Flag := hr_transaction_api.get_varchar2_value
444: (p_transaction_step_id => l_trans_step_ids(ln_index)
445: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG');
446: --
447: if l_shared_Residence_Flag is null then

Line 471: --l_id := hr_transaction_api.get_number_value

467: --
468: if (p_contact_changed = 'N') then
469: --
470: begin
471: --l_id := hr_transaction_api.get_number_value
472: l_id := get_number_value
473: (p_transaction_step_id => l_trans_step_ids(ln_index)
474: ,p_name => 'P_CONTACT_PERSON_ID');
475:

Line 486: l_first_name := hr_transaction_api.get_varchar2_value

482: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
483:
484: p_contact_relationship_id := to_char(l_id);
485: --
486: l_first_name := hr_transaction_api.get_varchar2_value
487: (p_transaction_step_id => l_trans_step_ids(ln_index)
488: ,p_name =>upper( 'p_first_name'));
489: --
490: l_last_name := hr_transaction_api.get_varchar2_value

Line 490: l_last_name := hr_transaction_api.get_varchar2_value

486: l_first_name := hr_transaction_api.get_varchar2_value
487: (p_transaction_step_id => l_trans_step_ids(ln_index)
488: ,p_name =>upper( 'p_first_name'));
489: --
490: l_last_name := hr_transaction_api.get_varchar2_value
491: (p_transaction_step_id => l_trans_step_ids(ln_index)
492: ,p_name =>upper( 'p_last_name'));
493: --
494: exception

Line 505: -- l_id := hr_transaction_api.get_number_value

501: --
502: if (p_phone_changed = 'N') then
503: --
504: begin
505: -- l_id := hr_transaction_api.get_number_value
506: l_id := get_number_value
507: (p_transaction_step_id => l_trans_step_ids(ln_index)
508: ,p_name => 'P_PHONE_ID');
509: --

Line 514: l_id := hr_transaction_api.get_number_value

510: p_phone_changed := 'Y';
511:
512: l_phone_step_id := l_trans_step_ids(ln_index);
513:
514: l_id := hr_transaction_api.get_number_value
515: (p_transaction_step_id => l_trans_step_ids(ln_index)
516: ,p_name => 'P_PERSON_ID');
517: --
518: p_parent_id := to_char(l_id);

Line 543: l_prmry_flag := hr_transaction_api.get_varchar2_value

539: begin
540: l_id := get_number_value
541: (p_transaction_step_id => l_trans_step_ids(ln_index)
542: ,p_name => 'P_ADDRESS_ID');
543: l_prmry_flag := hr_transaction_api.get_varchar2_value
544: (p_transaction_step_id => l_trans_step_ids(ln_index)
545: ,p_name => 'P_PRIMARY_FLAG');
546:
547: if (l_prmry_flag = 'Y') then

Line 553: l_addr_person_id := hr_transaction_api.get_number_value

549:
550: p_address_id := to_char(l_id);
551: l_address_step_id := l_trans_step_ids(ln_index);
552:
553: l_addr_person_id := hr_transaction_api.get_number_value
554: (p_transaction_step_id => l_trans_step_ids(ln_index)
555: ,p_name => 'P_PERSON_ID');
556: l_contact_person_id := l_addr_person_id;
557: end if;

Line 578: l_prmry_flag := hr_transaction_api.get_varchar2_value

574: l_id := get_number_value
575: (p_transaction_step_id => l_trans_step_ids(ln_index)
576: ,p_name => 'P_ADDRESS_ID');
577:
578: l_prmry_flag := hr_transaction_api.get_varchar2_value
579: (p_transaction_step_id => l_trans_step_ids(ln_index)
580: ,p_name => 'P_PRIMARY_FLAG');
581:
582: if (l_prmry_flag = 'N') then

Line 588: l_addr_person_id := hr_transaction_api.get_number_value

584: p_address_id := to_char(l_id);
585:
586: l_second_address_step_id := l_trans_step_ids(ln_index);
587:
588: l_addr_person_id := hr_transaction_api.get_number_value
589: (p_transaction_step_id => l_trans_step_ids(ln_index)
590: ,p_name => 'P_PERSON_ID');
591: l_contact_person_id := l_addr_person_id;
592: end if;

Line 757: hr_transaction_api.get_transaction_step_info

753: -- transaction. This is used for re-display the Update page when a user
754: -- clicks the Back button on the Review page to go back to the Update page
755: -- to make further changes or to correct errors.
756: -----------------------------------------------------------------------------
757: hr_transaction_api.get_transaction_step_info
758: (p_item_type => p_item_type
759: ,p_item_key => p_item_key
760: ,p_activity_id => p_activity_id
761: ,p_transaction_step_id => l_transaction_step_id

Line 938: hr_transaction_api.get_date_value

934:
935: BEGIN
936: --
937: p_effective_date:=
938: hr_transaction_api.get_date_value
939: (p_transaction_step_id => p_transaction_step_id
940: ,p_name => 'P_EFFECTIVE_DATE');
941: --
942: hr_utility.set_location('P_EFFECTIVE_DATE', 2222);

Line 947: hr_transaction_api.get_varchar2_value

943: P_ATTRIBUTE_UPDATE_MODE := 'update';
944: /*
945: -- 9999 delete it later if not required.
946: p_attribute_update_mode :=
947: hr_transaction_api.get_varchar2_value
948: (p_transaction_step_id => p_transaction_step_id
949: ,p_name => 'P_ATTRIBUTE_UPDATE_MODE');
950: hr_utility.set_location('P_ATTRIBUTE_UPDATE_MODE', 2222);
951: */

Line 954: hr_transaction_api.get_NUMBER_value

950: hr_utility.set_location('P_ATTRIBUTE_UPDATE_MODE', 2222);
951: */
952: --
953: P_CONTACT_RELATIONSHIP_ID :=
954: hr_transaction_api.get_NUMBER_value
955: (p_transaction_step_id => p_transaction_step_id
956: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
957: hr_utility.set_location('P_CONTACT_RELATIONSHIP_ID', 2222);
958: --

Line 960: hr_transaction_api.get_VARCHAR2_value

956: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
957: hr_utility.set_location('P_CONTACT_RELATIONSHIP_ID', 2222);
958: --
959: P_CONTACT_TYPE :=
960: hr_transaction_api.get_VARCHAR2_value
961: (p_transaction_step_id => p_transaction_step_id
962: ,p_name => 'P_CONTACT_TYPE');
963: hr_utility.set_location('P_CONTACT_TYPE', 2222);
964: --

Line 966: hr_transaction_api.get_VARCHAR2_value

962: ,p_name => 'P_CONTACT_TYPE');
963: hr_utility.set_location('P_CONTACT_TYPE', 2222);
964: --
965: P_COMMENTS :=
966: hr_transaction_api.get_VARCHAR2_value
967: (p_transaction_step_id => p_transaction_step_id
968: ,p_name => 'P_COMMENTS');
969: hr_utility.set_location('P_COMMENTS', 2222);
970: --

Line 972: hr_transaction_api.get_VARCHAR2_value

968: ,p_name => 'P_COMMENTS');
969: hr_utility.set_location('P_COMMENTS', 2222);
970: --
971: P_PRIMARY_CONTACT_FLAG :=
972: hr_transaction_api.get_VARCHAR2_value
973: (p_transaction_step_id => p_transaction_step_id
974: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
975: hr_utility.set_location('P_PRIMARY_CONTACT_FLAG', 2222);
976: --

Line 978: hr_transaction_api.get_VARCHAR2_value

974: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
975: hr_utility.set_location('P_PRIMARY_CONTACT_FLAG', 2222);
976: --
977: P_THIRD_PARTY_PAY_FLAG :=
978: hr_transaction_api.get_VARCHAR2_value
979: (p_transaction_step_id => p_transaction_step_id
980: ,p_name => 'P_THIRD_PARTY_PAY_FLAG');
981: hr_utility.set_location('P_THIRD_PARTY_PAY_FLAG', 2222);
982: --

Line 984: hr_transaction_api.get_varchar2_value

980: ,p_name => 'P_THIRD_PARTY_PAY_FLAG');
981: hr_utility.set_location('P_THIRD_PARTY_PAY_FLAG', 2222);
982: --
983: p_bondholder_flag :=
984: hr_transaction_api.get_varchar2_value
985: (p_transaction_step_id => p_transaction_step_id
986: ,p_name => 'P_BONDHOLDER_FLAG');
987: hr_utility.set_location('P_BONDHOLDER_FLAG', 2222);
988: --

Line 990: hr_transaction_api.get_date_value

986: ,p_name => 'P_BONDHOLDER_FLAG');
987: hr_utility.set_location('P_BONDHOLDER_FLAG', 2222);
988: --
989: p_date_start :=
990: hr_transaction_api.get_date_value
991: (p_transaction_step_id => p_transaction_step_id
992: ,p_name => 'P_DATE_START');
993: hr_utility.set_location('P_DATE_START', 2222);
994: --

Line 996: hr_transaction_api.get_number_value

992: ,p_name => 'P_DATE_START');
993: hr_utility.set_location('P_DATE_START', 2222);
994: --
995: p_start_life_reason_id :=
996: hr_transaction_api.get_number_value
997: (p_transaction_step_id => p_transaction_step_id
998: ,p_name => 'P_START_LIFE_REASON_ID');
999: hr_utility.set_location('P_START_LIFE_REASON_ID', 2222);
1000: --

Line 1002: hr_transaction_api.get_date_value

998: ,p_name => 'P_START_LIFE_REASON_ID');
999: hr_utility.set_location('P_START_LIFE_REASON_ID', 2222);
1000: --
1001: p_date_end :=
1002: hr_transaction_api.get_date_value
1003: (p_transaction_step_id => p_transaction_step_id
1004: ,p_name => 'P_DATE_END');
1005: hr_utility.set_location('P_DATE_END', 2222);
1006: --

Line 1008: hr_transaction_api.get_number_value

1004: ,p_name => 'P_DATE_END');
1005: hr_utility.set_location('P_DATE_END', 2222);
1006: --
1007: p_end_life_reason_id :=
1008: hr_transaction_api.get_number_value
1009: (p_transaction_step_id => p_transaction_step_id
1010: ,p_name => 'P_END_LIFE_REASON_ID');
1011: hr_utility.set_location('P_END_LIFE_REASON_ID', 2222);
1012: --

Line 1014: hr_transaction_api.get_varchar2_value

1010: ,p_name => 'P_END_LIFE_REASON_ID');
1011: hr_utility.set_location('P_END_LIFE_REASON_ID', 2222);
1012: --
1013: p_rltd_per_rsds_w_dsgntr_flag :=
1014: hr_transaction_api.get_varchar2_value
1015: (p_transaction_step_id => p_transaction_step_id
1016: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG');
1017: hr_utility.set_location('P_RLTD_PER_RSDS_W_DSGNTR_FLAG', 2222);
1018: --

Line 1020: hr_transaction_api.get_varchar2_value

1016: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG');
1017: hr_utility.set_location('P_RLTD_PER_RSDS_W_DSGNTR_FLAG', 2222);
1018: --
1019: p_personal_flag :=
1020: hr_transaction_api.get_varchar2_value
1021: (p_transaction_step_id => p_transaction_step_id
1022: ,p_name => 'P_PERSONAL_FLAG');
1023: hr_utility.set_location('P_PERSONAL_FLAG', 2222);
1024: --

Line 1026: hr_transaction_api.get_number_value

1022: ,p_name => 'P_PERSONAL_FLAG');
1023: hr_utility.set_location('P_PERSONAL_FLAG', 2222);
1024: --
1025: p_sequence_number :=
1026: hr_transaction_api.get_number_value
1027: (p_transaction_step_id => p_transaction_step_id
1028: ,p_name => 'P_SEQUENCE_NUMBER');
1029: hr_utility.set_location('P_SEQUENCE_NUMBER', 2222);
1030: --

Line 1032: hr_transaction_api.get_varchar2_value

1028: ,p_name => 'P_SEQUENCE_NUMBER');
1029: hr_utility.set_location('P_SEQUENCE_NUMBER', 2222);
1030: --
1031: p_dependent_flag :=
1032: hr_transaction_api.get_varchar2_value
1033: (p_transaction_step_id => p_transaction_step_id
1034: ,p_name => 'P_DEPENDENT_FLAG');
1035: hr_utility.set_location('P_DEPENDENT_FLAG', 2222);
1036: --

Line 1038: hr_transaction_api.get_varchar2_value

1034: ,p_name => 'P_DEPENDENT_FLAG');
1035: hr_utility.set_location('P_DEPENDENT_FLAG', 2222);
1036: --
1037: p_beneficiary_flag :=
1038: hr_transaction_api.get_varchar2_value
1039: (p_transaction_step_id => p_transaction_step_id
1040: ,p_name => 'P_BENEFICIARY_FLAG');
1041: hr_utility.set_location('P_BENEFICIARY_FLAG', 2222);
1042: --

Line 1044: hr_transaction_api.get_varchar2_value

1040: ,p_name => 'P_BENEFICIARY_FLAG');
1041: hr_utility.set_location('P_BENEFICIARY_FLAG', 2222);
1042: --
1043: p_cont_attribute_category :=
1044: hr_transaction_api.get_varchar2_value
1045: (p_transaction_step_id => p_transaction_step_id
1046: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY');
1047: hr_utility.set_location('P_CONT_ATTRIBUTE_CATEGORY', 2222);
1048: --

Line 1050: hr_transaction_api.get_varchar2_value

1046: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY');
1047: hr_utility.set_location('P_CONT_ATTRIBUTE_CATEGORY', 2222);
1048: --
1049: p_cont_attribute1 :=
1050: hr_transaction_api.get_varchar2_value
1051: (p_transaction_step_id => p_transaction_step_id
1052: ,p_name => 'P_CONT_ATTRIBUTE1');
1053: hr_utility.set_location('P_CONT_ATTRIBUTE1', 2222);
1054: --

Line 1056: hr_transaction_api.get_varchar2_value

1052: ,p_name => 'P_CONT_ATTRIBUTE1');
1053: hr_utility.set_location('P_CONT_ATTRIBUTE1', 2222);
1054: --
1055: p_cont_attribute2 :=
1056: hr_transaction_api.get_varchar2_value
1057: (p_transaction_step_id => p_transaction_step_id
1058: ,p_name => 'P_CONT_ATTRIBUTE2');
1059: hr_utility.set_location('P_CONT_ATTRIBUTE2', 2222);
1060: --

Line 1062: hr_transaction_api.get_varchar2_value

1058: ,p_name => 'P_CONT_ATTRIBUTE2');
1059: hr_utility.set_location('P_CONT_ATTRIBUTE2', 2222);
1060: --
1061: p_cont_attribute3 :=
1062: hr_transaction_api.get_varchar2_value
1063: (p_transaction_step_id => p_transaction_step_id
1064: ,p_name => 'P_CONT_ATTRIBUTE3');
1065: hr_utility.set_location('P_CONT_ATTRIBUTE3', 2222);
1066: --

Line 1068: hr_transaction_api.get_varchar2_value

1064: ,p_name => 'P_CONT_ATTRIBUTE3');
1065: hr_utility.set_location('P_CONT_ATTRIBUTE3', 2222);
1066: --
1067: p_cont_attribute4 :=
1068: hr_transaction_api.get_varchar2_value
1069: (p_transaction_step_id => p_transaction_step_id
1070: ,p_name => 'P_CONT_ATTRIBUTE4');
1071: hr_utility.set_location('P_CONT_ATTRIBUTE4', 2222);
1072: --

Line 1074: hr_transaction_api.get_varchar2_value

1070: ,p_name => 'P_CONT_ATTRIBUTE4');
1071: hr_utility.set_location('P_CONT_ATTRIBUTE4', 2222);
1072: --
1073: p_cont_attribute5 :=
1074: hr_transaction_api.get_varchar2_value
1075: (p_transaction_step_id => p_transaction_step_id
1076: ,p_name => 'P_CONT_ATTRIBUTE5');
1077: hr_utility.set_location('P_CONT_ATTRIBUTE5', 2222);
1078: --

Line 1080: hr_transaction_api.get_varchar2_value

1076: ,p_name => 'P_CONT_ATTRIBUTE5');
1077: hr_utility.set_location('P_CONT_ATTRIBUTE5', 2222);
1078: --
1079: p_cont_attribute6 :=
1080: hr_transaction_api.get_varchar2_value
1081: (p_transaction_step_id => p_transaction_step_id
1082: ,p_name => 'P_CONT_ATTRIBUTE6');
1083: hr_utility.set_location('P_CONT_ATTRIBUTE6', 2222);
1084: --

Line 1086: hr_transaction_api.get_varchar2_value

1082: ,p_name => 'P_CONT_ATTRIBUTE6');
1083: hr_utility.set_location('P_CONT_ATTRIBUTE6', 2222);
1084: --
1085: p_cont_attribute7 :=
1086: hr_transaction_api.get_varchar2_value
1087: (p_transaction_step_id => p_transaction_step_id
1088: ,p_name => 'P_CONT_ATTRIBUTE7');
1089: hr_utility.set_location('P_CONT_ATTRIBUTE7', 2222);
1090: --

Line 1092: hr_transaction_api.get_varchar2_value

1088: ,p_name => 'P_CONT_ATTRIBUTE7');
1089: hr_utility.set_location('P_CONT_ATTRIBUTE7', 2222);
1090: --
1091: p_cont_attribute8 :=
1092: hr_transaction_api.get_varchar2_value
1093: (p_transaction_step_id => p_transaction_step_id
1094: ,p_name => 'P_CONT_ATTRIBUTE8');
1095: hr_utility.set_location('P_CONT_ATTRIBUTE8', 2222);
1096: --

Line 1098: hr_transaction_api.get_varchar2_value

1094: ,p_name => 'P_CONT_ATTRIBUTE8');
1095: hr_utility.set_location('P_CONT_ATTRIBUTE8', 2222);
1096: --
1097: p_cont_attribute9 :=
1098: hr_transaction_api.get_varchar2_value
1099: (p_transaction_step_id => p_transaction_step_id
1100: ,p_name => 'P_CONT_ATTRIBUTE9');
1101: hr_utility.set_location('P_CONT_ATTRIBUTE9', 2222);
1102: --

Line 1104: hr_transaction_api.get_varchar2_value

1100: ,p_name => 'P_CONT_ATTRIBUTE9');
1101: hr_utility.set_location('P_CONT_ATTRIBUTE9', 2222);
1102: --
1103: p_cont_attribute10 :=
1104: hr_transaction_api.get_varchar2_value
1105: (p_transaction_step_id => p_transaction_step_id
1106: ,p_name => 'P_CONT_ATTRIBUTE10');
1107: hr_utility.set_location('P_CONT_ATTRIBUTE10', 2222);
1108: --

Line 1110: hr_transaction_api.get_varchar2_value

1106: ,p_name => 'P_CONT_ATTRIBUTE10');
1107: hr_utility.set_location('P_CONT_ATTRIBUTE10', 2222);
1108: --
1109: p_cont_attribute11 :=
1110: hr_transaction_api.get_varchar2_value
1111: (p_transaction_step_id => p_transaction_step_id
1112: ,p_name => 'P_CONT_ATTRIBUTE11');
1113: hr_utility.set_location('P_CONT_ATTRIBUTE11', 2222);
1114: --

Line 1116: hr_transaction_api.get_varchar2_value

1112: ,p_name => 'P_CONT_ATTRIBUTE11');
1113: hr_utility.set_location('P_CONT_ATTRIBUTE11', 2222);
1114: --
1115: p_cont_attribute12 :=
1116: hr_transaction_api.get_varchar2_value
1117: (p_transaction_step_id => p_transaction_step_id
1118: ,p_name => 'P_CONT_ATTRIBUTE12');
1119: hr_utility.set_location('P_CONT_ATTRIBUTE12', 2222);
1120: --

Line 1122: hr_transaction_api.get_varchar2_value

1118: ,p_name => 'P_CONT_ATTRIBUTE12');
1119: hr_utility.set_location('P_CONT_ATTRIBUTE12', 2222);
1120: --
1121: p_cont_attribute13 :=
1122: hr_transaction_api.get_varchar2_value
1123: (p_transaction_step_id => p_transaction_step_id
1124: ,p_name => 'P_CONT_ATTRIBUTE13');
1125: hr_utility.set_location('P_CONT_ATTRIBUTE13', 2222);
1126: --

Line 1128: hr_transaction_api.get_varchar2_value

1124: ,p_name => 'P_CONT_ATTRIBUTE13');
1125: hr_utility.set_location('P_CONT_ATTRIBUTE13', 2222);
1126: --
1127: p_cont_attribute14 :=
1128: hr_transaction_api.get_varchar2_value
1129: (p_transaction_step_id => p_transaction_step_id
1130: ,p_name => 'P_CONT_ATTRIBUTE14');
1131: hr_utility.set_location('P_CONT_ATTRIBUTE14', 2222);
1132: --

Line 1134: hr_transaction_api.get_varchar2_value

1130: ,p_name => 'P_CONT_ATTRIBUTE14');
1131: hr_utility.set_location('P_CONT_ATTRIBUTE14', 2222);
1132: --
1133: p_cont_attribute15 :=
1134: hr_transaction_api.get_varchar2_value
1135: (p_transaction_step_id => p_transaction_step_id
1136: ,p_name => 'P_CONT_ATTRIBUTE15');
1137: hr_utility.set_location('P_CONT_ATTRIBUTE15', 2222);
1138: --

Line 1140: hr_transaction_api.get_varchar2_value

1136: ,p_name => 'P_CONT_ATTRIBUTE15');
1137: hr_utility.set_location('P_CONT_ATTRIBUTE15', 2222);
1138: --
1139: p_cont_attribute16 :=
1140: hr_transaction_api.get_varchar2_value
1141: (p_transaction_step_id => p_transaction_step_id
1142: ,p_name => 'P_CONT_ATTRIBUTE16');
1143: hr_utility.set_location('P_CONT_ATTRIBUTE16', 2222);
1144: --

Line 1146: hr_transaction_api.get_varchar2_value

1142: ,p_name => 'P_CONT_ATTRIBUTE16');
1143: hr_utility.set_location('P_CONT_ATTRIBUTE16', 2222);
1144: --
1145: p_cont_attribute17 :=
1146: hr_transaction_api.get_varchar2_value
1147: (p_transaction_step_id => p_transaction_step_id
1148: ,p_name => 'P_CONT_ATTRIBUTE17');
1149: hr_utility.set_location('P_CONT_ATTRIBUTE17', 2222);
1150: --

Line 1152: hr_transaction_api.get_varchar2_value

1148: ,p_name => 'P_CONT_ATTRIBUTE17');
1149: hr_utility.set_location('P_CONT_ATTRIBUTE17', 2222);
1150: --
1151: p_cont_attribute18 :=
1152: hr_transaction_api.get_varchar2_value
1153: (p_transaction_step_id => p_transaction_step_id
1154: ,p_name => 'P_CONT_ATTRIBUTE18');
1155: hr_utility.set_location('P_CONT_ATTRIBUTE18', 2222);
1156: --

Line 1158: hr_transaction_api.get_varchar2_value

1154: ,p_name => 'P_CONT_ATTRIBUTE18');
1155: hr_utility.set_location('P_CONT_ATTRIBUTE18', 2222);
1156: --
1157: p_cont_attribute19 :=
1158: hr_transaction_api.get_varchar2_value
1159: (p_transaction_step_id => p_transaction_step_id
1160: ,p_name => 'P_CONT_ATTRIBUTE19');
1161: hr_utility.set_location('P_CONT_ATTRIBUTE19', 2222);
1162: --

Line 1164: hr_transaction_api.get_varchar2_value

1160: ,p_name => 'P_CONT_ATTRIBUTE19');
1161: hr_utility.set_location('P_CONT_ATTRIBUTE19', 2222);
1162: --
1163: p_cont_attribute20 :=
1164: hr_transaction_api.get_varchar2_value
1165: (p_transaction_step_id => p_transaction_step_id
1166: ,p_name => 'P_CONT_ATTRIBUTE20');
1167: hr_utility.set_location('p_cont_attribute20', 2222);
1168: --

Line 1170: hr_transaction_api.get_number_value

1166: ,p_name => 'P_CONT_ATTRIBUTE20');
1167: hr_utility.set_location('p_cont_attribute20', 2222);
1168: --
1169: p_object_version_number :=
1170: hr_transaction_api.get_number_value
1171: (p_transaction_step_id => p_transaction_step_id
1172: ,p_name => 'P_OBJECT_VERSION_NUMBER');
1173: hr_utility.set_location('p_object_version_number', 2222);
1174: --

Line 1176: hr_transaction_api.get_varchar2_value

1172: ,p_name => 'P_OBJECT_VERSION_NUMBER');
1173: hr_utility.set_location('p_object_version_number', 2222);
1174: --
1175: p_review_proc_call :=
1176: hr_transaction_api.get_varchar2_value
1177: (p_transaction_step_id => p_transaction_step_id
1178: ,p_name => 'P_REVIEW_PROC_CALL');
1179: hr_utility.set_location('P_REVIEW_PROC_CALL', 2222);
1180: --

Line 1183: hr_transaction_api.get_VARCHAR2_value

1179: hr_utility.set_location('P_REVIEW_PROC_CALL', 2222);
1180: --
1181: --
1182: P_CONT_INFORMATION_CATEGORY :=
1183: hr_transaction_api.get_VARCHAR2_value
1184: (p_transaction_step_id => p_transaction_step_id
1185: ,p_name => 'P_CONT_INFORMATION_CATEGORY');
1186: --
1187: P_CONT_INFORMATION1 :=

Line 1188: hr_transaction_api.get_VARCHAR2_value

1184: (p_transaction_step_id => p_transaction_step_id
1185: ,p_name => 'P_CONT_INFORMATION_CATEGORY');
1186: --
1187: P_CONT_INFORMATION1 :=
1188: hr_transaction_api.get_VARCHAR2_value
1189: (p_transaction_step_id => p_transaction_step_id
1190: ,p_name => 'P_CONT_INFORMATION1');
1191: --
1192: P_CONT_INFORMATION2 :=

Line 1193: hr_transaction_api.get_VARCHAR2_value

1189: (p_transaction_step_id => p_transaction_step_id
1190: ,p_name => 'P_CONT_INFORMATION1');
1191: --
1192: P_CONT_INFORMATION2 :=
1193: hr_transaction_api.get_VARCHAR2_value
1194: (p_transaction_step_id => p_transaction_step_id
1195: ,p_name => 'P_CONT_INFORMATION2');
1196: --
1197: P_CONT_INFORMATION3 :=

Line 1198: hr_transaction_api.get_VARCHAR2_value

1194: (p_transaction_step_id => p_transaction_step_id
1195: ,p_name => 'P_CONT_INFORMATION2');
1196: --
1197: P_CONT_INFORMATION3 :=
1198: hr_transaction_api.get_VARCHAR2_value
1199: (p_transaction_step_id => p_transaction_step_id
1200: ,p_name => 'P_CONT_INFORMATION3');
1201: --
1202: P_CONT_INFORMATION4 :=

Line 1203: hr_transaction_api.get_VARCHAR2_value

1199: (p_transaction_step_id => p_transaction_step_id
1200: ,p_name => 'P_CONT_INFORMATION3');
1201: --
1202: P_CONT_INFORMATION4 :=
1203: hr_transaction_api.get_VARCHAR2_value
1204: (p_transaction_step_id => p_transaction_step_id
1205: ,p_name => 'P_CONT_INFORMATION4');
1206: --
1207: P_CONT_INFORMATION5 :=

Line 1208: hr_transaction_api.get_VARCHAR2_value

1204: (p_transaction_step_id => p_transaction_step_id
1205: ,p_name => 'P_CONT_INFORMATION4');
1206: --
1207: P_CONT_INFORMATION5 :=
1208: hr_transaction_api.get_VARCHAR2_value
1209: (p_transaction_step_id => p_transaction_step_id
1210: ,p_name => 'P_CONT_INFORMATION5');
1211: --
1212: P_CONT_INFORMATION6 :=

Line 1213: hr_transaction_api.get_VARCHAR2_value

1209: (p_transaction_step_id => p_transaction_step_id
1210: ,p_name => 'P_CONT_INFORMATION5');
1211: --
1212: P_CONT_INFORMATION6 :=
1213: hr_transaction_api.get_VARCHAR2_value
1214: (p_transaction_step_id => p_transaction_step_id
1215: ,p_name => 'P_CONT_INFORMATION6');
1216: --
1217: P_CONT_INFORMATION7 :=

Line 1218: hr_transaction_api.get_VARCHAR2_value

1214: (p_transaction_step_id => p_transaction_step_id
1215: ,p_name => 'P_CONT_INFORMATION6');
1216: --
1217: P_CONT_INFORMATION7 :=
1218: hr_transaction_api.get_VARCHAR2_value
1219: (p_transaction_step_id => p_transaction_step_id
1220: ,p_name => 'P_CONT_INFORMATION7');
1221: --
1222: P_CONT_INFORMATION8 :=

Line 1223: hr_transaction_api.get_VARCHAR2_value

1219: (p_transaction_step_id => p_transaction_step_id
1220: ,p_name => 'P_CONT_INFORMATION7');
1221: --
1222: P_CONT_INFORMATION8 :=
1223: hr_transaction_api.get_VARCHAR2_value
1224: (p_transaction_step_id => p_transaction_step_id
1225: ,p_name => 'P_CONT_INFORMATION8');
1226: --
1227: P_CONT_INFORMATION9 :=

Line 1228: hr_transaction_api.get_VARCHAR2_value

1224: (p_transaction_step_id => p_transaction_step_id
1225: ,p_name => 'P_CONT_INFORMATION8');
1226: --
1227: P_CONT_INFORMATION9 :=
1228: hr_transaction_api.get_VARCHAR2_value
1229: (p_transaction_step_id => p_transaction_step_id
1230: ,p_name => 'P_CONT_INFORMATION9');
1231: --
1232: P_CONT_INFORMATION10 :=

Line 1233: hr_transaction_api.get_VARCHAR2_value

1229: (p_transaction_step_id => p_transaction_step_id
1230: ,p_name => 'P_CONT_INFORMATION9');
1231: --
1232: P_CONT_INFORMATION10 :=
1233: hr_transaction_api.get_VARCHAR2_value
1234: (p_transaction_step_id => p_transaction_step_id
1235: ,p_name => 'P_CONT_INFORMATION10');
1236: --
1237: P_CONT_INFORMATION11 :=

Line 1238: hr_transaction_api.get_VARCHAR2_value

1234: (p_transaction_step_id => p_transaction_step_id
1235: ,p_name => 'P_CONT_INFORMATION10');
1236: --
1237: P_CONT_INFORMATION11 :=
1238: hr_transaction_api.get_VARCHAR2_value
1239: (p_transaction_step_id => p_transaction_step_id
1240: ,p_name => 'P_CONT_INFORMATION11');
1241: --
1242: P_CONT_INFORMATION12 :=

Line 1243: hr_transaction_api.get_VARCHAR2_value

1239: (p_transaction_step_id => p_transaction_step_id
1240: ,p_name => 'P_CONT_INFORMATION11');
1241: --
1242: P_CONT_INFORMATION12 :=
1243: hr_transaction_api.get_VARCHAR2_value
1244: (p_transaction_step_id => p_transaction_step_id
1245: ,p_name => 'P_CONT_INFORMATION12');
1246: --
1247: P_CONT_INFORMATION13 :=

Line 1248: hr_transaction_api.get_VARCHAR2_value

1244: (p_transaction_step_id => p_transaction_step_id
1245: ,p_name => 'P_CONT_INFORMATION12');
1246: --
1247: P_CONT_INFORMATION13 :=
1248: hr_transaction_api.get_VARCHAR2_value
1249: (p_transaction_step_id => p_transaction_step_id
1250: ,p_name => 'P_CONT_INFORMATION13');
1251: --
1252: P_CONT_INFORMATION14 :=

Line 1253: hr_transaction_api.get_VARCHAR2_value

1249: (p_transaction_step_id => p_transaction_step_id
1250: ,p_name => 'P_CONT_INFORMATION13');
1251: --
1252: P_CONT_INFORMATION14 :=
1253: hr_transaction_api.get_VARCHAR2_value
1254: (p_transaction_step_id => p_transaction_step_id
1255: ,p_name => 'P_CONT_INFORMATION14');
1256: --
1257: P_CONT_INFORMATION15 :=

Line 1258: hr_transaction_api.get_VARCHAR2_value

1254: (p_transaction_step_id => p_transaction_step_id
1255: ,p_name => 'P_CONT_INFORMATION14');
1256: --
1257: P_CONT_INFORMATION15 :=
1258: hr_transaction_api.get_VARCHAR2_value
1259: (p_transaction_step_id => p_transaction_step_id
1260: ,p_name => 'P_CONT_INFORMATION15');
1261: --
1262: P_CONT_INFORMATION16 :=

Line 1263: hr_transaction_api.get_VARCHAR2_value

1259: (p_transaction_step_id => p_transaction_step_id
1260: ,p_name => 'P_CONT_INFORMATION15');
1261: --
1262: P_CONT_INFORMATION16 :=
1263: hr_transaction_api.get_VARCHAR2_value
1264: (p_transaction_step_id => p_transaction_step_id
1265: ,p_name => 'P_CONT_INFORMATION16');
1266: --
1267: P_CONT_INFORMATION17 :=

Line 1268: hr_transaction_api.get_VARCHAR2_value

1264: (p_transaction_step_id => p_transaction_step_id
1265: ,p_name => 'P_CONT_INFORMATION16');
1266: --
1267: P_CONT_INFORMATION17 :=
1268: hr_transaction_api.get_VARCHAR2_value
1269: (p_transaction_step_id => p_transaction_step_id
1270: ,p_name => 'P_CONT_INFORMATION17');
1271: --
1272: P_CONT_INFORMATION18 :=

Line 1273: hr_transaction_api.get_VARCHAR2_value

1269: (p_transaction_step_id => p_transaction_step_id
1270: ,p_name => 'P_CONT_INFORMATION17');
1271: --
1272: P_CONT_INFORMATION18 :=
1273: hr_transaction_api.get_VARCHAR2_value
1274: (p_transaction_step_id => p_transaction_step_id
1275: ,p_name => 'P_CONT_INFORMATION18');
1276: --
1277: P_CONT_INFORMATION19 :=

Line 1278: hr_transaction_api.get_VARCHAR2_value

1274: (p_transaction_step_id => p_transaction_step_id
1275: ,p_name => 'P_CONT_INFORMATION18');
1276: --
1277: P_CONT_INFORMATION19 :=
1278: hr_transaction_api.get_VARCHAR2_value
1279: (p_transaction_step_id => p_transaction_step_id
1280: ,p_name => 'P_CONT_INFORMATION19');
1281: --
1282: P_CONT_INFORMATION20 :=

Line 1283: hr_transaction_api.get_VARCHAR2_value

1279: (p_transaction_step_id => p_transaction_step_id
1280: ,p_name => 'P_CONT_INFORMATION19');
1281: --
1282: P_CONT_INFORMATION20 :=
1283: hr_transaction_api.get_VARCHAR2_value
1284: (p_transaction_step_id => p_transaction_step_id
1285: ,p_name => 'P_CONT_INFORMATION20');
1286: --
1287: hr_utility.set_location('Exiting:'||l_proc, 15);

Line 2413: hr_transaction_api.create_transaction_step

2409: END IF;
2410: --
2411: -- Create a transaction step
2412: --
2413: hr_transaction_api.create_transaction_step
2414: (p_validate => false
2415: ,p_creator_person_id => nvl(p_login_person_id, p_person_id)
2416: ,p_transaction_id => l_transaction_id
2417: ,p_api_name => g_package || '.PROCESS_API'

Line 5015: hr_transaction_api.get_transaction_step_info

5011: -- clicks the Back button on the Review page to go back to the Update page
5012: -- to make further changes or to correct errors.
5013: -----------------------------------------------------------------------------
5014: hr_utility.set_location('Entering:'||l_proc, 5);
5015: hr_transaction_api.get_transaction_step_info
5016: (p_item_type => p_item_type
5017: ,p_item_key => p_item_key
5018: ,p_activity_id => p_activity_id
5019: ,p_transaction_step_id => l_transaction_step_id

Line 5456: hr_transaction_api.get_number_value

5452: hr_utility.set_location('Entering:'||l_proc, 5);
5453:
5454: hr_utility.set_location('Setting the attributes:'||l_proc,10 );
5455: p_cont_object_version_number :=
5456: hr_transaction_api.get_number_value
5457: (p_transaction_step_id => p_transaction_step_id
5458: ,p_name =>upper( 'p_cont_object_version_number'));
5459:
5460: p_contact_relationship_id :=

Line 5461: hr_transaction_api.get_number_value

5457: (p_transaction_step_id => p_transaction_step_id
5458: ,p_name =>upper( 'p_cont_object_version_number'));
5459:
5460: p_contact_relationship_id :=
5461: hr_transaction_api.get_number_value
5462: (p_transaction_step_id => p_transaction_step_id
5463: ,p_name =>upper( 'p_contact_relationship_id'));
5464:
5465: p_contact_operation :=

Line 5466: hr_transaction_api.get_varchar2_value

5462: (p_transaction_step_id => p_transaction_step_id
5463: ,p_name =>upper( 'p_contact_relationship_id'));
5464:
5465: p_contact_operation :=
5466: hr_transaction_api.get_varchar2_value
5467: (p_transaction_step_id => p_transaction_step_id
5468: ,p_name =>upper( 'p_contact_operation'));
5469:
5470: p_emrg_cont_flag :=

Line 5471: hr_transaction_api.get_varchar2_value

5467: (p_transaction_step_id => p_transaction_step_id
5468: ,p_name =>upper( 'p_contact_operation'));
5469:
5470: p_emrg_cont_flag :=
5471: hr_transaction_api.get_varchar2_value
5472: (p_transaction_step_id => p_transaction_step_id
5473: ,p_name =>upper( 'p_emrg_cont_flag'));
5474:
5475: p_dpdnt_bnf_flag :=

Line 5476: hr_transaction_api.get_varchar2_value

5472: (p_transaction_step_id => p_transaction_step_id
5473: ,p_name =>upper( 'p_emrg_cont_flag'));
5474:
5475: p_dpdnt_bnf_flag :=
5476: hr_transaction_api.get_varchar2_value
5477: (p_transaction_step_id => p_transaction_step_id
5478: ,p_name =>upper( 'p_dpdnt_bnf_flag'));
5479:
5480: --bug# 2315163

Line 5482: hr_transaction_api.get_varchar2_value

5478: ,p_name =>upper( 'p_dpdnt_bnf_flag'));
5479:
5480: --bug# 2315163
5481: p_is_emrg_cont :=
5482: hr_transaction_api.get_varchar2_value
5483: (p_transaction_step_id => p_transaction_step_id
5484: ,p_name =>upper( 'p_is_emergency_contact'));
5485:
5486: p_is_dpdnt_bnf :=

Line 5487: hr_transaction_api.get_varchar2_value

5483: (p_transaction_step_id => p_transaction_step_id
5484: ,p_name =>upper( 'p_is_emergency_contact'));
5485:
5486: p_is_dpdnt_bnf :=
5487: hr_transaction_api.get_varchar2_value
5488: (p_transaction_step_id => p_transaction_step_id
5489: ,p_name =>upper( 'p_is_dpdnt_bnf'));
5490:
5491:

Line 5495: hr_transaction_api.get_date_value

5491:
5492: -- Bug 1914891
5493: --
5494: p_date_of_death :=
5495: hr_transaction_api.get_date_value
5496: (p_transaction_step_id => p_transaction_step_id
5497: ,p_name =>upper( 'p_date_of_death'));
5498: --
5499: -- ikasire

Line 5502: hr_transaction_api.get_date_value

5498: --
5499: -- ikasire
5500: --
5501: p_dpdnt_adoption_date :=
5502: hr_transaction_api.get_date_value
5503: (p_transaction_step_id => p_transaction_step_id
5504: ,p_name =>upper( 'p_dpdnt_adoption_date'));
5505: --
5506: p_start_date :=

Line 5507: hr_transaction_api.get_date_value

5503: (p_transaction_step_id => p_transaction_step_id
5504: ,p_name =>upper( 'p_dpdnt_adoption_date'));
5505: --
5506: p_start_date :=
5507: hr_transaction_api.get_date_value
5508: (p_transaction_step_id => p_transaction_step_id
5509: ,p_name =>upper( 'p_start_date'));
5510: --
5511: p_business_group_id :=

Line 5512: hr_transaction_api.get_number_value

5508: (p_transaction_step_id => p_transaction_step_id
5509: ,p_name =>upper( 'p_start_date'));
5510: --
5511: p_business_group_id :=
5512: hr_transaction_api.get_number_value
5513: (p_transaction_step_id => p_transaction_step_id
5514: ,p_name =>upper( 'p_business_group_id'));
5515: --
5516: p_person_id :=

Line 5517: hr_transaction_api.get_number_value

5513: (p_transaction_step_id => p_transaction_step_id
5514: ,p_name =>upper( 'p_business_group_id'));
5515: --
5516: p_person_id :=
5517: hr_transaction_api.get_number_value
5518: (p_transaction_step_id => p_transaction_step_id
5519: ,p_name =>upper( 'p_person_id'));
5520: --
5521: p_contact_person_id :=

Line 5522: hr_transaction_api.get_number_value

5518: (p_transaction_step_id => p_transaction_step_id
5519: ,p_name =>upper( 'p_person_id'));
5520: --
5521: p_contact_person_id :=
5522: hr_transaction_api.get_number_value
5523: (p_transaction_step_id => p_transaction_step_id
5524: ,p_name =>upper( 'p_contact_person_id'));
5525: --
5526: p_contact_type :=

Line 5527: hr_transaction_api.get_varchar2_value

5523: (p_transaction_step_id => p_transaction_step_id
5524: ,p_name =>upper( 'p_contact_person_id'));
5525: --
5526: p_contact_type :=
5527: hr_transaction_api.get_varchar2_value
5528: (p_transaction_step_id => p_transaction_step_id
5529: ,p_name =>upper( 'p_contact_type'));
5530: --
5531: -- Bug 1914891

Line 5536: hr_transaction_api.get_varchar2_value

5532: --
5533: p_contact_type_meaning := HR_GENERAL.DECODE_LOOKUP('CONTACT',p_contact_type);
5534: --
5535: p_ctr_comments :=
5536: hr_transaction_api.get_varchar2_value
5537: (p_transaction_step_id => p_transaction_step_id
5538: ,p_name =>upper( 'p_ctr_comments'));
5539: --
5540: p_primary_contact_flag :=

Line 5541: hr_transaction_api.get_varchar2_value

5537: (p_transaction_step_id => p_transaction_step_id
5538: ,p_name =>upper( 'p_ctr_comments'));
5539: --
5540: p_primary_contact_flag :=
5541: hr_transaction_api.get_varchar2_value
5542: (p_transaction_step_id => p_transaction_step_id
5543: ,p_name =>upper( 'p_primary_contact_flag'));
5544: --
5545: p_date_start :=

Line 5546: hr_transaction_api.get_date_value

5542: (p_transaction_step_id => p_transaction_step_id
5543: ,p_name =>upper( 'p_primary_contact_flag'));
5544: --
5545: p_date_start :=
5546: hr_transaction_api.get_date_value
5547: (p_transaction_step_id => p_transaction_step_id
5548: ,p_name =>upper( 'p_date_start'));
5549: --
5550: p_start_life_reason_id :=

Line 5551: hr_transaction_api.get_number_value

5547: (p_transaction_step_id => p_transaction_step_id
5548: ,p_name =>upper( 'p_date_start'));
5549: --
5550: p_start_life_reason_id :=
5551: hr_transaction_api.get_number_value
5552: (p_transaction_step_id => p_transaction_step_id
5553: ,p_name =>upper( 'p_start_life_reason_id'));
5554: --
5555: p_date_end :=

Line 5556: hr_transaction_api.get_date_value

5552: (p_transaction_step_id => p_transaction_step_id
5553: ,p_name =>upper( 'p_start_life_reason_id'));
5554: --
5555: p_date_end :=
5556: hr_transaction_api.get_date_value
5557: (p_transaction_step_id => p_transaction_step_id
5558: ,p_name =>upper( 'p_date_end'));
5559: --
5560: p_end_life_reason_id :=

Line 5561: hr_transaction_api.get_number_value

5557: (p_transaction_step_id => p_transaction_step_id
5558: ,p_name =>upper( 'p_date_end'));
5559: --
5560: p_end_life_reason_id :=
5561: hr_transaction_api.get_number_value
5562: (p_transaction_step_id => p_transaction_step_id
5563: ,p_name =>upper( 'p_end_life_reason_id'));
5564: --
5565: p_rltd_per_rsds_w_dsgntr_flag :=

Line 5566: hr_transaction_api.get_varchar2_value

5562: (p_transaction_step_id => p_transaction_step_id
5563: ,p_name =>upper( 'p_end_life_reason_id'));
5564: --
5565: p_rltd_per_rsds_w_dsgntr_flag :=
5566: hr_transaction_api.get_varchar2_value
5567: (p_transaction_step_id => p_transaction_step_id
5568: ,p_name =>upper( 'p_rltd_per_rsds_w_dsgntr_flag'));
5569: --
5570: p_personal_flag :=

Line 5571: hr_transaction_api.get_varchar2_value

5567: (p_transaction_step_id => p_transaction_step_id
5568: ,p_name =>upper( 'p_rltd_per_rsds_w_dsgntr_flag'));
5569: --
5570: p_personal_flag :=
5571: hr_transaction_api.get_varchar2_value
5572: (p_transaction_step_id => p_transaction_step_id
5573: ,p_name =>upper( 'p_personal_flag'));
5574: --
5575: p_sequence_number :=

Line 5576: hr_transaction_api.get_number_value

5572: (p_transaction_step_id => p_transaction_step_id
5573: ,p_name =>upper( 'p_personal_flag'));
5574: --
5575: p_sequence_number :=
5576: hr_transaction_api.get_number_value
5577: (p_transaction_step_id => p_transaction_step_id
5578: ,p_name =>upper( 'p_sequence_number'));
5579: --
5580: p_cont_attribute_category :=

Line 5581: hr_transaction_api.get_varchar2_value

5577: (p_transaction_step_id => p_transaction_step_id
5578: ,p_name =>upper( 'p_sequence_number'));
5579: --
5580: p_cont_attribute_category :=
5581: hr_transaction_api.get_varchar2_value
5582: (p_transaction_step_id => p_transaction_step_id
5583: ,p_name =>upper( 'p_cont_attribute_category'));
5584: --
5585: p_cont_attribute1 :=

Line 5586: hr_transaction_api.get_varchar2_value

5582: (p_transaction_step_id => p_transaction_step_id
5583: ,p_name =>upper( 'p_cont_attribute_category'));
5584: --
5585: p_cont_attribute1 :=
5586: hr_transaction_api.get_varchar2_value
5587: (p_transaction_step_id => p_transaction_step_id
5588: ,p_name =>upper( 'p_cont_attribute1'));
5589: --
5590: p_cont_attribute2 :=

Line 5591: hr_transaction_api.get_varchar2_value

5587: (p_transaction_step_id => p_transaction_step_id
5588: ,p_name =>upper( 'p_cont_attribute1'));
5589: --
5590: p_cont_attribute2 :=
5591: hr_transaction_api.get_varchar2_value
5592: (p_transaction_step_id => p_transaction_step_id
5593: ,p_name =>upper( 'p_cont_attribute2'));
5594: --
5595: p_cont_attribute3 :=

Line 5596: hr_transaction_api.get_varchar2_value

5592: (p_transaction_step_id => p_transaction_step_id
5593: ,p_name =>upper( 'p_cont_attribute2'));
5594: --
5595: p_cont_attribute3 :=
5596: hr_transaction_api.get_varchar2_value
5597: (p_transaction_step_id => p_transaction_step_id
5598: ,p_name =>upper( 'p_cont_attribute3'));
5599: --
5600: p_cont_attribute4 :=

Line 5601: hr_transaction_api.get_varchar2_value

5597: (p_transaction_step_id => p_transaction_step_id
5598: ,p_name =>upper( 'p_cont_attribute3'));
5599: --
5600: p_cont_attribute4 :=
5601: hr_transaction_api.get_varchar2_value
5602: (p_transaction_step_id => p_transaction_step_id
5603: ,p_name =>upper( 'p_cont_attribute4'));
5604: --
5605: p_cont_attribute5 :=

Line 5606: hr_transaction_api.get_varchar2_value

5602: (p_transaction_step_id => p_transaction_step_id
5603: ,p_name =>upper( 'p_cont_attribute4'));
5604: --
5605: p_cont_attribute5 :=
5606: hr_transaction_api.get_varchar2_value
5607: (p_transaction_step_id => p_transaction_step_id
5608: ,p_name =>upper( 'p_cont_attribute5'));
5609: --
5610: p_cont_attribute6 :=

Line 5611: hr_transaction_api.get_varchar2_value

5607: (p_transaction_step_id => p_transaction_step_id
5608: ,p_name =>upper( 'p_cont_attribute5'));
5609: --
5610: p_cont_attribute6 :=
5611: hr_transaction_api.get_varchar2_value
5612: (p_transaction_step_id => p_transaction_step_id
5613: ,p_name =>upper( 'p_cont_attribute6'));
5614: --
5615: p_cont_attribute7 :=

Line 5616: hr_transaction_api.get_varchar2_value

5612: (p_transaction_step_id => p_transaction_step_id
5613: ,p_name =>upper( 'p_cont_attribute6'));
5614: --
5615: p_cont_attribute7 :=
5616: hr_transaction_api.get_varchar2_value
5617: (p_transaction_step_id => p_transaction_step_id
5618: ,p_name =>upper( 'p_cont_attribute7'));
5619: --
5620: p_cont_attribute8 :=

Line 5621: hr_transaction_api.get_varchar2_value

5617: (p_transaction_step_id => p_transaction_step_id
5618: ,p_name =>upper( 'p_cont_attribute7'));
5619: --
5620: p_cont_attribute8 :=
5621: hr_transaction_api.get_varchar2_value
5622: (p_transaction_step_id => p_transaction_step_id
5623: ,p_name =>upper( 'p_cont_attribute8'));
5624: --
5625: p_cont_attribute9 :=

Line 5626: hr_transaction_api.get_varchar2_value

5622: (p_transaction_step_id => p_transaction_step_id
5623: ,p_name =>upper( 'p_cont_attribute8'));
5624: --
5625: p_cont_attribute9 :=
5626: hr_transaction_api.get_varchar2_value
5627: (p_transaction_step_id => p_transaction_step_id
5628: ,p_name =>upper( 'p_cont_attribute9'));
5629: --
5630: p_cont_attribute10 :=

Line 5631: hr_transaction_api.get_varchar2_value

5627: (p_transaction_step_id => p_transaction_step_id
5628: ,p_name =>upper( 'p_cont_attribute9'));
5629: --
5630: p_cont_attribute10 :=
5631: hr_transaction_api.get_varchar2_value
5632: (p_transaction_step_id => p_transaction_step_id
5633: ,p_name =>upper( 'p_cont_attribute10'));
5634: --
5635: p_cont_attribute11 :=

Line 5636: hr_transaction_api.get_varchar2_value

5632: (p_transaction_step_id => p_transaction_step_id
5633: ,p_name =>upper( 'p_cont_attribute10'));
5634: --
5635: p_cont_attribute11 :=
5636: hr_transaction_api.get_varchar2_value
5637: (p_transaction_step_id => p_transaction_step_id
5638: ,p_name =>upper( 'p_cont_attribute11'));
5639: --
5640: p_cont_attribute12 :=

Line 5641: hr_transaction_api.get_varchar2_value

5637: (p_transaction_step_id => p_transaction_step_id
5638: ,p_name =>upper( 'p_cont_attribute11'));
5639: --
5640: p_cont_attribute12 :=
5641: hr_transaction_api.get_varchar2_value
5642: (p_transaction_step_id => p_transaction_step_id
5643: ,p_name =>upper( 'p_cont_attribute12'));
5644: --
5645: p_cont_attribute13 :=

Line 5646: hr_transaction_api.get_varchar2_value

5642: (p_transaction_step_id => p_transaction_step_id
5643: ,p_name =>upper( 'p_cont_attribute12'));
5644: --
5645: p_cont_attribute13 :=
5646: hr_transaction_api.get_varchar2_value
5647: (p_transaction_step_id => p_transaction_step_id
5648: ,p_name =>upper( 'p_cont_attribute13'));
5649: --
5650: p_cont_attribute14 :=

Line 5651: hr_transaction_api.get_varchar2_value

5647: (p_transaction_step_id => p_transaction_step_id
5648: ,p_name =>upper( 'p_cont_attribute13'));
5649: --
5650: p_cont_attribute14 :=
5651: hr_transaction_api.get_varchar2_value
5652: (p_transaction_step_id => p_transaction_step_id
5653: ,p_name =>upper( 'p_cont_attribute14'));
5654: --
5655: p_cont_attribute15 :=

Line 5656: hr_transaction_api.get_varchar2_value

5652: (p_transaction_step_id => p_transaction_step_id
5653: ,p_name =>upper( 'p_cont_attribute14'));
5654: --
5655: p_cont_attribute15 :=
5656: hr_transaction_api.get_varchar2_value
5657: (p_transaction_step_id => p_transaction_step_id
5658: ,p_name =>upper( 'p_cont_attribute15'));
5659: --
5660: p_cont_attribute16 :=

Line 5661: hr_transaction_api.get_varchar2_value

5657: (p_transaction_step_id => p_transaction_step_id
5658: ,p_name =>upper( 'p_cont_attribute15'));
5659: --
5660: p_cont_attribute16 :=
5661: hr_transaction_api.get_varchar2_value
5662: (p_transaction_step_id => p_transaction_step_id
5663: ,p_name =>upper( 'p_cont_attribute16'));
5664: --
5665: p_cont_attribute17 :=

Line 5666: hr_transaction_api.get_varchar2_value

5662: (p_transaction_step_id => p_transaction_step_id
5663: ,p_name =>upper( 'p_cont_attribute16'));
5664: --
5665: p_cont_attribute17 :=
5666: hr_transaction_api.get_varchar2_value
5667: (p_transaction_step_id => p_transaction_step_id
5668: ,p_name =>upper( 'p_cont_attribute17'));
5669: --
5670: p_cont_attribute18 :=

Line 5671: hr_transaction_api.get_varchar2_value

5667: (p_transaction_step_id => p_transaction_step_id
5668: ,p_name =>upper( 'p_cont_attribute17'));
5669: --
5670: p_cont_attribute18 :=
5671: hr_transaction_api.get_varchar2_value
5672: (p_transaction_step_id => p_transaction_step_id
5673: ,p_name =>upper( 'p_cont_attribute18'));
5674: --
5675: p_cont_attribute19 :=

Line 5676: hr_transaction_api.get_varchar2_value

5672: (p_transaction_step_id => p_transaction_step_id
5673: ,p_name =>upper( 'p_cont_attribute18'));
5674: --
5675: p_cont_attribute19 :=
5676: hr_transaction_api.get_varchar2_value
5677: (p_transaction_step_id => p_transaction_step_id
5678: ,p_name =>upper( 'p_cont_attribute19'));
5679: --
5680: p_cont_attribute20 :=

Line 5681: hr_transaction_api.get_varchar2_value

5677: (p_transaction_step_id => p_transaction_step_id
5678: ,p_name =>upper( 'p_cont_attribute19'));
5679: --
5680: p_cont_attribute20 :=
5681: hr_transaction_api.get_varchar2_value
5682: (p_transaction_step_id => p_transaction_step_id
5683: ,p_name =>upper( 'p_cont_attribute20'));
5684: --
5685: p_third_party_pay_flag :=

Line 5686: hr_transaction_api.get_varchar2_value

5682: (p_transaction_step_id => p_transaction_step_id
5683: ,p_name =>upper( 'p_cont_attribute20'));
5684: --
5685: p_third_party_pay_flag :=
5686: hr_transaction_api.get_varchar2_value
5687: (p_transaction_step_id => p_transaction_step_id
5688: ,p_name =>upper( 'p_third_party_pay_flag'));
5689: --
5690: p_bondholder_flag :=

Line 5691: hr_transaction_api.get_varchar2_value

5687: (p_transaction_step_id => p_transaction_step_id
5688: ,p_name =>upper( 'p_third_party_pay_flag'));
5689: --
5690: p_bondholder_flag :=
5691: hr_transaction_api.get_varchar2_value
5692: (p_transaction_step_id => p_transaction_step_id
5693: ,p_name =>upper( 'p_bondholder_flag'));
5694: --
5695: p_dependent_flag :=

Line 5696: hr_transaction_api.get_varchar2_value

5692: (p_transaction_step_id => p_transaction_step_id
5693: ,p_name =>upper( 'p_bondholder_flag'));
5694: --
5695: p_dependent_flag :=
5696: hr_transaction_api.get_varchar2_value
5697: (p_transaction_step_id => p_transaction_step_id
5698: ,p_name =>upper( 'p_dependent_flag'));
5699: --
5700: p_beneficiary_flag :=

Line 5701: hr_transaction_api.get_varchar2_value

5697: (p_transaction_step_id => p_transaction_step_id
5698: ,p_name =>upper( 'p_dependent_flag'));
5699: --
5700: p_beneficiary_flag :=
5701: hr_transaction_api.get_varchar2_value
5702: (p_transaction_step_id => p_transaction_step_id
5703: ,p_name =>upper( 'p_beneficiary_flag'));
5704: --
5705: p_last_name :=

Line 5706: hr_transaction_api.get_varchar2_value

5702: (p_transaction_step_id => p_transaction_step_id
5703: ,p_name =>upper( 'p_beneficiary_flag'));
5704: --
5705: p_last_name :=
5706: hr_transaction_api.get_varchar2_value
5707: (p_transaction_step_id => p_transaction_step_id
5708: ,p_name =>upper( 'p_last_name'));
5709: --
5710: p_sex :=

Line 5711: hr_transaction_api.get_varchar2_value

5707: (p_transaction_step_id => p_transaction_step_id
5708: ,p_name =>upper( 'p_last_name'));
5709: --
5710: p_sex :=
5711: hr_transaction_api.get_varchar2_value
5712: (p_transaction_step_id => p_transaction_step_id
5713: ,p_name =>upper( 'p_sex'));
5714: --
5715: p_sex_meaning := HR_GENERAL.DECODE_LOOKUP('SEX',p_sex); -- 7777

Line 5718: hr_transaction_api.get_varchar2_value

5714: --
5715: p_sex_meaning := HR_GENERAL.DECODE_LOOKUP('SEX',p_sex); -- 7777
5716: --
5717: p_uses_tobacco_flag :=
5718: hr_transaction_api.get_varchar2_value
5719: (p_transaction_step_id => p_transaction_step_id
5720: ,p_name =>upper( 'p_uses_tobacco_flag'));
5721: --
5722: p_uses_tobacco_meaning := HR_GENERAL.DECODE_LOOKUP('TOBACCO_USER',p_uses_tobacco_flag); -- 7777

Line 5725: hr_transaction_api.get_varchar2_value

5721: --
5722: p_uses_tobacco_meaning := HR_GENERAL.DECODE_LOOKUP('TOBACCO_USER',p_uses_tobacco_flag); -- 7777
5723: --
5724: p_on_military_service :=
5725: hr_transaction_api.get_varchar2_value
5726: (p_transaction_step_id => p_transaction_step_id
5727: ,p_name =>upper( 'p_on_military_service'));
5728: --
5729: p_on_military_service_meaning := HR_GENERAL.DECODE_LOOKUP('YES_NO',p_on_military_service); -- 7777

Line 5732: hr_transaction_api.get_varchar2_value

5728: --
5729: p_on_military_service_meaning := HR_GENERAL.DECODE_LOOKUP('YES_NO',p_on_military_service); -- 7777
5730: --
5731: p_dpdnt_vlntry_svce_flag :=
5732: hr_transaction_api.get_varchar2_value
5733: (p_transaction_step_id => p_transaction_step_id
5734: ,p_name =>upper( 'p_dpdnt_vlntry_svce_flag'));
5735: --
5736: p_dpdnt_vlntry_svce_meaning := HR_GENERAL.DECODE_LOOKUP('YES_NO',p_dpdnt_vlntry_svce_flag); -- 7777

Line 5739: hr_transaction_api.get_number_value

5735: --
5736: p_dpdnt_vlntry_svce_meaning := HR_GENERAL.DECODE_LOOKUP('YES_NO',p_dpdnt_vlntry_svce_flag); -- 7777
5737: --
5738: p_person_type_id :=
5739: hr_transaction_api.get_number_value
5740: (p_transaction_step_id => p_transaction_step_id
5741: ,p_name =>upper( 'p_person_type_id'));
5742: --
5743: p_per_comments :=

Line 5744: hr_transaction_api.get_varchar2_value

5740: (p_transaction_step_id => p_transaction_step_id
5741: ,p_name =>upper( 'p_person_type_id'));
5742: --
5743: p_per_comments :=
5744: hr_transaction_api.get_varchar2_value
5745: (p_transaction_step_id => p_transaction_step_id
5746: ,p_name =>upper( 'p_per_comments'));
5747: --
5748: p_date_of_birth :=

Line 5749: hr_transaction_api.get_date_value

5745: (p_transaction_step_id => p_transaction_step_id
5746: ,p_name =>upper( 'p_per_comments'));
5747: --
5748: p_date_of_birth :=
5749: hr_transaction_api.get_date_value
5750: (p_transaction_step_id => p_transaction_step_id
5751: ,p_name =>upper( 'p_date_of_birth'));
5752: --
5753: p_email_address :=

Line 5754: hr_transaction_api.get_varchar2_value

5750: (p_transaction_step_id => p_transaction_step_id
5751: ,p_name =>upper( 'p_date_of_birth'));
5752: --
5753: p_email_address :=
5754: hr_transaction_api.get_varchar2_value
5755: (p_transaction_step_id => p_transaction_step_id
5756: ,p_name =>upper( 'p_email_address'));
5757: --
5758: p_first_name :=

Line 5759: hr_transaction_api.get_varchar2_value

5755: (p_transaction_step_id => p_transaction_step_id
5756: ,p_name =>upper( 'p_email_address'));
5757: --
5758: p_first_name :=
5759: hr_transaction_api.get_varchar2_value
5760: (p_transaction_step_id => p_transaction_step_id
5761: ,p_name =>upper( 'p_first_name'));
5762: --
5763: p_known_as :=

Line 5764: hr_transaction_api.get_varchar2_value

5760: (p_transaction_step_id => p_transaction_step_id
5761: ,p_name =>upper( 'p_first_name'));
5762: --
5763: p_known_as :=
5764: hr_transaction_api.get_varchar2_value
5765: (p_transaction_step_id => p_transaction_step_id
5766: ,p_name =>upper( 'p_known_as'));
5767: --
5768: p_marital_status :=

Line 5769: hr_transaction_api.get_varchar2_value

5765: (p_transaction_step_id => p_transaction_step_id
5766: ,p_name =>upper( 'p_known_as'));
5767: --
5768: p_marital_status :=
5769: hr_transaction_api.get_varchar2_value
5770: (p_transaction_step_id => p_transaction_step_id
5771: ,p_name =>upper( 'p_marital_status'));
5772: --
5773: p_marital_status_meaning := HR_GENERAL.DECODE_LOOKUP('MAR_STATUS',p_marital_status); -- 7777

Line 5777: hr_transaction_api.get_varchar2_value

5773: p_marital_status_meaning := HR_GENERAL.DECODE_LOOKUP('MAR_STATUS',p_marital_status); -- 7777
5774: --
5775: --
5776: p_student_status := -- 12345
5777: hr_transaction_api.get_varchar2_value
5778: (p_transaction_step_id => p_transaction_step_id
5779: ,p_name =>upper( 'p_student_status'));
5780: --
5781: p_student_status_meaning := HR_GENERAL.DECODE_LOOKUP('STUDENT_STATUS',p_student_status); -- 7777

Line 5784: hr_transaction_api.get_varchar2_value

5780: --
5781: p_student_status_meaning := HR_GENERAL.DECODE_LOOKUP('STUDENT_STATUS',p_student_status); -- 7777
5782: --
5783: p_middle_names :=
5784: hr_transaction_api.get_varchar2_value
5785: (p_transaction_step_id => p_transaction_step_id
5786: ,p_name =>upper( 'p_middle_names'));
5787: --
5788: p_nationality :=

Line 5789: hr_transaction_api.get_varchar2_value

5785: (p_transaction_step_id => p_transaction_step_id
5786: ,p_name =>upper( 'p_middle_names'));
5787: --
5788: p_nationality :=
5789: hr_transaction_api.get_varchar2_value
5790: (p_transaction_step_id => p_transaction_step_id
5791: ,p_name =>upper( 'p_nationality'));
5792: --
5793: p_national_identifier :=

Line 5794: hr_transaction_api.get_varchar2_value

5790: (p_transaction_step_id => p_transaction_step_id
5791: ,p_name =>upper( 'p_nationality'));
5792: --
5793: p_national_identifier :=
5794: hr_transaction_api.get_varchar2_value
5795: (p_transaction_step_id => p_transaction_step_id
5796: ,p_name =>upper( 'p_national_identifier'));
5797: --
5798: p_previous_last_name :=

Line 5799: hr_transaction_api.get_varchar2_value

5795: (p_transaction_step_id => p_transaction_step_id
5796: ,p_name =>upper( 'p_national_identifier'));
5797: --
5798: p_previous_last_name :=
5799: hr_transaction_api.get_varchar2_value
5800: (p_transaction_step_id => p_transaction_step_id
5801: ,p_name =>upper( 'p_previous_last_name'));
5802: --
5803: p_registered_disabled_flag :=

Line 5804: hr_transaction_api.get_varchar2_value

5800: (p_transaction_step_id => p_transaction_step_id
5801: ,p_name =>upper( 'p_previous_last_name'));
5802: --
5803: p_registered_disabled_flag :=
5804: hr_transaction_api.get_varchar2_value
5805: (p_transaction_step_id => p_transaction_step_id
5806: ,p_name =>upper( 'p_registered_disabled_flag'));
5807: --
5808: p_registered_disabled := HR_GENERAL.DECODE_LOOKUP('REGISTERED_DISABLED', p_registered_disabled_flag);

Line 5811: hr_transaction_api.get_varchar2_value

5807: --
5808: p_registered_disabled := HR_GENERAL.DECODE_LOOKUP('REGISTERED_DISABLED', p_registered_disabled_flag);
5809: --
5810: p_title :=
5811: hr_transaction_api.get_varchar2_value
5812: (p_transaction_step_id => p_transaction_step_id
5813: ,p_name =>upper( 'p_title'));
5814: --
5815: -- Bug 1914891

Line 5820: hr_transaction_api.get_varchar2_value

5816: --
5817: p_title_meaning := HR_GENERAL.DECODE_LOOKUP('TITLE', p_title);
5818: --
5819: p_work_telephone :=
5820: hr_transaction_api.get_varchar2_value
5821: (p_transaction_step_id => p_transaction_step_id
5822: ,p_name =>upper( 'p_work_telephone'));
5823: --
5824: p_attribute_category :=

Line 5825: hr_transaction_api.get_varchar2_value

5821: (p_transaction_step_id => p_transaction_step_id
5822: ,p_name =>upper( 'p_work_telephone'));
5823: --
5824: p_attribute_category :=
5825: hr_transaction_api.get_varchar2_value
5826: (p_transaction_step_id => p_transaction_step_id
5827: ,p_name =>upper( 'p_attribute_category'));
5828: --
5829: p_attribute1 :=

Line 5830: hr_transaction_api.get_varchar2_value

5826: (p_transaction_step_id => p_transaction_step_id
5827: ,p_name =>upper( 'p_attribute_category'));
5828: --
5829: p_attribute1 :=
5830: hr_transaction_api.get_varchar2_value
5831: (p_transaction_step_id => p_transaction_step_id
5832: ,p_name =>upper( 'p_attribute1'));
5833: --
5834: p_attribute2 :=

Line 5835: hr_transaction_api.get_varchar2_value

5831: (p_transaction_step_id => p_transaction_step_id
5832: ,p_name =>upper( 'p_attribute1'));
5833: --
5834: p_attribute2 :=
5835: hr_transaction_api.get_varchar2_value
5836: (p_transaction_step_id => p_transaction_step_id
5837: ,p_name =>upper( 'p_attribute2'));
5838: --
5839: p_attribute3 :=

Line 5840: hr_transaction_api.get_varchar2_value

5836: (p_transaction_step_id => p_transaction_step_id
5837: ,p_name =>upper( 'p_attribute2'));
5838: --
5839: p_attribute3 :=
5840: hr_transaction_api.get_varchar2_value
5841: (p_transaction_step_id => p_transaction_step_id
5842: ,p_name =>upper( 'p_attribute3'));
5843: --
5844: p_attribute4 :=

Line 5845: hr_transaction_api.get_varchar2_value

5841: (p_transaction_step_id => p_transaction_step_id
5842: ,p_name =>upper( 'p_attribute3'));
5843: --
5844: p_attribute4 :=
5845: hr_transaction_api.get_varchar2_value
5846: (p_transaction_step_id => p_transaction_step_id
5847: ,p_name =>upper( 'p_attribute4'));
5848: --
5849: p_attribute5 :=

Line 5850: hr_transaction_api.get_varchar2_value

5846: (p_transaction_step_id => p_transaction_step_id
5847: ,p_name =>upper( 'p_attribute4'));
5848: --
5849: p_attribute5 :=
5850: hr_transaction_api.get_varchar2_value
5851: (p_transaction_step_id => p_transaction_step_id
5852: ,p_name =>upper( 'p_attribute5'));
5853: --
5854: p_attribute6 :=

Line 5855: hr_transaction_api.get_varchar2_value

5851: (p_transaction_step_id => p_transaction_step_id
5852: ,p_name =>upper( 'p_attribute5'));
5853: --
5854: p_attribute6 :=
5855: hr_transaction_api.get_varchar2_value
5856: (p_transaction_step_id => p_transaction_step_id
5857: ,p_name =>upper( 'p_attribute6'));
5858: --
5859: p_attribute7 :=

Line 5860: hr_transaction_api.get_varchar2_value

5856: (p_transaction_step_id => p_transaction_step_id
5857: ,p_name =>upper( 'p_attribute6'));
5858: --
5859: p_attribute7 :=
5860: hr_transaction_api.get_varchar2_value
5861: (p_transaction_step_id => p_transaction_step_id
5862: ,p_name =>upper( 'p_attribute7'));
5863: --
5864: p_attribute8 :=

Line 5865: hr_transaction_api.get_varchar2_value

5861: (p_transaction_step_id => p_transaction_step_id
5862: ,p_name =>upper( 'p_attribute7'));
5863: --
5864: p_attribute8 :=
5865: hr_transaction_api.get_varchar2_value
5866: (p_transaction_step_id => p_transaction_step_id
5867: ,p_name =>upper( 'p_attribute8'));
5868: --
5869: p_attribute9 :=

Line 5870: hr_transaction_api.get_varchar2_value

5866: (p_transaction_step_id => p_transaction_step_id
5867: ,p_name =>upper( 'p_attribute8'));
5868: --
5869: p_attribute9 :=
5870: hr_transaction_api.get_varchar2_value
5871: (p_transaction_step_id => p_transaction_step_id
5872: ,p_name =>upper( 'p_attribute9'));
5873: --
5874: p_attribute10 :=

Line 5875: hr_transaction_api.get_varchar2_value

5871: (p_transaction_step_id => p_transaction_step_id
5872: ,p_name =>upper( 'p_attribute9'));
5873: --
5874: p_attribute10 :=
5875: hr_transaction_api.get_varchar2_value
5876: (p_transaction_step_id => p_transaction_step_id
5877: ,p_name =>upper( 'p_attribute10'));
5878: --
5879: p_attribute11 :=

Line 5880: hr_transaction_api.get_varchar2_value

5876: (p_transaction_step_id => p_transaction_step_id
5877: ,p_name =>upper( 'p_attribute10'));
5878: --
5879: p_attribute11 :=
5880: hr_transaction_api.get_varchar2_value
5881: (p_transaction_step_id => p_transaction_step_id
5882: ,p_name =>upper( 'p_attribute11'));
5883: --
5884: p_attribute12 :=

Line 5885: hr_transaction_api.get_varchar2_value

5881: (p_transaction_step_id => p_transaction_step_id
5882: ,p_name =>upper( 'p_attribute11'));
5883: --
5884: p_attribute12 :=
5885: hr_transaction_api.get_varchar2_value
5886: (p_transaction_step_id => p_transaction_step_id
5887: ,p_name =>upper( 'p_attribute12'));
5888: --
5889: p_attribute13 :=

Line 5890: hr_transaction_api.get_varchar2_value

5886: (p_transaction_step_id => p_transaction_step_id
5887: ,p_name =>upper( 'p_attribute12'));
5888: --
5889: p_attribute13 :=
5890: hr_transaction_api.get_varchar2_value
5891: (p_transaction_step_id => p_transaction_step_id
5892: ,p_name =>upper( 'p_attribute13'));
5893: --
5894: p_attribute14 :=

Line 5895: hr_transaction_api.get_varchar2_value

5891: (p_transaction_step_id => p_transaction_step_id
5892: ,p_name =>upper( 'p_attribute13'));
5893: --
5894: p_attribute14 :=
5895: hr_transaction_api.get_varchar2_value
5896: (p_transaction_step_id => p_transaction_step_id
5897: ,p_name =>upper( 'p_attribute14'));
5898: --
5899: p_attribute15 :=

Line 5900: hr_transaction_api.get_varchar2_value

5896: (p_transaction_step_id => p_transaction_step_id
5897: ,p_name =>upper( 'p_attribute14'));
5898: --
5899: p_attribute15 :=
5900: hr_transaction_api.get_varchar2_value
5901: (p_transaction_step_id => p_transaction_step_id
5902: ,p_name =>upper( 'p_attribute15'));
5903: --
5904: p_attribute16 :=

Line 5905: hr_transaction_api.get_varchar2_value

5901: (p_transaction_step_id => p_transaction_step_id
5902: ,p_name =>upper( 'p_attribute15'));
5903: --
5904: p_attribute16 :=
5905: hr_transaction_api.get_varchar2_value
5906: (p_transaction_step_id => p_transaction_step_id
5907: ,p_name =>upper( 'p_attribute16'));
5908: --
5909: p_attribute17 :=

Line 5910: hr_transaction_api.get_varchar2_value

5906: (p_transaction_step_id => p_transaction_step_id
5907: ,p_name =>upper( 'p_attribute16'));
5908: --
5909: p_attribute17 :=
5910: hr_transaction_api.get_varchar2_value
5911: (p_transaction_step_id => p_transaction_step_id
5912: ,p_name =>upper( 'p_attribute17'));
5913: --
5914: p_attribute18 :=

Line 5915: hr_transaction_api.get_varchar2_value

5911: (p_transaction_step_id => p_transaction_step_id
5912: ,p_name =>upper( 'p_attribute17'));
5913: --
5914: p_attribute18 :=
5915: hr_transaction_api.get_varchar2_value
5916: (p_transaction_step_id => p_transaction_step_id
5917: ,p_name =>upper( 'p_attribute18'));
5918: --
5919: p_attribute19 :=

Line 5920: hr_transaction_api.get_varchar2_value

5916: (p_transaction_step_id => p_transaction_step_id
5917: ,p_name =>upper( 'p_attribute18'));
5918: --
5919: p_attribute19 :=
5920: hr_transaction_api.get_varchar2_value
5921: (p_transaction_step_id => p_transaction_step_id
5922: ,p_name =>upper( 'p_attribute19'));
5923: --
5924: p_attribute20 :=

Line 5925: hr_transaction_api.get_varchar2_value

5921: (p_transaction_step_id => p_transaction_step_id
5922: ,p_name =>upper( 'p_attribute19'));
5923: --
5924: p_attribute20 :=
5925: hr_transaction_api.get_varchar2_value
5926: (p_transaction_step_id => p_transaction_step_id
5927: ,p_name =>upper( 'p_attribute20'));
5928: --
5929: p_attribute21 :=

Line 5930: hr_transaction_api.get_varchar2_value

5926: (p_transaction_step_id => p_transaction_step_id
5927: ,p_name =>upper( 'p_attribute20'));
5928: --
5929: p_attribute21 :=
5930: hr_transaction_api.get_varchar2_value
5931: (p_transaction_step_id => p_transaction_step_id
5932: ,p_name =>upper( 'p_attribute21'));
5933: --
5934: p_attribute22 :=

Line 5935: hr_transaction_api.get_varchar2_value

5931: (p_transaction_step_id => p_transaction_step_id
5932: ,p_name =>upper( 'p_attribute21'));
5933: --
5934: p_attribute22 :=
5935: hr_transaction_api.get_varchar2_value
5936: (p_transaction_step_id => p_transaction_step_id
5937: ,p_name =>upper( 'p_attribute22'));
5938: --
5939: p_attribute23 :=

Line 5940: hr_transaction_api.get_varchar2_value

5936: (p_transaction_step_id => p_transaction_step_id
5937: ,p_name =>upper( 'p_attribute22'));
5938: --
5939: p_attribute23 :=
5940: hr_transaction_api.get_varchar2_value
5941: (p_transaction_step_id => p_transaction_step_id
5942: ,p_name =>upper( 'p_attribute23'));
5943: --
5944: p_attribute24 :=

Line 5945: hr_transaction_api.get_varchar2_value

5941: (p_transaction_step_id => p_transaction_step_id
5942: ,p_name =>upper( 'p_attribute23'));
5943: --
5944: p_attribute24 :=
5945: hr_transaction_api.get_varchar2_value
5946: (p_transaction_step_id => p_transaction_step_id
5947: ,p_name =>upper( 'p_attribute24'));
5948: --
5949: p_attribute25 :=

Line 5950: hr_transaction_api.get_varchar2_value

5946: (p_transaction_step_id => p_transaction_step_id
5947: ,p_name =>upper( 'p_attribute24'));
5948: --
5949: p_attribute25 :=
5950: hr_transaction_api.get_varchar2_value
5951: (p_transaction_step_id => p_transaction_step_id
5952: ,p_name =>upper( 'p_attribute25'));
5953: --
5954: p_attribute26 :=

Line 5955: hr_transaction_api.get_varchar2_value

5951: (p_transaction_step_id => p_transaction_step_id
5952: ,p_name =>upper( 'p_attribute25'));
5953: --
5954: p_attribute26 :=
5955: hr_transaction_api.get_varchar2_value
5956: (p_transaction_step_id => p_transaction_step_id
5957: ,p_name =>upper( 'p_attribute26'));
5958: --
5959: p_attribute27 :=

Line 5960: hr_transaction_api.get_varchar2_value

5956: (p_transaction_step_id => p_transaction_step_id
5957: ,p_name =>upper( 'p_attribute26'));
5958: --
5959: p_attribute27 :=
5960: hr_transaction_api.get_varchar2_value
5961: (p_transaction_step_id => p_transaction_step_id
5962: ,p_name =>upper( 'p_attribute27'));
5963: --
5964: p_attribute28 :=

Line 5965: hr_transaction_api.get_varchar2_value

5961: (p_transaction_step_id => p_transaction_step_id
5962: ,p_name =>upper( 'p_attribute27'));
5963: --
5964: p_attribute28 :=
5965: hr_transaction_api.get_varchar2_value
5966: (p_transaction_step_id => p_transaction_step_id
5967: ,p_name =>upper( 'p_attribute28'));
5968: --
5969: p_attribute29 :=

Line 5970: hr_transaction_api.get_varchar2_value

5966: (p_transaction_step_id => p_transaction_step_id
5967: ,p_name =>upper( 'p_attribute28'));
5968: --
5969: p_attribute29 :=
5970: hr_transaction_api.get_varchar2_value
5971: (p_transaction_step_id => p_transaction_step_id
5972: ,p_name =>upper( 'p_attribute29'));
5973: --
5974: p_attribute30 :=

Line 5975: hr_transaction_api.get_varchar2_value

5971: (p_transaction_step_id => p_transaction_step_id
5972: ,p_name =>upper( 'p_attribute29'));
5973: --
5974: p_attribute30 :=
5975: hr_transaction_api.get_varchar2_value
5976: (p_transaction_step_id => p_transaction_step_id
5977: ,p_name =>upper( 'p_attribute30'));
5978: --
5979: p_per_information_category :=

Line 5980: hr_transaction_api.get_varchar2_value

5976: (p_transaction_step_id => p_transaction_step_id
5977: ,p_name =>upper( 'p_attribute30'));
5978: --
5979: p_per_information_category :=
5980: hr_transaction_api.get_varchar2_value
5981: (p_transaction_step_id => p_transaction_step_id
5982: ,p_name =>upper( 'p_per_information_category'));
5983: --
5984: p_per_information1 :=

Line 5985: hr_transaction_api.get_varchar2_value

5981: (p_transaction_step_id => p_transaction_step_id
5982: ,p_name =>upper( 'p_per_information_category'));
5983: --
5984: p_per_information1 :=
5985: hr_transaction_api.get_varchar2_value
5986: (p_transaction_step_id => p_transaction_step_id
5987: ,p_name =>upper( 'p_per_information1'));
5988: --
5989: p_per_information2 :=

Line 5990: hr_transaction_api.get_varchar2_value

5986: (p_transaction_step_id => p_transaction_step_id
5987: ,p_name =>upper( 'p_per_information1'));
5988: --
5989: p_per_information2 :=
5990: hr_transaction_api.get_varchar2_value
5991: (p_transaction_step_id => p_transaction_step_id
5992: ,p_name =>upper( 'p_per_information2'));
5993: --
5994: p_per_information3 :=

Line 5995: hr_transaction_api.get_varchar2_value

5991: (p_transaction_step_id => p_transaction_step_id
5992: ,p_name =>upper( 'p_per_information2'));
5993: --
5994: p_per_information3 :=
5995: hr_transaction_api.get_varchar2_value
5996: (p_transaction_step_id => p_transaction_step_id
5997: ,p_name =>upper( 'p_per_information3'));
5998: --
5999: p_per_information4 :=

Line 6000: hr_transaction_api.get_varchar2_value

5996: (p_transaction_step_id => p_transaction_step_id
5997: ,p_name =>upper( 'p_per_information3'));
5998: --
5999: p_per_information4 :=
6000: hr_transaction_api.get_varchar2_value
6001: (p_transaction_step_id => p_transaction_step_id
6002: ,p_name =>upper( 'p_per_information4'));
6003: --
6004: p_per_information5 :=

Line 6005: hr_transaction_api.get_varchar2_value

6001: (p_transaction_step_id => p_transaction_step_id
6002: ,p_name =>upper( 'p_per_information4'));
6003: --
6004: p_per_information5 :=
6005: hr_transaction_api.get_varchar2_value
6006: (p_transaction_step_id => p_transaction_step_id
6007: ,p_name =>upper( 'p_per_information5'));
6008: --
6009: p_per_information6 :=

Line 6010: hr_transaction_api.get_varchar2_value

6006: (p_transaction_step_id => p_transaction_step_id
6007: ,p_name =>upper( 'p_per_information5'));
6008: --
6009: p_per_information6 :=
6010: hr_transaction_api.get_varchar2_value
6011: (p_transaction_step_id => p_transaction_step_id
6012: ,p_name =>upper( 'p_per_information6'));
6013: --
6014: p_per_information7 :=

Line 6015: hr_transaction_api.get_varchar2_value

6011: (p_transaction_step_id => p_transaction_step_id
6012: ,p_name =>upper( 'p_per_information6'));
6013: --
6014: p_per_information7 :=
6015: hr_transaction_api.get_varchar2_value
6016: (p_transaction_step_id => p_transaction_step_id
6017: ,p_name =>upper( 'p_per_information7'));
6018: --
6019: p_per_information8 :=

Line 6020: hr_transaction_api.get_varchar2_value

6016: (p_transaction_step_id => p_transaction_step_id
6017: ,p_name =>upper( 'p_per_information7'));
6018: --
6019: p_per_information8 :=
6020: hr_transaction_api.get_varchar2_value
6021: (p_transaction_step_id => p_transaction_step_id
6022: ,p_name =>upper( 'p_per_information8'));
6023: --
6024: p_per_information9 :=

Line 6025: hr_transaction_api.get_varchar2_value

6021: (p_transaction_step_id => p_transaction_step_id
6022: ,p_name =>upper( 'p_per_information8'));
6023: --
6024: p_per_information9 :=
6025: hr_transaction_api.get_varchar2_value
6026: (p_transaction_step_id => p_transaction_step_id
6027: ,p_name =>upper( 'p_per_information9'));
6028: --
6029: p_per_information10 :=

Line 6030: hr_transaction_api.get_varchar2_value

6026: (p_transaction_step_id => p_transaction_step_id
6027: ,p_name =>upper( 'p_per_information9'));
6028: --
6029: p_per_information10 :=
6030: hr_transaction_api.get_varchar2_value
6031: (p_transaction_step_id => p_transaction_step_id
6032: ,p_name =>upper( 'p_per_information10'));
6033: --
6034: p_per_information11 :=

Line 6035: hr_transaction_api.get_varchar2_value

6031: (p_transaction_step_id => p_transaction_step_id
6032: ,p_name =>upper( 'p_per_information10'));
6033: --
6034: p_per_information11 :=
6035: hr_transaction_api.get_varchar2_value
6036: (p_transaction_step_id => p_transaction_step_id
6037: ,p_name =>upper( 'p_per_information11'));
6038: --
6039: p_per_information12 :=

Line 6040: hr_transaction_api.get_varchar2_value

6036: (p_transaction_step_id => p_transaction_step_id
6037: ,p_name =>upper( 'p_per_information11'));
6038: --
6039: p_per_information12 :=
6040: hr_transaction_api.get_varchar2_value
6041: (p_transaction_step_id => p_transaction_step_id
6042: ,p_name =>upper( 'p_per_information12'));
6043: --
6044: p_per_information13 :=

Line 6045: hr_transaction_api.get_varchar2_value

6041: (p_transaction_step_id => p_transaction_step_id
6042: ,p_name =>upper( 'p_per_information12'));
6043: --
6044: p_per_information13 :=
6045: hr_transaction_api.get_varchar2_value
6046: (p_transaction_step_id => p_transaction_step_id
6047: ,p_name =>upper( 'p_per_information13'));
6048: --
6049: p_per_information14 :=

Line 6050: hr_transaction_api.get_varchar2_value

6046: (p_transaction_step_id => p_transaction_step_id
6047: ,p_name =>upper( 'p_per_information13'));
6048: --
6049: p_per_information14 :=
6050: hr_transaction_api.get_varchar2_value
6051: (p_transaction_step_id => p_transaction_step_id
6052: ,p_name =>upper( 'p_per_information14'));
6053: --
6054: p_per_information15 :=

Line 6055: hr_transaction_api.get_varchar2_value

6051: (p_transaction_step_id => p_transaction_step_id
6052: ,p_name =>upper( 'p_per_information14'));
6053: --
6054: p_per_information15 :=
6055: hr_transaction_api.get_varchar2_value
6056: (p_transaction_step_id => p_transaction_step_id
6057: ,p_name =>upper( 'p_per_information15'));
6058: --
6059: p_per_information16 :=

Line 6060: hr_transaction_api.get_varchar2_value

6056: (p_transaction_step_id => p_transaction_step_id
6057: ,p_name =>upper( 'p_per_information15'));
6058: --
6059: p_per_information16 :=
6060: hr_transaction_api.get_varchar2_value
6061: (p_transaction_step_id => p_transaction_step_id
6062: ,p_name =>upper( 'p_per_information16'));
6063: --
6064: p_per_information17 :=

Line 6065: hr_transaction_api.get_varchar2_value

6061: (p_transaction_step_id => p_transaction_step_id
6062: ,p_name =>upper( 'p_per_information16'));
6063: --
6064: p_per_information17 :=
6065: hr_transaction_api.get_varchar2_value
6066: (p_transaction_step_id => p_transaction_step_id
6067: ,p_name =>upper( 'p_per_information17'));
6068: --
6069: p_per_information18 :=

Line 6070: hr_transaction_api.get_varchar2_value

6066: (p_transaction_step_id => p_transaction_step_id
6067: ,p_name =>upper( 'p_per_information17'));
6068: --
6069: p_per_information18 :=
6070: hr_transaction_api.get_varchar2_value
6071: (p_transaction_step_id => p_transaction_step_id
6072: ,p_name =>upper( 'p_per_information18'));
6073: --
6074: p_per_information19 :=

Line 6075: hr_transaction_api.get_varchar2_value

6071: (p_transaction_step_id => p_transaction_step_id
6072: ,p_name =>upper( 'p_per_information18'));
6073: --
6074: p_per_information19 :=
6075: hr_transaction_api.get_varchar2_value
6076: (p_transaction_step_id => p_transaction_step_id
6077: ,p_name =>upper( 'p_per_information19'));
6078: --
6079: p_per_information20 :=

Line 6080: hr_transaction_api.get_varchar2_value

6076: (p_transaction_step_id => p_transaction_step_id
6077: ,p_name =>upper( 'p_per_information19'));
6078: --
6079: p_per_information20 :=
6080: hr_transaction_api.get_varchar2_value
6081: (p_transaction_step_id => p_transaction_step_id
6082: ,p_name =>upper( 'p_per_information20'));
6083: --
6084: p_per_information21 :=

Line 6085: hr_transaction_api.get_varchar2_value

6081: (p_transaction_step_id => p_transaction_step_id
6082: ,p_name =>upper( 'p_per_information20'));
6083: --
6084: p_per_information21 :=
6085: hr_transaction_api.get_varchar2_value
6086: (p_transaction_step_id => p_transaction_step_id
6087: ,p_name =>upper( 'p_per_information21'));
6088: --
6089: p_per_information22 :=

Line 6090: hr_transaction_api.get_varchar2_value

6086: (p_transaction_step_id => p_transaction_step_id
6087: ,p_name =>upper( 'p_per_information21'));
6088: --
6089: p_per_information22 :=
6090: hr_transaction_api.get_varchar2_value
6091: (p_transaction_step_id => p_transaction_step_id
6092: ,p_name =>upper( 'p_per_information22'));
6093: --
6094: p_per_information23 :=

Line 6095: hr_transaction_api.get_varchar2_value

6091: (p_transaction_step_id => p_transaction_step_id
6092: ,p_name =>upper( 'p_per_information22'));
6093: --
6094: p_per_information23 :=
6095: hr_transaction_api.get_varchar2_value
6096: (p_transaction_step_id => p_transaction_step_id
6097: ,p_name =>upper( 'p_per_information23'));
6098: --
6099: p_per_information24 :=

Line 6100: hr_transaction_api.get_varchar2_value

6096: (p_transaction_step_id => p_transaction_step_id
6097: ,p_name =>upper( 'p_per_information23'));
6098: --
6099: p_per_information24 :=
6100: hr_transaction_api.get_varchar2_value
6101: (p_transaction_step_id => p_transaction_step_id
6102: ,p_name =>upper( 'p_per_information24'));
6103: --
6104: p_per_information25 :=

Line 6105: hr_transaction_api.get_varchar2_value

6101: (p_transaction_step_id => p_transaction_step_id
6102: ,p_name =>upper( 'p_per_information24'));
6103: --
6104: p_per_information25 :=
6105: hr_transaction_api.get_varchar2_value
6106: (p_transaction_step_id => p_transaction_step_id
6107: ,p_name =>upper( 'p_per_information25'));
6108: --
6109: p_per_information26 :=

Line 6110: hr_transaction_api.get_varchar2_value

6106: (p_transaction_step_id => p_transaction_step_id
6107: ,p_name =>upper( 'p_per_information25'));
6108: --
6109: p_per_information26 :=
6110: hr_transaction_api.get_varchar2_value
6111: (p_transaction_step_id => p_transaction_step_id
6112: ,p_name =>upper( 'p_per_information26'));
6113: --
6114: p_per_information27 :=

Line 6115: hr_transaction_api.get_varchar2_value

6111: (p_transaction_step_id => p_transaction_step_id
6112: ,p_name =>upper( 'p_per_information26'));
6113: --
6114: p_per_information27 :=
6115: hr_transaction_api.get_varchar2_value
6116: (p_transaction_step_id => p_transaction_step_id
6117: ,p_name =>upper( 'p_per_information27'));
6118: --
6119: p_per_information28 :=

Line 6120: hr_transaction_api.get_varchar2_value

6116: (p_transaction_step_id => p_transaction_step_id
6117: ,p_name =>upper( 'p_per_information27'));
6118: --
6119: p_per_information28 :=
6120: hr_transaction_api.get_varchar2_value
6121: (p_transaction_step_id => p_transaction_step_id
6122: ,p_name =>upper( 'p_per_information28'));
6123: --
6124: p_per_information29 :=

Line 6125: hr_transaction_api.get_varchar2_value

6121: (p_transaction_step_id => p_transaction_step_id
6122: ,p_name =>upper( 'p_per_information28'));
6123: --
6124: p_per_information29 :=
6125: hr_transaction_api.get_varchar2_value
6126: (p_transaction_step_id => p_transaction_step_id
6127: ,p_name =>upper( 'p_per_information29'));
6128: --
6129: p_per_information30 :=

Line 6130: hr_transaction_api.get_varchar2_value

6126: (p_transaction_step_id => p_transaction_step_id
6127: ,p_name =>upper( 'p_per_information29'));
6128: --
6129: p_per_information30 :=
6130: hr_transaction_api.get_varchar2_value
6131: (p_transaction_step_id => p_transaction_step_id
6132: ,p_name =>upper( 'p_per_information30'));
6133: --
6134: p_correspondence_language :=

Line 6135: hr_transaction_api.get_varchar2_value

6131: (p_transaction_step_id => p_transaction_step_id
6132: ,p_name =>upper( 'p_per_information30'));
6133: --
6134: p_correspondence_language :=
6135: hr_transaction_api.get_varchar2_value
6136: (p_transaction_step_id => p_transaction_step_id
6137: ,p_name =>upper( 'p_correspondence_language'));
6138: --
6139: p_honors :=

Line 6140: hr_transaction_api.get_varchar2_value

6136: (p_transaction_step_id => p_transaction_step_id
6137: ,p_name =>upper( 'p_correspondence_language'));
6138: --
6139: p_honors :=
6140: hr_transaction_api.get_varchar2_value
6141: (p_transaction_step_id => p_transaction_step_id
6142: ,p_name =>upper( 'p_honors'));
6143: --
6144: p_pre_name_adjunct :=

Line 6145: hr_transaction_api.get_varchar2_value

6141: (p_transaction_step_id => p_transaction_step_id
6142: ,p_name =>upper( 'p_honors'));
6143: --
6144: p_pre_name_adjunct :=
6145: hr_transaction_api.get_varchar2_value
6146: (p_transaction_step_id => p_transaction_step_id
6147: ,p_name =>upper( 'p_pre_name_adjunct'));
6148: --
6149: p_suffix :=

Line 6150: hr_transaction_api.get_varchar2_value

6146: (p_transaction_step_id => p_transaction_step_id
6147: ,p_name =>upper( 'p_pre_name_adjunct'));
6148: --
6149: p_suffix :=
6150: hr_transaction_api.get_varchar2_value
6151: (p_transaction_step_id => p_transaction_step_id
6152: ,p_name =>upper( 'p_suffix'));
6153: --
6154: p_create_mirror_flag :=

Line 6155: hr_transaction_api.get_varchar2_value

6151: (p_transaction_step_id => p_transaction_step_id
6152: ,p_name =>upper( 'p_suffix'));
6153: --
6154: p_create_mirror_flag :=
6155: hr_transaction_api.get_varchar2_value
6156: (p_transaction_step_id => p_transaction_step_id
6157: ,p_name =>upper( 'p_create_mirror_flag'));
6158: --
6159: p_mirror_type :=

Line 6160: hr_transaction_api.get_varchar2_value

6156: (p_transaction_step_id => p_transaction_step_id
6157: ,p_name =>upper( 'p_create_mirror_flag'));
6158: --
6159: p_mirror_type :=
6160: hr_transaction_api.get_varchar2_value
6161: (p_transaction_step_id => p_transaction_step_id
6162: ,p_name =>upper( 'p_mirror_type'));
6163: --
6164: p_mirror_cont_attribute_cat :=

Line 6165: hr_transaction_api.get_varchar2_value

6161: (p_transaction_step_id => p_transaction_step_id
6162: ,p_name =>upper( 'p_mirror_type'));
6163: --
6164: p_mirror_cont_attribute_cat :=
6165: hr_transaction_api.get_varchar2_value
6166: (p_transaction_step_id => p_transaction_step_id
6167: ,p_name =>upper( 'p_mirror_cont_attribute_cat'));
6168: --
6169: p_mirror_cont_attribute1 :=

Line 6170: hr_transaction_api.get_varchar2_value

6166: (p_transaction_step_id => p_transaction_step_id
6167: ,p_name =>upper( 'p_mirror_cont_attribute_cat'));
6168: --
6169: p_mirror_cont_attribute1 :=
6170: hr_transaction_api.get_varchar2_value
6171: (p_transaction_step_id => p_transaction_step_id
6172: ,p_name =>upper( 'p_mirror_cont_attribute1'));
6173: --
6174: p_mirror_cont_attribute2 :=

Line 6175: hr_transaction_api.get_varchar2_value

6171: (p_transaction_step_id => p_transaction_step_id
6172: ,p_name =>upper( 'p_mirror_cont_attribute1'));
6173: --
6174: p_mirror_cont_attribute2 :=
6175: hr_transaction_api.get_varchar2_value
6176: (p_transaction_step_id => p_transaction_step_id
6177: ,p_name =>upper( 'p_mirror_cont_attribute2'));
6178: --
6179: p_mirror_cont_attribute3 :=

Line 6180: hr_transaction_api.get_varchar2_value

6176: (p_transaction_step_id => p_transaction_step_id
6177: ,p_name =>upper( 'p_mirror_cont_attribute2'));
6178: --
6179: p_mirror_cont_attribute3 :=
6180: hr_transaction_api.get_varchar2_value
6181: (p_transaction_step_id => p_transaction_step_id
6182: ,p_name =>upper( 'p_mirror_cont_attribute3'));
6183: --
6184: p_mirror_cont_attribute4 :=

Line 6185: hr_transaction_api.get_varchar2_value

6181: (p_transaction_step_id => p_transaction_step_id
6182: ,p_name =>upper( 'p_mirror_cont_attribute3'));
6183: --
6184: p_mirror_cont_attribute4 :=
6185: hr_transaction_api.get_varchar2_value
6186: (p_transaction_step_id => p_transaction_step_id
6187: ,p_name =>upper( 'p_mirror_cont_attribute4'));
6188: --
6189: p_mirror_cont_attribute5 :=

Line 6190: hr_transaction_api.get_varchar2_value

6186: (p_transaction_step_id => p_transaction_step_id
6187: ,p_name =>upper( 'p_mirror_cont_attribute4'));
6188: --
6189: p_mirror_cont_attribute5 :=
6190: hr_transaction_api.get_varchar2_value
6191: (p_transaction_step_id => p_transaction_step_id
6192: ,p_name =>upper( 'p_mirror_cont_attribute5'));
6193: --
6194: p_mirror_cont_attribute6 :=

Line 6195: hr_transaction_api.get_varchar2_value

6191: (p_transaction_step_id => p_transaction_step_id
6192: ,p_name =>upper( 'p_mirror_cont_attribute5'));
6193: --
6194: p_mirror_cont_attribute6 :=
6195: hr_transaction_api.get_varchar2_value
6196: (p_transaction_step_id => p_transaction_step_id
6197: ,p_name =>upper( 'p_mirror_cont_attribute6'));
6198: --
6199: p_mirror_cont_attribute7 :=

Line 6200: hr_transaction_api.get_varchar2_value

6196: (p_transaction_step_id => p_transaction_step_id
6197: ,p_name =>upper( 'p_mirror_cont_attribute6'));
6198: --
6199: p_mirror_cont_attribute7 :=
6200: hr_transaction_api.get_varchar2_value
6201: (p_transaction_step_id => p_transaction_step_id
6202: ,p_name =>upper( 'p_mirror_cont_attribute7'));
6203: --
6204: p_mirror_cont_attribute8 :=

Line 6205: hr_transaction_api.get_varchar2_value

6201: (p_transaction_step_id => p_transaction_step_id
6202: ,p_name =>upper( 'p_mirror_cont_attribute7'));
6203: --
6204: p_mirror_cont_attribute8 :=
6205: hr_transaction_api.get_varchar2_value
6206: (p_transaction_step_id => p_transaction_step_id
6207: ,p_name =>upper( 'p_mirror_cont_attribute8'));
6208: --
6209: p_mirror_cont_attribute9 :=

Line 6210: hr_transaction_api.get_varchar2_value

6206: (p_transaction_step_id => p_transaction_step_id
6207: ,p_name =>upper( 'p_mirror_cont_attribute8'));
6208: --
6209: p_mirror_cont_attribute9 :=
6210: hr_transaction_api.get_varchar2_value
6211: (p_transaction_step_id => p_transaction_step_id
6212: ,p_name =>upper( 'p_mirror_cont_attribute9'));
6213: --
6214: p_mirror_cont_attribute10 :=

Line 6215: hr_transaction_api.get_varchar2_value

6211: (p_transaction_step_id => p_transaction_step_id
6212: ,p_name =>upper( 'p_mirror_cont_attribute9'));
6213: --
6214: p_mirror_cont_attribute10 :=
6215: hr_transaction_api.get_varchar2_value
6216: (p_transaction_step_id => p_transaction_step_id
6217: ,p_name =>upper( 'p_mirror_cont_attribute10'));
6218: --
6219: p_mirror_cont_attribute11 :=

Line 6220: hr_transaction_api.get_varchar2_value

6216: (p_transaction_step_id => p_transaction_step_id
6217: ,p_name =>upper( 'p_mirror_cont_attribute10'));
6218: --
6219: p_mirror_cont_attribute11 :=
6220: hr_transaction_api.get_varchar2_value
6221: (p_transaction_step_id => p_transaction_step_id
6222: ,p_name =>upper( 'p_mirror_cont_attribute11'));
6223: --
6224: p_mirror_cont_attribute12 :=

Line 6225: hr_transaction_api.get_varchar2_value

6221: (p_transaction_step_id => p_transaction_step_id
6222: ,p_name =>upper( 'p_mirror_cont_attribute11'));
6223: --
6224: p_mirror_cont_attribute12 :=
6225: hr_transaction_api.get_varchar2_value
6226: (p_transaction_step_id => p_transaction_step_id
6227: ,p_name =>upper( 'p_mirror_cont_attribute12'));
6228: --
6229: p_mirror_cont_attribute13 :=

Line 6230: hr_transaction_api.get_varchar2_value

6226: (p_transaction_step_id => p_transaction_step_id
6227: ,p_name =>upper( 'p_mirror_cont_attribute12'));
6228: --
6229: p_mirror_cont_attribute13 :=
6230: hr_transaction_api.get_varchar2_value
6231: (p_transaction_step_id => p_transaction_step_id
6232: ,p_name =>upper( 'p_mirror_cont_attribute13'));
6233: --
6234: p_mirror_cont_attribute14 :=

Line 6235: hr_transaction_api.get_varchar2_value

6231: (p_transaction_step_id => p_transaction_step_id
6232: ,p_name =>upper( 'p_mirror_cont_attribute13'));
6233: --
6234: p_mirror_cont_attribute14 :=
6235: hr_transaction_api.get_varchar2_value
6236: (p_transaction_step_id => p_transaction_step_id
6237: ,p_name =>upper( 'p_mirror_cont_attribute14'));
6238: --
6239: p_mirror_cont_attribute15 :=

Line 6240: hr_transaction_api.get_varchar2_value

6236: (p_transaction_step_id => p_transaction_step_id
6237: ,p_name =>upper( 'p_mirror_cont_attribute14'));
6238: --
6239: p_mirror_cont_attribute15 :=
6240: hr_transaction_api.get_varchar2_value
6241: (p_transaction_step_id => p_transaction_step_id
6242: ,p_name =>upper( 'p_mirror_cont_attribute15'));
6243: --
6244: p_mirror_cont_attribute16 :=

Line 6245: hr_transaction_api.get_varchar2_value

6241: (p_transaction_step_id => p_transaction_step_id
6242: ,p_name =>upper( 'p_mirror_cont_attribute15'));
6243: --
6244: p_mirror_cont_attribute16 :=
6245: hr_transaction_api.get_varchar2_value
6246: (p_transaction_step_id => p_transaction_step_id
6247: ,p_name =>upper( 'p_mirror_cont_attribute16'));
6248: --
6249: p_mirror_cont_attribute17 :=

Line 6250: hr_transaction_api.get_varchar2_value

6246: (p_transaction_step_id => p_transaction_step_id
6247: ,p_name =>upper( 'p_mirror_cont_attribute16'));
6248: --
6249: p_mirror_cont_attribute17 :=
6250: hr_transaction_api.get_varchar2_value
6251: (p_transaction_step_id => p_transaction_step_id
6252: ,p_name =>upper( 'p_mirror_cont_attribute17'));
6253: --
6254: p_mirror_cont_attribute18 :=

Line 6255: hr_transaction_api.get_varchar2_value

6251: (p_transaction_step_id => p_transaction_step_id
6252: ,p_name =>upper( 'p_mirror_cont_attribute17'));
6253: --
6254: p_mirror_cont_attribute18 :=
6255: hr_transaction_api.get_varchar2_value
6256: (p_transaction_step_id => p_transaction_step_id
6257: ,p_name =>upper( 'p_mirror_cont_attribute18'));
6258: --
6259: p_mirror_cont_attribute19 :=

Line 6260: hr_transaction_api.get_varchar2_value

6256: (p_transaction_step_id => p_transaction_step_id
6257: ,p_name =>upper( 'p_mirror_cont_attribute18'));
6258: --
6259: p_mirror_cont_attribute19 :=
6260: hr_transaction_api.get_varchar2_value
6261: (p_transaction_step_id => p_transaction_step_id
6262: ,p_name =>upper( 'p_mirror_cont_attribute19'));
6263: --
6264: p_mirror_cont_attribute20 :=

Line 6265: hr_transaction_api.get_varchar2_value

6261: (p_transaction_step_id => p_transaction_step_id
6262: ,p_name =>upper( 'p_mirror_cont_attribute19'));
6263: --
6264: p_mirror_cont_attribute20 :=
6265: hr_transaction_api.get_varchar2_value
6266: (p_transaction_step_id => p_transaction_step_id
6267: ,p_name =>upper( 'p_mirror_cont_attribute20'));
6268: --
6269: /*

Line 6271: hr_transaction_api.get_varchar2_value

6267: ,p_name =>upper( 'p_mirror_cont_attribute20'));
6268: --
6269: /*
6270: p_item_type :=
6271: hr_transaction_api.get_varchar2_value
6272: (p_transaction_step_id => p_transaction_step_id
6273: ,p_name =>upper( 'p_item_type'));
6274: --
6275: p_item_key :=

Line 6276: hr_transaction_api.get_varchar2_value

6272: (p_transaction_step_id => p_transaction_step_id
6273: ,p_name =>upper( 'p_item_type'));
6274: --
6275: p_item_key :=
6276: hr_transaction_api.get_varchar2_value
6277: (p_transaction_step_id => p_transaction_step_id
6278: ,p_name =>upper( 'p_item_key'));
6279: --
6280: p_activity_id :=

Line 6281: hr_transaction_api.get_number_value

6277: (p_transaction_step_id => p_transaction_step_id
6278: ,p_name =>upper( 'p_item_key'));
6279: --
6280: p_activity_id :=
6281: hr_transaction_api.get_number_value
6282: (p_transaction_step_id => p_transaction_step_id
6283: ,p_name =>upper( 'p_activity_id'));
6284: */
6285: --

Line 6287: hr_transaction_api.get_varchar2_value

6283: ,p_name =>upper( 'p_activity_id'));
6284: */
6285: --
6286: p_action :=
6287: hr_transaction_api.get_varchar2_value
6288: (p_transaction_step_id => p_transaction_step_id
6289: ,p_name =>upper( 'p_action'));
6290: --
6291: p_login_person_id :=

Line 6292: hr_transaction_api.get_number_value

6288: (p_transaction_step_id => p_transaction_step_id
6289: ,p_name =>upper( 'p_action'));
6290: --
6291: p_login_person_id :=
6292: hr_transaction_api.get_number_value
6293: (p_transaction_step_id => p_transaction_step_id
6294: ,p_name =>upper( 'p_login_person_id'));
6295: --
6296: p_process_section_name :=

Line 6297: hr_transaction_api.get_varchar2_value

6293: (p_transaction_step_id => p_transaction_step_id
6294: ,p_name =>upper( 'p_login_person_id'));
6295: --
6296: p_process_section_name :=
6297: hr_transaction_api.get_varchar2_value
6298: (p_transaction_step_id => p_transaction_step_id
6299: ,p_name =>upper( 'p_process_section_name'));
6300: --
6301: p_review_page_region_code :=

Line 6302: hr_transaction_api.get_varchar2_value

6298: (p_transaction_step_id => p_transaction_step_id
6299: ,p_name =>upper( 'p_process_section_name'));
6300: --
6301: p_review_page_region_code :=
6302: hr_transaction_api.get_varchar2_value
6303: (p_transaction_step_id => p_transaction_step_id
6304: ,p_name =>upper( 'P_REVIEW_PROC_CALL'));
6305:
6306: --

Line 6308: hr_transaction_api.get_VARCHAR2_value

6304: ,p_name =>upper( 'P_REVIEW_PROC_CALL'));
6305:
6306: --
6307: P_CONT_INFORMATION_CATEGORY :=
6308: hr_transaction_api.get_VARCHAR2_value
6309: (p_transaction_step_id => p_transaction_step_id
6310: ,p_name => 'P_CONT_INFORMATION_CATEGORY');
6311: --
6312: P_CONT_INFORMATION1 :=

Line 6313: hr_transaction_api.get_VARCHAR2_value

6309: (p_transaction_step_id => p_transaction_step_id
6310: ,p_name => 'P_CONT_INFORMATION_CATEGORY');
6311: --
6312: P_CONT_INFORMATION1 :=
6313: hr_transaction_api.get_VARCHAR2_value
6314: (p_transaction_step_id => p_transaction_step_id
6315: ,p_name => 'P_CONT_INFORMATION1');
6316: --
6317: P_CONT_INFORMATION2 :=

Line 6318: hr_transaction_api.get_VARCHAR2_value

6314: (p_transaction_step_id => p_transaction_step_id
6315: ,p_name => 'P_CONT_INFORMATION1');
6316: --
6317: P_CONT_INFORMATION2 :=
6318: hr_transaction_api.get_VARCHAR2_value
6319: (p_transaction_step_id => p_transaction_step_id
6320: ,p_name => 'P_CONT_INFORMATION2');
6321: --
6322: P_CONT_INFORMATION3 :=

Line 6323: hr_transaction_api.get_VARCHAR2_value

6319: (p_transaction_step_id => p_transaction_step_id
6320: ,p_name => 'P_CONT_INFORMATION2');
6321: --
6322: P_CONT_INFORMATION3 :=
6323: hr_transaction_api.get_VARCHAR2_value
6324: (p_transaction_step_id => p_transaction_step_id
6325: ,p_name => 'P_CONT_INFORMATION3');
6326: --
6327: P_CONT_INFORMATION4 :=

Line 6328: hr_transaction_api.get_VARCHAR2_value

6324: (p_transaction_step_id => p_transaction_step_id
6325: ,p_name => 'P_CONT_INFORMATION3');
6326: --
6327: P_CONT_INFORMATION4 :=
6328: hr_transaction_api.get_VARCHAR2_value
6329: (p_transaction_step_id => p_transaction_step_id
6330: ,p_name => 'P_CONT_INFORMATION4');
6331: --
6332: P_CONT_INFORMATION5 :=

Line 6333: hr_transaction_api.get_VARCHAR2_value

6329: (p_transaction_step_id => p_transaction_step_id
6330: ,p_name => 'P_CONT_INFORMATION4');
6331: --
6332: P_CONT_INFORMATION5 :=
6333: hr_transaction_api.get_VARCHAR2_value
6334: (p_transaction_step_id => p_transaction_step_id
6335: ,p_name => 'P_CONT_INFORMATION5');
6336: --
6337: P_CONT_INFORMATION6 :=

Line 6338: hr_transaction_api.get_VARCHAR2_value

6334: (p_transaction_step_id => p_transaction_step_id
6335: ,p_name => 'P_CONT_INFORMATION5');
6336: --
6337: P_CONT_INFORMATION6 :=
6338: hr_transaction_api.get_VARCHAR2_value
6339: (p_transaction_step_id => p_transaction_step_id
6340: ,p_name => 'P_CONT_INFORMATION6');
6341: --
6342: P_CONT_INFORMATION7 :=

Line 6343: hr_transaction_api.get_VARCHAR2_value

6339: (p_transaction_step_id => p_transaction_step_id
6340: ,p_name => 'P_CONT_INFORMATION6');
6341: --
6342: P_CONT_INFORMATION7 :=
6343: hr_transaction_api.get_VARCHAR2_value
6344: (p_transaction_step_id => p_transaction_step_id
6345: ,p_name => 'P_CONT_INFORMATION7');
6346: --
6347: P_CONT_INFORMATION8 :=

Line 6348: hr_transaction_api.get_VARCHAR2_value

6344: (p_transaction_step_id => p_transaction_step_id
6345: ,p_name => 'P_CONT_INFORMATION7');
6346: --
6347: P_CONT_INFORMATION8 :=
6348: hr_transaction_api.get_VARCHAR2_value
6349: (p_transaction_step_id => p_transaction_step_id
6350: ,p_name => 'P_CONT_INFORMATION8');
6351: --
6352: P_CONT_INFORMATION9 :=

Line 6353: hr_transaction_api.get_VARCHAR2_value

6349: (p_transaction_step_id => p_transaction_step_id
6350: ,p_name => 'P_CONT_INFORMATION8');
6351: --
6352: P_CONT_INFORMATION9 :=
6353: hr_transaction_api.get_VARCHAR2_value
6354: (p_transaction_step_id => p_transaction_step_id
6355: ,p_name => 'P_CONT_INFORMATION9');
6356: --
6357: P_CONT_INFORMATION10 :=

Line 6358: hr_transaction_api.get_VARCHAR2_value

6354: (p_transaction_step_id => p_transaction_step_id
6355: ,p_name => 'P_CONT_INFORMATION9');
6356: --
6357: P_CONT_INFORMATION10 :=
6358: hr_transaction_api.get_VARCHAR2_value
6359: (p_transaction_step_id => p_transaction_step_id
6360: ,p_name => 'P_CONT_INFORMATION10');
6361: --
6362: P_CONT_INFORMATION11 :=

Line 6363: hr_transaction_api.get_VARCHAR2_value

6359: (p_transaction_step_id => p_transaction_step_id
6360: ,p_name => 'P_CONT_INFORMATION10');
6361: --
6362: P_CONT_INFORMATION11 :=
6363: hr_transaction_api.get_VARCHAR2_value
6364: (p_transaction_step_id => p_transaction_step_id
6365: ,p_name => 'P_CONT_INFORMATION11');
6366: --
6367: P_CONT_INFORMATION12 :=

Line 6368: hr_transaction_api.get_VARCHAR2_value

6364: (p_transaction_step_id => p_transaction_step_id
6365: ,p_name => 'P_CONT_INFORMATION11');
6366: --
6367: P_CONT_INFORMATION12 :=
6368: hr_transaction_api.get_VARCHAR2_value
6369: (p_transaction_step_id => p_transaction_step_id
6370: ,p_name => 'P_CONT_INFORMATION12');
6371: --
6372: P_CONT_INFORMATION13 :=

Line 6373: hr_transaction_api.get_VARCHAR2_value

6369: (p_transaction_step_id => p_transaction_step_id
6370: ,p_name => 'P_CONT_INFORMATION12');
6371: --
6372: P_CONT_INFORMATION13 :=
6373: hr_transaction_api.get_VARCHAR2_value
6374: (p_transaction_step_id => p_transaction_step_id
6375: ,p_name => 'P_CONT_INFORMATION13');
6376: --
6377: P_CONT_INFORMATION14 :=

Line 6378: hr_transaction_api.get_VARCHAR2_value

6374: (p_transaction_step_id => p_transaction_step_id
6375: ,p_name => 'P_CONT_INFORMATION13');
6376: --
6377: P_CONT_INFORMATION14 :=
6378: hr_transaction_api.get_VARCHAR2_value
6379: (p_transaction_step_id => p_transaction_step_id
6380: ,p_name => 'P_CONT_INFORMATION14');
6381: --
6382: P_CONT_INFORMATION15 :=

Line 6383: hr_transaction_api.get_VARCHAR2_value

6379: (p_transaction_step_id => p_transaction_step_id
6380: ,p_name => 'P_CONT_INFORMATION14');
6381: --
6382: P_CONT_INFORMATION15 :=
6383: hr_transaction_api.get_VARCHAR2_value
6384: (p_transaction_step_id => p_transaction_step_id
6385: ,p_name => 'P_CONT_INFORMATION15');
6386: --
6387: P_CONT_INFORMATION16 :=

Line 6388: hr_transaction_api.get_VARCHAR2_value

6384: (p_transaction_step_id => p_transaction_step_id
6385: ,p_name => 'P_CONT_INFORMATION15');
6386: --
6387: P_CONT_INFORMATION16 :=
6388: hr_transaction_api.get_VARCHAR2_value
6389: (p_transaction_step_id => p_transaction_step_id
6390: ,p_name => 'P_CONT_INFORMATION16');
6391: --
6392: P_CONT_INFORMATION17 :=

Line 6393: hr_transaction_api.get_VARCHAR2_value

6389: (p_transaction_step_id => p_transaction_step_id
6390: ,p_name => 'P_CONT_INFORMATION16');
6391: --
6392: P_CONT_INFORMATION17 :=
6393: hr_transaction_api.get_VARCHAR2_value
6394: (p_transaction_step_id => p_transaction_step_id
6395: ,p_name => 'P_CONT_INFORMATION17');
6396: --
6397: P_CONT_INFORMATION18 :=

Line 6398: hr_transaction_api.get_VARCHAR2_value

6394: (p_transaction_step_id => p_transaction_step_id
6395: ,p_name => 'P_CONT_INFORMATION17');
6396: --
6397: P_CONT_INFORMATION18 :=
6398: hr_transaction_api.get_VARCHAR2_value
6399: (p_transaction_step_id => p_transaction_step_id
6400: ,p_name => 'P_CONT_INFORMATION18');
6401: --
6402: P_CONT_INFORMATION19 :=

Line 6403: hr_transaction_api.get_VARCHAR2_value

6399: (p_transaction_step_id => p_transaction_step_id
6400: ,p_name => 'P_CONT_INFORMATION18');
6401: --
6402: P_CONT_INFORMATION19 :=
6403: hr_transaction_api.get_VARCHAR2_value
6404: (p_transaction_step_id => p_transaction_step_id
6405: ,p_name => 'P_CONT_INFORMATION19');
6406: --
6407: P_CONT_INFORMATION20 :=

Line 6408: hr_transaction_api.get_VARCHAR2_value

6404: (p_transaction_step_id => p_transaction_step_id
6405: ,p_name => 'P_CONT_INFORMATION19');
6406: --
6407: P_CONT_INFORMATION20 :=
6408: hr_transaction_api.get_VARCHAR2_value
6409: (p_transaction_step_id => p_transaction_step_id
6410: ,p_name => 'P_CONT_INFORMATION20');
6411: --
6412: hr_utility.set_location('End of setting the attributes:'||l_proc,15 );

Line 6934: l_main_per_date_of_birth := hr_transaction_api.get_date_value

6930: where hats1.item_type = 'HRSSA'
6931: and hats1.item_key = p_item_key
6932: and hats1.api_name in( 'HR_PROCESS_PERSON_SS.PROCESS_API', 'BEN_PROCESS_COBRA_PERSON_SS.PROCESS_API');
6933:
6934: l_main_per_date_of_birth := hr_transaction_api.get_date_value
6935: (p_transaction_step_id => l_validate_g_per_step_id
6936: ,p_name => 'P_DATE_OF_BIRTH') ;
6937:
6938: l_main_per_eff_start_date := hr_transaction_api.get_date_value

Line 6938: l_main_per_eff_start_date := hr_transaction_api.get_date_value

6934: l_main_per_date_of_birth := hr_transaction_api.get_date_value
6935: (p_transaction_step_id => l_validate_g_per_step_id
6936: ,p_name => 'P_DATE_OF_BIRTH') ;
6937:
6938: l_main_per_eff_start_date := hr_transaction_api.get_date_value
6939: (p_transaction_step_id => l_validate_g_per_step_id
6940: ,p_name => 'P_EFFECTIVE_DATE');
6941:
6942: exception

Line 7510: hr_transaction_api.create_transaction_step

7506: END IF;
7507: --
7508: -- Create a transaction step
7509: --
7510: hr_transaction_api.create_transaction_step
7511: (p_validate => false
7512: ,p_creator_person_id => nvl(p_login_person_id, p_person_id)
7513: ,p_transaction_id => l_transaction_id
7514: ,p_api_name => g_package || '.PROCESS_CREATE_CONTACT_API'

Line 9628: l_person_id := hr_transaction_api.get_number_value

9624: --
9625: -- Get the person_id first. If it is null, that means we'll create a new
9626: -- contact. If it is not null, error out.
9627:
9628: l_person_id := hr_transaction_api.get_number_value
9629: (p_transaction_step_id => p_transaction_step_id
9630: ,p_name => 'P_PERSON_ID');
9631: --
9632: -- StartRegistration

Line 9651: l_con_rec_changed := hr_transaction_api.get_VARCHAR2_value

9647: --
9648: -- EndRegistration
9649: --
9650: begin
9651: l_con_rec_changed := hr_transaction_api.get_VARCHAR2_value
9652: (p_transaction_step_id => p_transaction_step_id
9653: ,p_name => 'P_CONT_REC_CHANGED') ;
9654: exception when others then
9655: hr_utility.set_location('Exception Others:'||l_proc,555);

Line 9659: l_effective_date := hr_transaction_api.get_DATE_value

9655: hr_utility.set_location('Exception Others:'||l_proc,555);
9656: l_con_rec_changed := 'NOTCHANGED';
9657: end;
9658: --
9659: l_effective_date := hr_transaction_api.get_DATE_value
9660: (p_transaction_step_id => p_transaction_step_id
9661: ,p_name => 'P_START_DATE') ;
9662: --
9663: -- SFL changes.

Line 9682: l_effective_date := hr_transaction_api.get_DATE_value

9678: --
9679: if not p_validate then
9680: --
9681: hr_utility.set_location('if not p_validate then:'||l_proc,20 );
9682: l_effective_date := hr_transaction_api.get_DATE_value
9683: (p_transaction_step_id => p_transaction_step_id
9684: ,p_name => 'P_START_DATE');
9685: --
9686: end if;

Line 9692: l_contact_type := hr_transaction_api.get_VARCHAR2_value

9688: --
9689: -- Bug 1919795 : create mirror relationship for contact types of
9690: -- P,C,S.
9691: --
9692: l_contact_type := hr_transaction_api.get_VARCHAR2_value
9693: (p_transaction_step_id => p_transaction_step_id
9694: ,p_name => 'P_CONTACT_TYPE');
9695: --
9696: l_MIRROR_TYPE := hr_transaction_api.get_VARCHAR2_value

Line 9696: l_MIRROR_TYPE := hr_transaction_api.get_VARCHAR2_value

9692: l_contact_type := hr_transaction_api.get_VARCHAR2_value
9693: (p_transaction_step_id => p_transaction_step_id
9694: ,p_name => 'P_CONTACT_TYPE');
9695: --
9696: l_MIRROR_TYPE := hr_transaction_api.get_VARCHAR2_value
9697: (p_transaction_step_id => p_transaction_step_id
9698: ,p_name => 'P_MIRROR_TYPE');
9699: --
9700: l_CREATE_MIRROR_FLAG := hr_transaction_api.get_VARCHAR2_value

Line 9700: l_CREATE_MIRROR_FLAG := hr_transaction_api.get_VARCHAR2_value

9696: l_MIRROR_TYPE := hr_transaction_api.get_VARCHAR2_value
9697: (p_transaction_step_id => p_transaction_step_id
9698: ,p_name => 'P_MIRROR_TYPE');
9699: --
9700: l_CREATE_MIRROR_FLAG := hr_transaction_api.get_VARCHAR2_value
9701: (p_transaction_step_id => p_transaction_step_id
9702: ,p_name => 'P_MIRROR_TYPE');
9703: --
9704: if l_contact_type in ('P', 'C', 'S') then

Line 9719: l_contact_operation := hr_transaction_api.get_VARCHAR2_value

9715: --
9716: end if;
9717: --
9718: --
9719: l_contact_operation := hr_transaction_api.get_VARCHAR2_value
9720: (p_transaction_step_id => p_transaction_step_id
9721: ,p_name => 'P_CONTACT_OPERATION');
9722: --
9723: l_dpdnt_bnf_flag := hr_transaction_api.get_VARCHAR2_value

Line 9723: l_dpdnt_bnf_flag := hr_transaction_api.get_VARCHAR2_value

9719: l_contact_operation := hr_transaction_api.get_VARCHAR2_value
9720: (p_transaction_step_id => p_transaction_step_id
9721: ,p_name => 'P_CONTACT_OPERATION');
9722: --
9723: l_dpdnt_bnf_flag := hr_transaction_api.get_VARCHAR2_value
9724: (p_transaction_step_id => p_transaction_step_id
9725: ,p_name => 'P_DPDNT_BNF_FLAG');
9726: --
9727: l_emrg_cont_flag := hr_transaction_api.get_VARCHAR2_value

Line 9727: l_emrg_cont_flag := hr_transaction_api.get_VARCHAR2_value

9723: l_dpdnt_bnf_flag := hr_transaction_api.get_VARCHAR2_value
9724: (p_transaction_step_id => p_transaction_step_id
9725: ,p_name => 'P_DPDNT_BNF_FLAG');
9726: --
9727: l_emrg_cont_flag := hr_transaction_api.get_VARCHAR2_value
9728: (p_transaction_step_id => p_transaction_step_id
9729: ,p_name => 'P_EMRG_CONT_FLAG');
9730: --
9731: l_personal_flag := hr_transaction_api.get_VARCHAR2_value

Line 9731: l_personal_flag := hr_transaction_api.get_VARCHAR2_value

9727: l_emrg_cont_flag := hr_transaction_api.get_VARCHAR2_value
9728: (p_transaction_step_id => p_transaction_step_id
9729: ,p_name => 'P_EMRG_CONT_FLAG');
9730: --
9731: l_personal_flag := hr_transaction_api.get_VARCHAR2_value
9732: (p_transaction_step_id => p_transaction_step_id
9733: ,p_name => 'P_PERSONAL_FLAG');
9734: --
9735: l_primary_contact_flag :=hr_transaction_api.get_VARCHAR2_value

Line 9735: l_primary_contact_flag :=hr_transaction_api.get_VARCHAR2_value

9731: l_personal_flag := hr_transaction_api.get_VARCHAR2_value
9732: (p_transaction_step_id => p_transaction_step_id
9733: ,p_name => 'P_PERSONAL_FLAG');
9734: --
9735: l_primary_contact_flag :=hr_transaction_api.get_VARCHAR2_value
9736: (p_transaction_step_id => p_transaction_step_id
9737: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
9738: --
9739:

Line 9741: z_date_start := hr_transaction_api.get_DATE_value

9737: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
9738: --
9739:
9740:
9741: z_date_start := hr_transaction_api.get_DATE_value
9742: (p_transaction_step_id => p_transaction_step_id
9743: ,p_name => 'P_DATE_START');
9744:
9745:

Line 9758: z_date_end := hr_transaction_api.get_DATE_value

9754: l_dpdnt_bnf_personal_flag := 'Y';
9755: --
9756: end if;
9757:
9758: z_date_end := hr_transaction_api.get_DATE_value
9759: (p_transaction_step_id => p_transaction_step_id
9760: ,p_name => 'P_DATE_END');
9761:
9762: if l_primary_contact_flag = 'Y' then --9564383

Line 9804: hr_transaction_api.get_NUMBER_value

9800: --
9801: ,P_START_DATE => l_effective_date
9802: --
9803: ,P_BUSINESS_GROUP_ID =>
9804: hr_transaction_api.get_NUMBER_value
9805: (p_transaction_step_id => p_transaction_step_id
9806: ,p_name => 'P_BUSINESS_GROUP_ID')
9807: --
9808: ,P_PERSON_ID => l_person_id

Line 9810: hr_transaction_api.get_NUMBER_value

9806: ,p_name => 'P_BUSINESS_GROUP_ID')
9807: --
9808: ,P_PERSON_ID => l_person_id
9809: /* StartRegistration
9810: hr_transaction_api.get_NUMBER_value
9811: (p_transaction_step_id => p_transaction_step_id
9812: ,p_name => 'P_PERSON_ID')
9813: EndRegistration */
9814: --

Line 9819: hr_transaction_api.get_NUMBER_value

9815: -- 9999 In case of P_CONTACT_PERSON_ID is -1 then
9816: -- pass null value rather than -1
9817: --
9818: ,P_CONTACT_PERSON_ID =>
9819: hr_transaction_api.get_NUMBER_value
9820: (p_transaction_step_id => p_transaction_step_id
9821: ,p_name => 'P_CONTACT_PERSON_ID')
9822: --
9823: ,P_CONTACT_TYPE => l_contact_type /*

Line 9824: hr_transaction_api.get_VARCHAR2_value

9820: (p_transaction_step_id => p_transaction_step_id
9821: ,p_name => 'P_CONTACT_PERSON_ID')
9822: --
9823: ,P_CONTACT_TYPE => l_contact_type /*
9824: hr_transaction_api.get_VARCHAR2_value
9825: (p_transaction_step_id => p_transaction_step_id
9826: ,p_name => 'P_CONTACT_TYPE') */
9827: --
9828: ,P_CTR_COMMENTS =>

Line 9829: hr_transaction_api.get_VARCHAR2_value

9825: (p_transaction_step_id => p_transaction_step_id
9826: ,p_name => 'P_CONTACT_TYPE') */
9827: --
9828: ,P_CTR_COMMENTS =>
9829: hr_transaction_api.get_VARCHAR2_value
9830: (p_transaction_step_id => p_transaction_step_id
9831: ,p_name => 'P_CTR_COMMENTS')
9832: --
9833: ,P_PRIMARY_CONTACT_FLAG => l_primary_contact_flag /*

Line 9834: hr_transaction_api.get_VARCHAR2_value

9830: (p_transaction_step_id => p_transaction_step_id
9831: ,p_name => 'P_CTR_COMMENTS')
9832: --
9833: ,P_PRIMARY_CONTACT_FLAG => l_primary_contact_flag /*
9834: hr_transaction_api.get_VARCHAR2_value
9835: (p_transaction_step_id => p_transaction_step_id
9836: ,p_name => 'P_PRIMARY_CONTACT_FLAG') */
9837: --
9838: ,P_DATE_START => z_date_start

Line 9841: hr_transaction_api.get_NUMBER_value

9837: --
9838: ,P_DATE_START => z_date_start
9839: --
9840: ,P_START_LIFE_REASON_ID =>
9841: hr_transaction_api.get_NUMBER_value
9842: (p_transaction_step_id => p_transaction_step_id
9843: ,p_name => 'P_START_LIFE_REASON_ID')
9844: --
9845: ,P_DATE_END =>

Line 9846: hr_transaction_api.get_DATE_value

9842: (p_transaction_step_id => p_transaction_step_id
9843: ,p_name => 'P_START_LIFE_REASON_ID')
9844: --
9845: ,P_DATE_END =>
9846: hr_transaction_api.get_DATE_value
9847: (p_transaction_step_id => p_transaction_step_id
9848: ,p_name => 'P_DATE_END')
9849: --
9850: ,P_END_LIFE_REASON_ID =>

Line 9851: hr_transaction_api.get_NUMBER_value

9847: (p_transaction_step_id => p_transaction_step_id
9848: ,p_name => 'P_DATE_END')
9849: --
9850: ,P_END_LIFE_REASON_ID =>
9851: hr_transaction_api.get_NUMBER_value
9852: (p_transaction_step_id => p_transaction_step_id
9853: ,p_name => 'P_END_LIFE_REASON_ID')
9854: --
9855: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 9856: hr_transaction_api.get_VARCHAR2_value

9852: (p_transaction_step_id => p_transaction_step_id
9853: ,p_name => 'P_END_LIFE_REASON_ID')
9854: --
9855: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
9856: hr_transaction_api.get_VARCHAR2_value
9857: (p_transaction_step_id => p_transaction_step_id
9858: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
9859: --
9860: ,P_PERSONAL_FLAG => l_personal_flag /*

Line 9861: hr_transaction_api.get_VARCHAR2_value

9857: (p_transaction_step_id => p_transaction_step_id
9858: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
9859: --
9860: ,P_PERSONAL_FLAG => l_personal_flag /*
9861: hr_transaction_api.get_VARCHAR2_value
9862: (p_transaction_step_id => p_transaction_step_id
9863: ,p_name => 'P_PERSONAL_FLAG') */
9864: --
9865: ,P_SEQUENCE_NUMBER =>

Line 9866: hr_transaction_api.get_NUMBER_value

9862: (p_transaction_step_id => p_transaction_step_id
9863: ,p_name => 'P_PERSONAL_FLAG') */
9864: --
9865: ,P_SEQUENCE_NUMBER =>
9866: hr_transaction_api.get_NUMBER_value
9867: (p_transaction_step_id => p_transaction_step_id
9868: ,p_name => 'P_SEQUENCE_NUMBER')
9869: --
9870: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 9871: hr_transaction_api.get_VARCHAR2_value

9867: (p_transaction_step_id => p_transaction_step_id
9868: ,p_name => 'P_SEQUENCE_NUMBER')
9869: --
9870: ,P_CONT_ATTRIBUTE_CATEGORY =>
9871: hr_transaction_api.get_VARCHAR2_value
9872: (p_transaction_step_id => p_transaction_step_id
9873: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
9874: --
9875: ,P_CONT_ATTRIBUTE1 =>

Line 9876: hr_transaction_api.get_VARCHAR2_value

9872: (p_transaction_step_id => p_transaction_step_id
9873: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
9874: --
9875: ,P_CONT_ATTRIBUTE1 =>
9876: hr_transaction_api.get_VARCHAR2_value
9877: (p_transaction_step_id => p_transaction_step_id
9878: ,p_name => 'P_CONT_ATTRIBUTE1')
9879: --
9880: ,P_CONT_ATTRIBUTE2 =>

Line 9881: hr_transaction_api.get_VARCHAR2_value

9877: (p_transaction_step_id => p_transaction_step_id
9878: ,p_name => 'P_CONT_ATTRIBUTE1')
9879: --
9880: ,P_CONT_ATTRIBUTE2 =>
9881: hr_transaction_api.get_VARCHAR2_value
9882: (p_transaction_step_id => p_transaction_step_id
9883: ,p_name => 'P_CONT_ATTRIBUTE2')
9884: --
9885: ,P_CONT_ATTRIBUTE3 =>

Line 9886: hr_transaction_api.get_VARCHAR2_value

9882: (p_transaction_step_id => p_transaction_step_id
9883: ,p_name => 'P_CONT_ATTRIBUTE2')
9884: --
9885: ,P_CONT_ATTRIBUTE3 =>
9886: hr_transaction_api.get_VARCHAR2_value
9887: (p_transaction_step_id => p_transaction_step_id
9888: ,p_name => 'P_CONT_ATTRIBUTE3')
9889: --
9890: ,P_CONT_ATTRIBUTE4 =>

Line 9891: hr_transaction_api.get_VARCHAR2_value

9887: (p_transaction_step_id => p_transaction_step_id
9888: ,p_name => 'P_CONT_ATTRIBUTE3')
9889: --
9890: ,P_CONT_ATTRIBUTE4 =>
9891: hr_transaction_api.get_VARCHAR2_value
9892: (p_transaction_step_id => p_transaction_step_id
9893: ,p_name => 'P_CONT_ATTRIBUTE4')
9894: --
9895: ,P_CONT_ATTRIBUTE5 =>

Line 9896: hr_transaction_api.get_VARCHAR2_value

9892: (p_transaction_step_id => p_transaction_step_id
9893: ,p_name => 'P_CONT_ATTRIBUTE4')
9894: --
9895: ,P_CONT_ATTRIBUTE5 =>
9896: hr_transaction_api.get_VARCHAR2_value
9897: (p_transaction_step_id => p_transaction_step_id
9898: ,p_name => 'P_CONT_ATTRIBUTE5')
9899: --
9900: ,P_CONT_ATTRIBUTE6 =>

Line 9901: hr_transaction_api.get_VARCHAR2_value

9897: (p_transaction_step_id => p_transaction_step_id
9898: ,p_name => 'P_CONT_ATTRIBUTE5')
9899: --
9900: ,P_CONT_ATTRIBUTE6 =>
9901: hr_transaction_api.get_VARCHAR2_value
9902: (p_transaction_step_id => p_transaction_step_id
9903: ,p_name => 'P_CONT_ATTRIBUTE6')
9904: --
9905: ,P_CONT_ATTRIBUTE7 =>

Line 9906: hr_transaction_api.get_VARCHAR2_value

9902: (p_transaction_step_id => p_transaction_step_id
9903: ,p_name => 'P_CONT_ATTRIBUTE6')
9904: --
9905: ,P_CONT_ATTRIBUTE7 =>
9906: hr_transaction_api.get_VARCHAR2_value
9907: (p_transaction_step_id => p_transaction_step_id
9908: ,p_name => 'P_CONT_ATTRIBUTE7')
9909: --
9910: ,P_CONT_ATTRIBUTE8 =>

Line 9911: hr_transaction_api.get_VARCHAR2_value

9907: (p_transaction_step_id => p_transaction_step_id
9908: ,p_name => 'P_CONT_ATTRIBUTE7')
9909: --
9910: ,P_CONT_ATTRIBUTE8 =>
9911: hr_transaction_api.get_VARCHAR2_value
9912: (p_transaction_step_id => p_transaction_step_id
9913: ,p_name => 'P_CONT_ATTRIBUTE8')
9914: --
9915: ,P_CONT_ATTRIBUTE9 =>

Line 9916: hr_transaction_api.get_VARCHAR2_value

9912: (p_transaction_step_id => p_transaction_step_id
9913: ,p_name => 'P_CONT_ATTRIBUTE8')
9914: --
9915: ,P_CONT_ATTRIBUTE9 =>
9916: hr_transaction_api.get_VARCHAR2_value
9917: (p_transaction_step_id => p_transaction_step_id
9918: ,p_name => 'P_CONT_ATTRIBUTE9')
9919: --
9920: ,P_CONT_ATTRIBUTE10 =>

Line 9921: hr_transaction_api.get_VARCHAR2_value

9917: (p_transaction_step_id => p_transaction_step_id
9918: ,p_name => 'P_CONT_ATTRIBUTE9')
9919: --
9920: ,P_CONT_ATTRIBUTE10 =>
9921: hr_transaction_api.get_VARCHAR2_value
9922: (p_transaction_step_id => p_transaction_step_id
9923: ,p_name => 'P_CONT_ATTRIBUTE10')
9924: --
9925: ,P_CONT_ATTRIBUTE11 =>

Line 9926: hr_transaction_api.get_VARCHAR2_value

9922: (p_transaction_step_id => p_transaction_step_id
9923: ,p_name => 'P_CONT_ATTRIBUTE10')
9924: --
9925: ,P_CONT_ATTRIBUTE11 =>
9926: hr_transaction_api.get_VARCHAR2_value
9927: (p_transaction_step_id => p_transaction_step_id
9928: ,p_name => 'P_CONT_ATTRIBUTE11')
9929: --
9930: ,P_CONT_ATTRIBUTE12 =>

Line 9931: hr_transaction_api.get_VARCHAR2_value

9927: (p_transaction_step_id => p_transaction_step_id
9928: ,p_name => 'P_CONT_ATTRIBUTE11')
9929: --
9930: ,P_CONT_ATTRIBUTE12 =>
9931: hr_transaction_api.get_VARCHAR2_value
9932: (p_transaction_step_id => p_transaction_step_id
9933: ,p_name => 'P_CONT_ATTRIBUTE12')
9934: --
9935: ,P_CONT_ATTRIBUTE13 =>

Line 9936: hr_transaction_api.get_VARCHAR2_value

9932: (p_transaction_step_id => p_transaction_step_id
9933: ,p_name => 'P_CONT_ATTRIBUTE12')
9934: --
9935: ,P_CONT_ATTRIBUTE13 =>
9936: hr_transaction_api.get_VARCHAR2_value
9937: (p_transaction_step_id => p_transaction_step_id
9938: ,p_name => 'P_CONT_ATTRIBUTE13')
9939: --
9940: ,P_CONT_ATTRIBUTE14 =>

Line 9941: hr_transaction_api.get_VARCHAR2_value

9937: (p_transaction_step_id => p_transaction_step_id
9938: ,p_name => 'P_CONT_ATTRIBUTE13')
9939: --
9940: ,P_CONT_ATTRIBUTE14 =>
9941: hr_transaction_api.get_VARCHAR2_value
9942: (p_transaction_step_id => p_transaction_step_id
9943: ,p_name => 'P_CONT_ATTRIBUTE14')
9944: --
9945: ,P_CONT_ATTRIBUTE15 =>

Line 9946: hr_transaction_api.get_VARCHAR2_value

9942: (p_transaction_step_id => p_transaction_step_id
9943: ,p_name => 'P_CONT_ATTRIBUTE14')
9944: --
9945: ,P_CONT_ATTRIBUTE15 =>
9946: hr_transaction_api.get_VARCHAR2_value
9947: (p_transaction_step_id => p_transaction_step_id
9948: ,p_name => 'P_CONT_ATTRIBUTE15')
9949: --
9950: ,P_CONT_ATTRIBUTE16 =>

Line 9951: hr_transaction_api.get_VARCHAR2_value

9947: (p_transaction_step_id => p_transaction_step_id
9948: ,p_name => 'P_CONT_ATTRIBUTE15')
9949: --
9950: ,P_CONT_ATTRIBUTE16 =>
9951: hr_transaction_api.get_VARCHAR2_value
9952: (p_transaction_step_id => p_transaction_step_id
9953: ,p_name => 'P_CONT_ATTRIBUTE16')
9954: --
9955: ,P_CONT_ATTRIBUTE17 =>

Line 9956: hr_transaction_api.get_VARCHAR2_value

9952: (p_transaction_step_id => p_transaction_step_id
9953: ,p_name => 'P_CONT_ATTRIBUTE16')
9954: --
9955: ,P_CONT_ATTRIBUTE17 =>
9956: hr_transaction_api.get_VARCHAR2_value
9957: (p_transaction_step_id => p_transaction_step_id
9958: ,p_name => 'P_CONT_ATTRIBUTE17')
9959: --
9960: ,P_CONT_ATTRIBUTE18 =>

Line 9961: hr_transaction_api.get_VARCHAR2_value

9957: (p_transaction_step_id => p_transaction_step_id
9958: ,p_name => 'P_CONT_ATTRIBUTE17')
9959: --
9960: ,P_CONT_ATTRIBUTE18 =>
9961: hr_transaction_api.get_VARCHAR2_value
9962: (p_transaction_step_id => p_transaction_step_id
9963: ,p_name => 'P_CONT_ATTRIBUTE18')
9964: --
9965: ,P_CONT_ATTRIBUTE19 =>

Line 9966: hr_transaction_api.get_VARCHAR2_value

9962: (p_transaction_step_id => p_transaction_step_id
9963: ,p_name => 'P_CONT_ATTRIBUTE18')
9964: --
9965: ,P_CONT_ATTRIBUTE19 =>
9966: hr_transaction_api.get_VARCHAR2_value
9967: (p_transaction_step_id => p_transaction_step_id
9968: ,p_name => 'P_CONT_ATTRIBUTE19')
9969: --
9970: ,P_CONT_ATTRIBUTE20 =>

Line 9971: hr_transaction_api.get_VARCHAR2_value

9967: (p_transaction_step_id => p_transaction_step_id
9968: ,p_name => 'P_CONT_ATTRIBUTE19')
9969: --
9970: ,P_CONT_ATTRIBUTE20 =>
9971: hr_transaction_api.get_VARCHAR2_value
9972: (p_transaction_step_id => p_transaction_step_id
9973: ,p_name => 'P_CONT_ATTRIBUTE20')
9974: --
9975: ,P_THIRD_PARTY_PAY_FLAG =>

Line 9976: hr_transaction_api.get_VARCHAR2_value

9972: (p_transaction_step_id => p_transaction_step_id
9973: ,p_name => 'P_CONT_ATTRIBUTE20')
9974: --
9975: ,P_THIRD_PARTY_PAY_FLAG =>
9976: hr_transaction_api.get_VARCHAR2_value
9977: (p_transaction_step_id => p_transaction_step_id
9978: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
9979: --
9980: ,P_BONDHOLDER_FLAG =>

Line 9981: hr_transaction_api.get_VARCHAR2_value

9977: (p_transaction_step_id => p_transaction_step_id
9978: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
9979: --
9980: ,P_BONDHOLDER_FLAG =>
9981: hr_transaction_api.get_VARCHAR2_value
9982: (p_transaction_step_id => p_transaction_step_id
9983: ,p_name => 'P_BONDHOLDER_FLAG')
9984: --
9985: ,P_DEPENDENT_FLAG =>

Line 9986: hr_transaction_api.get_VARCHAR2_value

9982: (p_transaction_step_id => p_transaction_step_id
9983: ,p_name => 'P_BONDHOLDER_FLAG')
9984: --
9985: ,P_DEPENDENT_FLAG =>
9986: hr_transaction_api.get_VARCHAR2_value
9987: (p_transaction_step_id => p_transaction_step_id
9988: ,p_name => 'P_DEPENDENT_FLAG')
9989: --
9990: ,P_BENEFICIARY_FLAG =>

Line 9991: hr_transaction_api.get_VARCHAR2_value

9987: (p_transaction_step_id => p_transaction_step_id
9988: ,p_name => 'P_DEPENDENT_FLAG')
9989: --
9990: ,P_BENEFICIARY_FLAG =>
9991: hr_transaction_api.get_VARCHAR2_value
9992: (p_transaction_step_id => p_transaction_step_id
9993: ,p_name => 'P_BENEFICIARY_FLAG')
9994: --
9995: ,P_LAST_NAME =>

Line 9996: hr_transaction_api.get_VARCHAR2_value

9992: (p_transaction_step_id => p_transaction_step_id
9993: ,p_name => 'P_BENEFICIARY_FLAG')
9994: --
9995: ,P_LAST_NAME =>
9996: hr_transaction_api.get_VARCHAR2_value
9997: (p_transaction_step_id => p_transaction_step_id
9998: ,p_name => 'P_LAST_NAME')
9999: --
10000: ,P_SEX =>

Line 10001: hr_transaction_api.get_VARCHAR2_value

9997: (p_transaction_step_id => p_transaction_step_id
9998: ,p_name => 'P_LAST_NAME')
9999: --
10000: ,P_SEX =>
10001: hr_transaction_api.get_VARCHAR2_value
10002: (p_transaction_step_id => p_transaction_step_id
10003: ,p_name => 'P_SEX')
10004: --
10005: ,P_PERSON_TYPE_ID =>

Line 10006: hr_transaction_api.get_NUMBER_value

10002: (p_transaction_step_id => p_transaction_step_id
10003: ,p_name => 'P_SEX')
10004: --
10005: ,P_PERSON_TYPE_ID =>
10006: hr_transaction_api.get_NUMBER_value
10007: (p_transaction_step_id => p_transaction_step_id
10008: ,p_name => 'P_PERSON_TYPE_ID')
10009: --
10010: ,P_PER_COMMENTS =>

Line 10011: hr_transaction_api.get_VARCHAR2_value

10007: (p_transaction_step_id => p_transaction_step_id
10008: ,p_name => 'P_PERSON_TYPE_ID')
10009: --
10010: ,P_PER_COMMENTS =>
10011: hr_transaction_api.get_VARCHAR2_value
10012: (p_transaction_step_id => p_transaction_step_id
10013: ,p_name => 'P_PER_COMMENTS')
10014: --
10015: ,P_DATE_OF_BIRTH =>

Line 10016: hr_transaction_api.get_DATE_value

10012: (p_transaction_step_id => p_transaction_step_id
10013: ,p_name => 'P_PER_COMMENTS')
10014: --
10015: ,P_DATE_OF_BIRTH =>
10016: hr_transaction_api.get_DATE_value
10017: (p_transaction_step_id => p_transaction_step_id
10018: ,p_name => 'P_DATE_OF_BIRTH')
10019: --
10020: ,P_EMAIL_ADDRESS =>

Line 10021: hr_transaction_api.get_VARCHAR2_value

10017: (p_transaction_step_id => p_transaction_step_id
10018: ,p_name => 'P_DATE_OF_BIRTH')
10019: --
10020: ,P_EMAIL_ADDRESS =>
10021: hr_transaction_api.get_VARCHAR2_value
10022: (p_transaction_step_id => p_transaction_step_id
10023: ,p_name => 'P_EMAIL_ADDRESS')
10024: --
10025: ,P_FIRST_NAME =>

Line 10026: hr_transaction_api.get_VARCHAR2_value

10022: (p_transaction_step_id => p_transaction_step_id
10023: ,p_name => 'P_EMAIL_ADDRESS')
10024: --
10025: ,P_FIRST_NAME =>
10026: hr_transaction_api.get_VARCHAR2_value
10027: (p_transaction_step_id => p_transaction_step_id
10028: ,p_name => 'P_FIRST_NAME')
10029: --
10030: ,P_KNOWN_AS =>

Line 10031: hr_transaction_api.get_VARCHAR2_value

10027: (p_transaction_step_id => p_transaction_step_id
10028: ,p_name => 'P_FIRST_NAME')
10029: --
10030: ,P_KNOWN_AS =>
10031: hr_transaction_api.get_VARCHAR2_value
10032: (p_transaction_step_id => p_transaction_step_id
10033: ,p_name => 'P_KNOWN_AS')
10034: --
10035: ,P_MARITAL_STATUS =>

Line 10036: hr_transaction_api.get_VARCHAR2_value

10032: (p_transaction_step_id => p_transaction_step_id
10033: ,p_name => 'P_KNOWN_AS')
10034: --
10035: ,P_MARITAL_STATUS =>
10036: hr_transaction_api.get_VARCHAR2_value
10037: (p_transaction_step_id => p_transaction_step_id
10038: ,p_name => 'P_MARITAL_STATUS')
10039: --
10040: ,P_MIDDLE_NAMES =>

Line 10041: hr_transaction_api.get_VARCHAR2_value

10037: (p_transaction_step_id => p_transaction_step_id
10038: ,p_name => 'P_MARITAL_STATUS')
10039: --
10040: ,P_MIDDLE_NAMES =>
10041: hr_transaction_api.get_VARCHAR2_value
10042: (p_transaction_step_id => p_transaction_step_id
10043: ,p_name => 'P_MIDDLE_NAMES')
10044: --
10045: ,P_NATIONALITY =>

Line 10046: hr_transaction_api.get_VARCHAR2_value

10042: (p_transaction_step_id => p_transaction_step_id
10043: ,p_name => 'P_MIDDLE_NAMES')
10044: --
10045: ,P_NATIONALITY =>
10046: hr_transaction_api.get_VARCHAR2_value
10047: (p_transaction_step_id => p_transaction_step_id
10048: ,p_name => 'P_NATIONALITY')
10049: --
10050: ,P_NATIONAL_IDENTIFIER =>

Line 10051: hr_transaction_api.get_VARCHAR2_value

10047: (p_transaction_step_id => p_transaction_step_id
10048: ,p_name => 'P_NATIONALITY')
10049: --
10050: ,P_NATIONAL_IDENTIFIER =>
10051: hr_transaction_api.get_VARCHAR2_value
10052: (p_transaction_step_id => p_transaction_step_id
10053: ,p_name => 'P_NATIONAL_IDENTIFIER')
10054: --
10055: ,P_PREVIOUS_LAST_NAME =>

Line 10056: hr_transaction_api.get_VARCHAR2_value

10052: (p_transaction_step_id => p_transaction_step_id
10053: ,p_name => 'P_NATIONAL_IDENTIFIER')
10054: --
10055: ,P_PREVIOUS_LAST_NAME =>
10056: hr_transaction_api.get_VARCHAR2_value
10057: (p_transaction_step_id => p_transaction_step_id
10058: ,p_name => 'P_PREVIOUS_LAST_NAME')
10059: --
10060: ,P_REGISTERED_DISABLED_FLAG =>

Line 10061: hr_transaction_api.get_VARCHAR2_value

10057: (p_transaction_step_id => p_transaction_step_id
10058: ,p_name => 'P_PREVIOUS_LAST_NAME')
10059: --
10060: ,P_REGISTERED_DISABLED_FLAG =>
10061: hr_transaction_api.get_VARCHAR2_value
10062: (p_transaction_step_id => p_transaction_step_id
10063: ,p_name => 'P_REGISTERED_DISABLED_FLAG')
10064: --
10065: ,P_TITLE =>

Line 10066: hr_transaction_api.get_VARCHAR2_value

10062: (p_transaction_step_id => p_transaction_step_id
10063: ,p_name => 'P_REGISTERED_DISABLED_FLAG')
10064: --
10065: ,P_TITLE =>
10066: hr_transaction_api.get_VARCHAR2_value
10067: (p_transaction_step_id => p_transaction_step_id
10068: ,p_name => 'P_TITLE')
10069: --
10070: ,P_WORK_TELEPHONE =>

Line 10071: hr_transaction_api.get_VARCHAR2_value

10067: (p_transaction_step_id => p_transaction_step_id
10068: ,p_name => 'P_TITLE')
10069: --
10070: ,P_WORK_TELEPHONE =>
10071: hr_transaction_api.get_VARCHAR2_value
10072: (p_transaction_step_id => p_transaction_step_id
10073: ,p_name => 'P_WORK_TELEPHONE')
10074: --
10075: ,P_ATTRIBUTE_CATEGORY =>

Line 10076: hr_transaction_api.get_VARCHAR2_value

10072: (p_transaction_step_id => p_transaction_step_id
10073: ,p_name => 'P_WORK_TELEPHONE')
10074: --
10075: ,P_ATTRIBUTE_CATEGORY =>
10076: hr_transaction_api.get_VARCHAR2_value
10077: (p_transaction_step_id => p_transaction_step_id
10078: ,p_name => 'P_ATTRIBUTE_CATEGORY')
10079: --
10080: ,P_ATTRIBUTE1 =>

Line 10081: hr_transaction_api.get_VARCHAR2_value

10077: (p_transaction_step_id => p_transaction_step_id
10078: ,p_name => 'P_ATTRIBUTE_CATEGORY')
10079: --
10080: ,P_ATTRIBUTE1 =>
10081: hr_transaction_api.get_VARCHAR2_value
10082: (p_transaction_step_id => p_transaction_step_id
10083: ,p_name => 'P_ATTRIBUTE1')
10084: --
10085: ,P_ATTRIBUTE2 =>

Line 10086: hr_transaction_api.get_VARCHAR2_value

10082: (p_transaction_step_id => p_transaction_step_id
10083: ,p_name => 'P_ATTRIBUTE1')
10084: --
10085: ,P_ATTRIBUTE2 =>
10086: hr_transaction_api.get_VARCHAR2_value
10087: (p_transaction_step_id => p_transaction_step_id
10088: ,p_name => 'P_ATTRIBUTE2')
10089: --
10090: ,P_ATTRIBUTE3 =>

Line 10091: hr_transaction_api.get_VARCHAR2_value

10087: (p_transaction_step_id => p_transaction_step_id
10088: ,p_name => 'P_ATTRIBUTE2')
10089: --
10090: ,P_ATTRIBUTE3 =>
10091: hr_transaction_api.get_VARCHAR2_value
10092: (p_transaction_step_id => p_transaction_step_id
10093: ,p_name => 'P_ATTRIBUTE3')
10094: --
10095: ,P_ATTRIBUTE4 =>

Line 10096: hr_transaction_api.get_VARCHAR2_value

10092: (p_transaction_step_id => p_transaction_step_id
10093: ,p_name => 'P_ATTRIBUTE3')
10094: --
10095: ,P_ATTRIBUTE4 =>
10096: hr_transaction_api.get_VARCHAR2_value
10097: (p_transaction_step_id => p_transaction_step_id
10098: ,p_name => 'P_ATTRIBUTE4')
10099: --
10100: ,P_ATTRIBUTE5 =>

Line 10101: hr_transaction_api.get_VARCHAR2_value

10097: (p_transaction_step_id => p_transaction_step_id
10098: ,p_name => 'P_ATTRIBUTE4')
10099: --
10100: ,P_ATTRIBUTE5 =>
10101: hr_transaction_api.get_VARCHAR2_value
10102: (p_transaction_step_id => p_transaction_step_id
10103: ,p_name => 'P_ATTRIBUTE5')
10104: --
10105: ,P_ATTRIBUTE6 =>

Line 10106: hr_transaction_api.get_VARCHAR2_value

10102: (p_transaction_step_id => p_transaction_step_id
10103: ,p_name => 'P_ATTRIBUTE5')
10104: --
10105: ,P_ATTRIBUTE6 =>
10106: hr_transaction_api.get_VARCHAR2_value
10107: (p_transaction_step_id => p_transaction_step_id
10108: ,p_name => 'P_ATTRIBUTE6')
10109: --
10110: ,P_ATTRIBUTE7 =>

Line 10111: hr_transaction_api.get_VARCHAR2_value

10107: (p_transaction_step_id => p_transaction_step_id
10108: ,p_name => 'P_ATTRIBUTE6')
10109: --
10110: ,P_ATTRIBUTE7 =>
10111: hr_transaction_api.get_VARCHAR2_value
10112: (p_transaction_step_id => p_transaction_step_id
10113: ,p_name => 'P_ATTRIBUTE7')
10114: --
10115: ,P_ATTRIBUTE8 =>

Line 10116: hr_transaction_api.get_VARCHAR2_value

10112: (p_transaction_step_id => p_transaction_step_id
10113: ,p_name => 'P_ATTRIBUTE7')
10114: --
10115: ,P_ATTRIBUTE8 =>
10116: hr_transaction_api.get_VARCHAR2_value
10117: (p_transaction_step_id => p_transaction_step_id
10118: ,p_name => 'P_ATTRIBUTE8')
10119: --
10120: ,P_ATTRIBUTE9 =>

Line 10121: hr_transaction_api.get_VARCHAR2_value

10117: (p_transaction_step_id => p_transaction_step_id
10118: ,p_name => 'P_ATTRIBUTE8')
10119: --
10120: ,P_ATTRIBUTE9 =>
10121: hr_transaction_api.get_VARCHAR2_value
10122: (p_transaction_step_id => p_transaction_step_id
10123: ,p_name => 'P_ATTRIBUTE9')
10124: --
10125: ,P_ATTRIBUTE10 =>

Line 10126: hr_transaction_api.get_VARCHAR2_value

10122: (p_transaction_step_id => p_transaction_step_id
10123: ,p_name => 'P_ATTRIBUTE9')
10124: --
10125: ,P_ATTRIBUTE10 =>
10126: hr_transaction_api.get_VARCHAR2_value
10127: (p_transaction_step_id => p_transaction_step_id
10128: ,p_name => 'P_ATTRIBUTE10')
10129: --
10130: ,P_ATTRIBUTE11 =>

Line 10131: hr_transaction_api.get_VARCHAR2_value

10127: (p_transaction_step_id => p_transaction_step_id
10128: ,p_name => 'P_ATTRIBUTE10')
10129: --
10130: ,P_ATTRIBUTE11 =>
10131: hr_transaction_api.get_VARCHAR2_value
10132: (p_transaction_step_id => p_transaction_step_id
10133: ,p_name => 'P_ATTRIBUTE11')
10134: --
10135: ,P_ATTRIBUTE12 =>

Line 10136: hr_transaction_api.get_VARCHAR2_value

10132: (p_transaction_step_id => p_transaction_step_id
10133: ,p_name => 'P_ATTRIBUTE11')
10134: --
10135: ,P_ATTRIBUTE12 =>
10136: hr_transaction_api.get_VARCHAR2_value
10137: (p_transaction_step_id => p_transaction_step_id
10138: ,p_name => 'P_ATTRIBUTE12')
10139: --
10140: ,P_ATTRIBUTE13 =>

Line 10141: hr_transaction_api.get_VARCHAR2_value

10137: (p_transaction_step_id => p_transaction_step_id
10138: ,p_name => 'P_ATTRIBUTE12')
10139: --
10140: ,P_ATTRIBUTE13 =>
10141: hr_transaction_api.get_VARCHAR2_value
10142: (p_transaction_step_id => p_transaction_step_id
10143: ,p_name => 'P_ATTRIBUTE13')
10144: --
10145: ,P_ATTRIBUTE14 =>

Line 10146: hr_transaction_api.get_VARCHAR2_value

10142: (p_transaction_step_id => p_transaction_step_id
10143: ,p_name => 'P_ATTRIBUTE13')
10144: --
10145: ,P_ATTRIBUTE14 =>
10146: hr_transaction_api.get_VARCHAR2_value
10147: (p_transaction_step_id => p_transaction_step_id
10148: ,p_name => 'P_ATTRIBUTE14')
10149: --
10150: ,P_ATTRIBUTE15 =>

Line 10151: hr_transaction_api.get_VARCHAR2_value

10147: (p_transaction_step_id => p_transaction_step_id
10148: ,p_name => 'P_ATTRIBUTE14')
10149: --
10150: ,P_ATTRIBUTE15 =>
10151: hr_transaction_api.get_VARCHAR2_value
10152: (p_transaction_step_id => p_transaction_step_id
10153: ,p_name => 'P_ATTRIBUTE15')
10154: --
10155: ,P_ATTRIBUTE16 =>

Line 10156: hr_transaction_api.get_VARCHAR2_value

10152: (p_transaction_step_id => p_transaction_step_id
10153: ,p_name => 'P_ATTRIBUTE15')
10154: --
10155: ,P_ATTRIBUTE16 =>
10156: hr_transaction_api.get_VARCHAR2_value
10157: (p_transaction_step_id => p_transaction_step_id
10158: ,p_name => 'P_ATTRIBUTE16')
10159: --
10160: ,P_ATTRIBUTE17 =>

Line 10161: hr_transaction_api.get_VARCHAR2_value

10157: (p_transaction_step_id => p_transaction_step_id
10158: ,p_name => 'P_ATTRIBUTE16')
10159: --
10160: ,P_ATTRIBUTE17 =>
10161: hr_transaction_api.get_VARCHAR2_value
10162: (p_transaction_step_id => p_transaction_step_id
10163: ,p_name => 'P_ATTRIBUTE17')
10164: --
10165: ,P_ATTRIBUTE18 =>

Line 10166: hr_transaction_api.get_VARCHAR2_value

10162: (p_transaction_step_id => p_transaction_step_id
10163: ,p_name => 'P_ATTRIBUTE17')
10164: --
10165: ,P_ATTRIBUTE18 =>
10166: hr_transaction_api.get_VARCHAR2_value
10167: (p_transaction_step_id => p_transaction_step_id
10168: ,p_name => 'P_ATTRIBUTE18')
10169: --
10170: ,P_ATTRIBUTE19 =>

Line 10171: hr_transaction_api.get_VARCHAR2_value

10167: (p_transaction_step_id => p_transaction_step_id
10168: ,p_name => 'P_ATTRIBUTE18')
10169: --
10170: ,P_ATTRIBUTE19 =>
10171: hr_transaction_api.get_VARCHAR2_value
10172: (p_transaction_step_id => p_transaction_step_id
10173: ,p_name => 'P_ATTRIBUTE19')
10174: --
10175: ,P_ATTRIBUTE20 =>

Line 10176: hr_transaction_api.get_VARCHAR2_value

10172: (p_transaction_step_id => p_transaction_step_id
10173: ,p_name => 'P_ATTRIBUTE19')
10174: --
10175: ,P_ATTRIBUTE20 =>
10176: hr_transaction_api.get_VARCHAR2_value
10177: (p_transaction_step_id => p_transaction_step_id
10178: ,p_name => 'P_ATTRIBUTE20')
10179: --
10180: ,P_ATTRIBUTE21 =>

Line 10181: hr_transaction_api.get_VARCHAR2_value

10177: (p_transaction_step_id => p_transaction_step_id
10178: ,p_name => 'P_ATTRIBUTE20')
10179: --
10180: ,P_ATTRIBUTE21 =>
10181: hr_transaction_api.get_VARCHAR2_value
10182: (p_transaction_step_id => p_transaction_step_id
10183: ,p_name => 'P_ATTRIBUTE21')
10184: --
10185: ,P_ATTRIBUTE22 =>

Line 10186: hr_transaction_api.get_VARCHAR2_value

10182: (p_transaction_step_id => p_transaction_step_id
10183: ,p_name => 'P_ATTRIBUTE21')
10184: --
10185: ,P_ATTRIBUTE22 =>
10186: hr_transaction_api.get_VARCHAR2_value
10187: (p_transaction_step_id => p_transaction_step_id
10188: ,p_name => 'P_ATTRIBUTE22')
10189: --
10190: ,P_ATTRIBUTE23 =>

Line 10191: hr_transaction_api.get_VARCHAR2_value

10187: (p_transaction_step_id => p_transaction_step_id
10188: ,p_name => 'P_ATTRIBUTE22')
10189: --
10190: ,P_ATTRIBUTE23 =>
10191: hr_transaction_api.get_VARCHAR2_value
10192: (p_transaction_step_id => p_transaction_step_id
10193: ,p_name => 'P_ATTRIBUTE23')
10194: --
10195: ,P_ATTRIBUTE24 =>

Line 10196: hr_transaction_api.get_VARCHAR2_value

10192: (p_transaction_step_id => p_transaction_step_id
10193: ,p_name => 'P_ATTRIBUTE23')
10194: --
10195: ,P_ATTRIBUTE24 =>
10196: hr_transaction_api.get_VARCHAR2_value
10197: (p_transaction_step_id => p_transaction_step_id
10198: ,p_name => 'P_ATTRIBUTE24')
10199: --
10200: ,P_ATTRIBUTE25 =>

Line 10201: hr_transaction_api.get_VARCHAR2_value

10197: (p_transaction_step_id => p_transaction_step_id
10198: ,p_name => 'P_ATTRIBUTE24')
10199: --
10200: ,P_ATTRIBUTE25 =>
10201: hr_transaction_api.get_VARCHAR2_value
10202: (p_transaction_step_id => p_transaction_step_id
10203: ,p_name => 'P_ATTRIBUTE25')
10204: --
10205: ,P_ATTRIBUTE26 =>

Line 10206: hr_transaction_api.get_VARCHAR2_value

10202: (p_transaction_step_id => p_transaction_step_id
10203: ,p_name => 'P_ATTRIBUTE25')
10204: --
10205: ,P_ATTRIBUTE26 =>
10206: hr_transaction_api.get_VARCHAR2_value
10207: (p_transaction_step_id => p_transaction_step_id
10208: ,p_name => 'P_ATTRIBUTE26')
10209: --
10210: ,P_ATTRIBUTE27 =>

Line 10211: hr_transaction_api.get_VARCHAR2_value

10207: (p_transaction_step_id => p_transaction_step_id
10208: ,p_name => 'P_ATTRIBUTE26')
10209: --
10210: ,P_ATTRIBUTE27 =>
10211: hr_transaction_api.get_VARCHAR2_value
10212: (p_transaction_step_id => p_transaction_step_id
10213: ,p_name => 'P_ATTRIBUTE27')
10214: --
10215: ,P_ATTRIBUTE28 =>

Line 10216: hr_transaction_api.get_VARCHAR2_value

10212: (p_transaction_step_id => p_transaction_step_id
10213: ,p_name => 'P_ATTRIBUTE27')
10214: --
10215: ,P_ATTRIBUTE28 =>
10216: hr_transaction_api.get_VARCHAR2_value
10217: (p_transaction_step_id => p_transaction_step_id
10218: ,p_name => 'P_ATTRIBUTE28')
10219: --
10220: ,P_ATTRIBUTE29 =>

Line 10221: hr_transaction_api.get_VARCHAR2_value

10217: (p_transaction_step_id => p_transaction_step_id
10218: ,p_name => 'P_ATTRIBUTE28')
10219: --
10220: ,P_ATTRIBUTE29 =>
10221: hr_transaction_api.get_VARCHAR2_value
10222: (p_transaction_step_id => p_transaction_step_id
10223: ,p_name => 'P_ATTRIBUTE29')
10224: --
10225: ,P_ATTRIBUTE30 =>

Line 10226: hr_transaction_api.get_VARCHAR2_value

10222: (p_transaction_step_id => p_transaction_step_id
10223: ,p_name => 'P_ATTRIBUTE29')
10224: --
10225: ,P_ATTRIBUTE30 =>
10226: hr_transaction_api.get_VARCHAR2_value
10227: (p_transaction_step_id => p_transaction_step_id
10228: ,p_name => 'P_ATTRIBUTE30')
10229: --
10230: ,P_PER_INFORMATION_CATEGORY =>

Line 10231: hr_transaction_api.get_VARCHAR2_value

10227: (p_transaction_step_id => p_transaction_step_id
10228: ,p_name => 'P_ATTRIBUTE30')
10229: --
10230: ,P_PER_INFORMATION_CATEGORY =>
10231: hr_transaction_api.get_VARCHAR2_value
10232: (p_transaction_step_id => p_transaction_step_id
10233: ,p_name => 'P_PER_INFORMATION_CATEGORY')
10234: --
10235: ,P_PER_INFORMATION1 =>

Line 10236: hr_transaction_api.get_VARCHAR2_value

10232: (p_transaction_step_id => p_transaction_step_id
10233: ,p_name => 'P_PER_INFORMATION_CATEGORY')
10234: --
10235: ,P_PER_INFORMATION1 =>
10236: hr_transaction_api.get_VARCHAR2_value
10237: (p_transaction_step_id => p_transaction_step_id
10238: ,p_name => 'P_PER_INFORMATION1')
10239: --
10240: ,P_PER_INFORMATION2 =>

Line 10241: hr_transaction_api.get_VARCHAR2_value

10237: (p_transaction_step_id => p_transaction_step_id
10238: ,p_name => 'P_PER_INFORMATION1')
10239: --
10240: ,P_PER_INFORMATION2 =>
10241: hr_transaction_api.get_VARCHAR2_value
10242: (p_transaction_step_id => p_transaction_step_id
10243: ,p_name => 'P_PER_INFORMATION2')
10244: --
10245: ,P_PER_INFORMATION3 =>

Line 10246: hr_transaction_api.get_VARCHAR2_value

10242: (p_transaction_step_id => p_transaction_step_id
10243: ,p_name => 'P_PER_INFORMATION2')
10244: --
10245: ,P_PER_INFORMATION3 =>
10246: hr_transaction_api.get_VARCHAR2_value
10247: (p_transaction_step_id => p_transaction_step_id
10248: ,p_name => 'P_PER_INFORMATION3')
10249: --
10250: ,P_PER_INFORMATION4 =>

Line 10251: hr_transaction_api.get_VARCHAR2_value

10247: (p_transaction_step_id => p_transaction_step_id
10248: ,p_name => 'P_PER_INFORMATION3')
10249: --
10250: ,P_PER_INFORMATION4 =>
10251: hr_transaction_api.get_VARCHAR2_value
10252: (p_transaction_step_id => p_transaction_step_id
10253: ,p_name => 'P_PER_INFORMATION4')
10254: --
10255: ,P_PER_INFORMATION5 =>

Line 10256: hr_transaction_api.get_VARCHAR2_value

10252: (p_transaction_step_id => p_transaction_step_id
10253: ,p_name => 'P_PER_INFORMATION4')
10254: --
10255: ,P_PER_INFORMATION5 =>
10256: hr_transaction_api.get_VARCHAR2_value
10257: (p_transaction_step_id => p_transaction_step_id
10258: ,p_name => 'P_PER_INFORMATION5')
10259: --
10260: ,P_PER_INFORMATION6 =>

Line 10261: hr_transaction_api.get_VARCHAR2_value

10257: (p_transaction_step_id => p_transaction_step_id
10258: ,p_name => 'P_PER_INFORMATION5')
10259: --
10260: ,P_PER_INFORMATION6 =>
10261: hr_transaction_api.get_VARCHAR2_value
10262: (p_transaction_step_id => p_transaction_step_id
10263: ,p_name => 'P_PER_INFORMATION6')
10264: --
10265: ,P_PER_INFORMATION7 =>

Line 10266: hr_transaction_api.get_VARCHAR2_value

10262: (p_transaction_step_id => p_transaction_step_id
10263: ,p_name => 'P_PER_INFORMATION6')
10264: --
10265: ,P_PER_INFORMATION7 =>
10266: hr_transaction_api.get_VARCHAR2_value
10267: (p_transaction_step_id => p_transaction_step_id
10268: ,p_name => 'P_PER_INFORMATION7')
10269: --
10270: ,P_PER_INFORMATION8 =>

Line 10271: hr_transaction_api.get_VARCHAR2_value

10267: (p_transaction_step_id => p_transaction_step_id
10268: ,p_name => 'P_PER_INFORMATION7')
10269: --
10270: ,P_PER_INFORMATION8 =>
10271: hr_transaction_api.get_VARCHAR2_value
10272: (p_transaction_step_id => p_transaction_step_id
10273: ,p_name => 'P_PER_INFORMATION8')
10274: --
10275: ,P_PER_INFORMATION9 =>

Line 10276: hr_transaction_api.get_VARCHAR2_value

10272: (p_transaction_step_id => p_transaction_step_id
10273: ,p_name => 'P_PER_INFORMATION8')
10274: --
10275: ,P_PER_INFORMATION9 =>
10276: hr_transaction_api.get_VARCHAR2_value
10277: (p_transaction_step_id => p_transaction_step_id
10278: ,p_name => 'P_PER_INFORMATION9')
10279: --
10280: ,P_PER_INFORMATION10 =>

Line 10281: hr_transaction_api.get_VARCHAR2_value

10277: (p_transaction_step_id => p_transaction_step_id
10278: ,p_name => 'P_PER_INFORMATION9')
10279: --
10280: ,P_PER_INFORMATION10 =>
10281: hr_transaction_api.get_VARCHAR2_value
10282: (p_transaction_step_id => p_transaction_step_id
10283: ,p_name => 'P_PER_INFORMATION10')
10284: --
10285: ,P_PER_INFORMATION11 =>

Line 10286: hr_transaction_api.get_VARCHAR2_value

10282: (p_transaction_step_id => p_transaction_step_id
10283: ,p_name => 'P_PER_INFORMATION10')
10284: --
10285: ,P_PER_INFORMATION11 =>
10286: hr_transaction_api.get_VARCHAR2_value
10287: (p_transaction_step_id => p_transaction_step_id
10288: ,p_name => 'P_PER_INFORMATION11')
10289: --
10290: ,P_PER_INFORMATION12 =>

Line 10291: hr_transaction_api.get_VARCHAR2_value

10287: (p_transaction_step_id => p_transaction_step_id
10288: ,p_name => 'P_PER_INFORMATION11')
10289: --
10290: ,P_PER_INFORMATION12 =>
10291: hr_transaction_api.get_VARCHAR2_value
10292: (p_transaction_step_id => p_transaction_step_id
10293: ,p_name => 'P_PER_INFORMATION12')
10294: --
10295: ,P_PER_INFORMATION13 =>

Line 10296: hr_transaction_api.get_VARCHAR2_value

10292: (p_transaction_step_id => p_transaction_step_id
10293: ,p_name => 'P_PER_INFORMATION12')
10294: --
10295: ,P_PER_INFORMATION13 =>
10296: hr_transaction_api.get_VARCHAR2_value
10297: (p_transaction_step_id => p_transaction_step_id
10298: ,p_name => 'P_PER_INFORMATION13')
10299: --
10300: ,P_PER_INFORMATION14 =>

Line 10301: hr_transaction_api.get_VARCHAR2_value

10297: (p_transaction_step_id => p_transaction_step_id
10298: ,p_name => 'P_PER_INFORMATION13')
10299: --
10300: ,P_PER_INFORMATION14 =>
10301: hr_transaction_api.get_VARCHAR2_value
10302: (p_transaction_step_id => p_transaction_step_id
10303: ,p_name => 'P_PER_INFORMATION14')
10304: --
10305: ,P_PER_INFORMATION15 =>

Line 10306: hr_transaction_api.get_VARCHAR2_value

10302: (p_transaction_step_id => p_transaction_step_id
10303: ,p_name => 'P_PER_INFORMATION14')
10304: --
10305: ,P_PER_INFORMATION15 =>
10306: hr_transaction_api.get_VARCHAR2_value
10307: (p_transaction_step_id => p_transaction_step_id
10308: ,p_name => 'P_PER_INFORMATION15')
10309: --
10310: ,P_PER_INFORMATION16 =>

Line 10311: hr_transaction_api.get_VARCHAR2_value

10307: (p_transaction_step_id => p_transaction_step_id
10308: ,p_name => 'P_PER_INFORMATION15')
10309: --
10310: ,P_PER_INFORMATION16 =>
10311: hr_transaction_api.get_VARCHAR2_value
10312: (p_transaction_step_id => p_transaction_step_id
10313: ,p_name => 'P_PER_INFORMATION16')
10314: --
10315: ,P_PER_INFORMATION17 =>

Line 10316: hr_transaction_api.get_VARCHAR2_value

10312: (p_transaction_step_id => p_transaction_step_id
10313: ,p_name => 'P_PER_INFORMATION16')
10314: --
10315: ,P_PER_INFORMATION17 =>
10316: hr_transaction_api.get_VARCHAR2_value
10317: (p_transaction_step_id => p_transaction_step_id
10318: ,p_name => 'P_PER_INFORMATION17')
10319: --
10320: ,P_PER_INFORMATION18 =>

Line 10321: hr_transaction_api.get_VARCHAR2_value

10317: (p_transaction_step_id => p_transaction_step_id
10318: ,p_name => 'P_PER_INFORMATION17')
10319: --
10320: ,P_PER_INFORMATION18 =>
10321: hr_transaction_api.get_VARCHAR2_value
10322: (p_transaction_step_id => p_transaction_step_id
10323: ,p_name => 'P_PER_INFORMATION18')
10324: --
10325: ,P_PER_INFORMATION19 =>

Line 10326: hr_transaction_api.get_VARCHAR2_value

10322: (p_transaction_step_id => p_transaction_step_id
10323: ,p_name => 'P_PER_INFORMATION18')
10324: --
10325: ,P_PER_INFORMATION19 =>
10326: hr_transaction_api.get_VARCHAR2_value
10327: (p_transaction_step_id => p_transaction_step_id
10328: ,p_name => 'P_PER_INFORMATION19')
10329: --
10330: ,P_PER_INFORMATION20 =>

Line 10331: hr_transaction_api.get_VARCHAR2_value

10327: (p_transaction_step_id => p_transaction_step_id
10328: ,p_name => 'P_PER_INFORMATION19')
10329: --
10330: ,P_PER_INFORMATION20 =>
10331: hr_transaction_api.get_VARCHAR2_value
10332: (p_transaction_step_id => p_transaction_step_id
10333: ,p_name => 'P_PER_INFORMATION20')
10334: --
10335: ,P_PER_INFORMATION21 =>

Line 10336: hr_transaction_api.get_VARCHAR2_value

10332: (p_transaction_step_id => p_transaction_step_id
10333: ,p_name => 'P_PER_INFORMATION20')
10334: --
10335: ,P_PER_INFORMATION21 =>
10336: hr_transaction_api.get_VARCHAR2_value
10337: (p_transaction_step_id => p_transaction_step_id
10338: ,p_name => 'P_PER_INFORMATION21')
10339: --
10340: ,P_PER_INFORMATION22 =>

Line 10341: hr_transaction_api.get_VARCHAR2_value

10337: (p_transaction_step_id => p_transaction_step_id
10338: ,p_name => 'P_PER_INFORMATION21')
10339: --
10340: ,P_PER_INFORMATION22 =>
10341: hr_transaction_api.get_VARCHAR2_value
10342: (p_transaction_step_id => p_transaction_step_id
10343: ,p_name => 'P_PER_INFORMATION22')
10344: --
10345: ,P_PER_INFORMATION23 =>

Line 10346: hr_transaction_api.get_VARCHAR2_value

10342: (p_transaction_step_id => p_transaction_step_id
10343: ,p_name => 'P_PER_INFORMATION22')
10344: --
10345: ,P_PER_INFORMATION23 =>
10346: hr_transaction_api.get_VARCHAR2_value
10347: (p_transaction_step_id => p_transaction_step_id
10348: ,p_name => 'P_PER_INFORMATION23')
10349: --
10350: ,P_PER_INFORMATION24 =>

Line 10351: hr_transaction_api.get_VARCHAR2_value

10347: (p_transaction_step_id => p_transaction_step_id
10348: ,p_name => 'P_PER_INFORMATION23')
10349: --
10350: ,P_PER_INFORMATION24 =>
10351: hr_transaction_api.get_VARCHAR2_value
10352: (p_transaction_step_id => p_transaction_step_id
10353: ,p_name => 'P_PER_INFORMATION24')
10354: --
10355: ,P_PER_INFORMATION25 =>

Line 10356: hr_transaction_api.get_VARCHAR2_value

10352: (p_transaction_step_id => p_transaction_step_id
10353: ,p_name => 'P_PER_INFORMATION24')
10354: --
10355: ,P_PER_INFORMATION25 =>
10356: hr_transaction_api.get_VARCHAR2_value
10357: (p_transaction_step_id => p_transaction_step_id
10358: ,p_name => 'P_PER_INFORMATION25')
10359: --
10360: ,P_PER_INFORMATION26 =>

Line 10361: hr_transaction_api.get_VARCHAR2_value

10357: (p_transaction_step_id => p_transaction_step_id
10358: ,p_name => 'P_PER_INFORMATION25')
10359: --
10360: ,P_PER_INFORMATION26 =>
10361: hr_transaction_api.get_VARCHAR2_value
10362: (p_transaction_step_id => p_transaction_step_id
10363: ,p_name => 'P_PER_INFORMATION26')
10364: --
10365: ,P_PER_INFORMATION27 =>

Line 10366: hr_transaction_api.get_VARCHAR2_value

10362: (p_transaction_step_id => p_transaction_step_id
10363: ,p_name => 'P_PER_INFORMATION26')
10364: --
10365: ,P_PER_INFORMATION27 =>
10366: hr_transaction_api.get_VARCHAR2_value
10367: (p_transaction_step_id => p_transaction_step_id
10368: ,p_name => 'P_PER_INFORMATION27')
10369: --
10370: ,P_PER_INFORMATION28 =>

Line 10371: hr_transaction_api.get_VARCHAR2_value

10367: (p_transaction_step_id => p_transaction_step_id
10368: ,p_name => 'P_PER_INFORMATION27')
10369: --
10370: ,P_PER_INFORMATION28 =>
10371: hr_transaction_api.get_VARCHAR2_value
10372: (p_transaction_step_id => p_transaction_step_id
10373: ,p_name => 'P_PER_INFORMATION28')
10374: --
10375: ,P_PER_INFORMATION29 =>

Line 10376: hr_transaction_api.get_VARCHAR2_value

10372: (p_transaction_step_id => p_transaction_step_id
10373: ,p_name => 'P_PER_INFORMATION28')
10374: --
10375: ,P_PER_INFORMATION29 =>
10376: hr_transaction_api.get_VARCHAR2_value
10377: (p_transaction_step_id => p_transaction_step_id
10378: ,p_name => 'P_PER_INFORMATION29')
10379: --
10380: ,P_PER_INFORMATION30 =>

Line 10381: hr_transaction_api.get_VARCHAR2_value

10377: (p_transaction_step_id => p_transaction_step_id
10378: ,p_name => 'P_PER_INFORMATION29')
10379: --
10380: ,P_PER_INFORMATION30 =>
10381: hr_transaction_api.get_VARCHAR2_value
10382: (p_transaction_step_id => p_transaction_step_id
10383: ,p_name => 'P_PER_INFORMATION30')
10384: --
10385: ,P_CORRESPONDENCE_LANGUAGE =>

Line 10386: hr_transaction_api.get_VARCHAR2_value

10382: (p_transaction_step_id => p_transaction_step_id
10383: ,p_name => 'P_PER_INFORMATION30')
10384: --
10385: ,P_CORRESPONDENCE_LANGUAGE =>
10386: hr_transaction_api.get_VARCHAR2_value
10387: (p_transaction_step_id => p_transaction_step_id
10388: ,p_name => 'P_CORRESPONDENCE_LANGUAGE')
10389: --
10390: ,P_HONORS =>

Line 10391: hr_transaction_api.get_VARCHAR2_value

10387: (p_transaction_step_id => p_transaction_step_id
10388: ,p_name => 'P_CORRESPONDENCE_LANGUAGE')
10389: --
10390: ,P_HONORS =>
10391: hr_transaction_api.get_VARCHAR2_value
10392: (p_transaction_step_id => p_transaction_step_id
10393: ,p_name => 'P_HONORS')
10394: --
10395: ,P_PRE_NAME_ADJUNCT =>

Line 10396: hr_transaction_api.get_VARCHAR2_value

10392: (p_transaction_step_id => p_transaction_step_id
10393: ,p_name => 'P_HONORS')
10394: --
10395: ,P_PRE_NAME_ADJUNCT =>
10396: hr_transaction_api.get_VARCHAR2_value
10397: (p_transaction_step_id => p_transaction_step_id
10398: ,p_name => 'P_PRE_NAME_ADJUNCT')
10399: --
10400: ,P_SUFFIX =>

Line 10401: hr_transaction_api.get_VARCHAR2_value

10397: (p_transaction_step_id => p_transaction_step_id
10398: ,p_name => 'P_PRE_NAME_ADJUNCT')
10399: --
10400: ,P_SUFFIX =>
10401: hr_transaction_api.get_VARCHAR2_value
10402: (p_transaction_step_id => p_transaction_step_id
10403: ,p_name => 'P_SUFFIX')
10404: --
10405: ,P_CREATE_MIRROR_FLAG => l_CREATE_MIRROR_FLAG

Line 10407: hr_transaction_api.get_VARCHAR2_value

10403: ,p_name => 'P_SUFFIX')
10404: --
10405: ,P_CREATE_MIRROR_FLAG => l_CREATE_MIRROR_FLAG
10406: /* Bug 1919795
10407: hr_transaction_api.get_VARCHAR2_value
10408: (p_transaction_step_id => p_transaction_step_id
10409: ,p_name => 'P_CREATE_MIRROR_FLAG')
10410: */
10411: --

Line 10414: hr_transaction_api.get_VARCHAR2_value

10410: */
10411: --
10412: ,P_MIRROR_TYPE => l_MIRROR_TYPE
10413: /* Bug 1919795
10414: hr_transaction_api.get_VARCHAR2_value
10415: (p_transaction_step_id => p_transaction_step_id
10416: ,p_name => 'P_MIRROR_TYPE')
10417: */
10418: --

Line 10420: hr_transaction_api.get_VARCHAR2_value

10416: ,p_name => 'P_MIRROR_TYPE')
10417: */
10418: --
10419: ,P_MIRROR_CONT_ATTRIBUTE_CAT =>
10420: hr_transaction_api.get_VARCHAR2_value
10421: (p_transaction_step_id => p_transaction_step_id
10422: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
10423: --
10424: ,P_MIRROR_CONT_ATTRIBUTE1 =>

Line 10425: hr_transaction_api.get_VARCHAR2_value

10421: (p_transaction_step_id => p_transaction_step_id
10422: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
10423: --
10424: ,P_MIRROR_CONT_ATTRIBUTE1 =>
10425: hr_transaction_api.get_VARCHAR2_value
10426: (p_transaction_step_id => p_transaction_step_id
10427: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
10428: --
10429: ,P_MIRROR_CONT_ATTRIBUTE2 =>

Line 10430: hr_transaction_api.get_VARCHAR2_value

10426: (p_transaction_step_id => p_transaction_step_id
10427: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
10428: --
10429: ,P_MIRROR_CONT_ATTRIBUTE2 =>
10430: hr_transaction_api.get_VARCHAR2_value
10431: (p_transaction_step_id => p_transaction_step_id
10432: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
10433: --
10434: ,P_MIRROR_CONT_ATTRIBUTE3 =>

Line 10435: hr_transaction_api.get_VARCHAR2_value

10431: (p_transaction_step_id => p_transaction_step_id
10432: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
10433: --
10434: ,P_MIRROR_CONT_ATTRIBUTE3 =>
10435: hr_transaction_api.get_VARCHAR2_value
10436: (p_transaction_step_id => p_transaction_step_id
10437: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
10438: --
10439: ,P_MIRROR_CONT_ATTRIBUTE4 =>

Line 10440: hr_transaction_api.get_VARCHAR2_value

10436: (p_transaction_step_id => p_transaction_step_id
10437: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
10438: --
10439: ,P_MIRROR_CONT_ATTRIBUTE4 =>
10440: hr_transaction_api.get_VARCHAR2_value
10441: (p_transaction_step_id => p_transaction_step_id
10442: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
10443: --
10444: ,P_MIRROR_CONT_ATTRIBUTE5 =>

Line 10445: hr_transaction_api.get_VARCHAR2_value

10441: (p_transaction_step_id => p_transaction_step_id
10442: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
10443: --
10444: ,P_MIRROR_CONT_ATTRIBUTE5 =>
10445: hr_transaction_api.get_VARCHAR2_value
10446: (p_transaction_step_id => p_transaction_step_id
10447: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
10448: --
10449: ,P_MIRROR_CONT_ATTRIBUTE6 =>

Line 10450: hr_transaction_api.get_VARCHAR2_value

10446: (p_transaction_step_id => p_transaction_step_id
10447: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
10448: --
10449: ,P_MIRROR_CONT_ATTRIBUTE6 =>
10450: hr_transaction_api.get_VARCHAR2_value
10451: (p_transaction_step_id => p_transaction_step_id
10452: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
10453: --
10454: ,P_MIRROR_CONT_ATTRIBUTE7 =>

Line 10455: hr_transaction_api.get_VARCHAR2_value

10451: (p_transaction_step_id => p_transaction_step_id
10452: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
10453: --
10454: ,P_MIRROR_CONT_ATTRIBUTE7 =>
10455: hr_transaction_api.get_VARCHAR2_value
10456: (p_transaction_step_id => p_transaction_step_id
10457: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
10458: --
10459: ,P_MIRROR_CONT_ATTRIBUTE8 =>

Line 10460: hr_transaction_api.get_VARCHAR2_value

10456: (p_transaction_step_id => p_transaction_step_id
10457: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
10458: --
10459: ,P_MIRROR_CONT_ATTRIBUTE8 =>
10460: hr_transaction_api.get_VARCHAR2_value
10461: (p_transaction_step_id => p_transaction_step_id
10462: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
10463: --
10464: ,P_MIRROR_CONT_ATTRIBUTE9 =>

Line 10465: hr_transaction_api.get_VARCHAR2_value

10461: (p_transaction_step_id => p_transaction_step_id
10462: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
10463: --
10464: ,P_MIRROR_CONT_ATTRIBUTE9 =>
10465: hr_transaction_api.get_VARCHAR2_value
10466: (p_transaction_step_id => p_transaction_step_id
10467: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
10468: --
10469: ,P_MIRROR_CONT_ATTRIBUTE10 =>

Line 10470: hr_transaction_api.get_VARCHAR2_value

10466: (p_transaction_step_id => p_transaction_step_id
10467: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
10468: --
10469: ,P_MIRROR_CONT_ATTRIBUTE10 =>
10470: hr_transaction_api.get_VARCHAR2_value
10471: (p_transaction_step_id => p_transaction_step_id
10472: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
10473: --
10474: ,P_MIRROR_CONT_ATTRIBUTE11 =>

Line 10475: hr_transaction_api.get_VARCHAR2_value

10471: (p_transaction_step_id => p_transaction_step_id
10472: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
10473: --
10474: ,P_MIRROR_CONT_ATTRIBUTE11 =>
10475: hr_transaction_api.get_VARCHAR2_value
10476: (p_transaction_step_id => p_transaction_step_id
10477: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
10478: --
10479: ,P_MIRROR_CONT_ATTRIBUTE12 =>

Line 10480: hr_transaction_api.get_VARCHAR2_value

10476: (p_transaction_step_id => p_transaction_step_id
10477: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
10478: --
10479: ,P_MIRROR_CONT_ATTRIBUTE12 =>
10480: hr_transaction_api.get_VARCHAR2_value
10481: (p_transaction_step_id => p_transaction_step_id
10482: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
10483: --
10484: ,P_MIRROR_CONT_ATTRIBUTE13 =>

Line 10485: hr_transaction_api.get_VARCHAR2_value

10481: (p_transaction_step_id => p_transaction_step_id
10482: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
10483: --
10484: ,P_MIRROR_CONT_ATTRIBUTE13 =>
10485: hr_transaction_api.get_VARCHAR2_value
10486: (p_transaction_step_id => p_transaction_step_id
10487: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
10488: --
10489: ,P_MIRROR_CONT_ATTRIBUTE14 =>

Line 10490: hr_transaction_api.get_VARCHAR2_value

10486: (p_transaction_step_id => p_transaction_step_id
10487: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
10488: --
10489: ,P_MIRROR_CONT_ATTRIBUTE14 =>
10490: hr_transaction_api.get_VARCHAR2_value
10491: (p_transaction_step_id => p_transaction_step_id
10492: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
10493: --
10494: ,P_MIRROR_CONT_ATTRIBUTE15 =>

Line 10495: hr_transaction_api.get_VARCHAR2_value

10491: (p_transaction_step_id => p_transaction_step_id
10492: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
10493: --
10494: ,P_MIRROR_CONT_ATTRIBUTE15 =>
10495: hr_transaction_api.get_VARCHAR2_value
10496: (p_transaction_step_id => p_transaction_step_id
10497: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
10498: --
10499: ,P_MIRROR_CONT_ATTRIBUTE16 =>

Line 10500: hr_transaction_api.get_VARCHAR2_value

10496: (p_transaction_step_id => p_transaction_step_id
10497: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
10498: --
10499: ,P_MIRROR_CONT_ATTRIBUTE16 =>
10500: hr_transaction_api.get_VARCHAR2_value
10501: (p_transaction_step_id => p_transaction_step_id
10502: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
10503: --
10504: ,P_MIRROR_CONT_ATTRIBUTE17 =>

Line 10505: hr_transaction_api.get_VARCHAR2_value

10501: (p_transaction_step_id => p_transaction_step_id
10502: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
10503: --
10504: ,P_MIRROR_CONT_ATTRIBUTE17 =>
10505: hr_transaction_api.get_VARCHAR2_value
10506: (p_transaction_step_id => p_transaction_step_id
10507: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
10508: --
10509: ,P_MIRROR_CONT_ATTRIBUTE18 =>

Line 10510: hr_transaction_api.get_VARCHAR2_value

10506: (p_transaction_step_id => p_transaction_step_id
10507: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
10508: --
10509: ,P_MIRROR_CONT_ATTRIBUTE18 =>
10510: hr_transaction_api.get_VARCHAR2_value
10511: (p_transaction_step_id => p_transaction_step_id
10512: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
10513: --
10514: ,P_MIRROR_CONT_ATTRIBUTE19 =>

Line 10515: hr_transaction_api.get_VARCHAR2_value

10511: (p_transaction_step_id => p_transaction_step_id
10512: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
10513: --
10514: ,P_MIRROR_CONT_ATTRIBUTE19 =>
10515: hr_transaction_api.get_VARCHAR2_value
10516: (p_transaction_step_id => p_transaction_step_id
10517: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
10518: --
10519: ,P_MIRROR_CONT_ATTRIBUTE20 =>

Line 10520: hr_transaction_api.get_VARCHAR2_value

10516: (p_transaction_step_id => p_transaction_step_id
10517: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
10518: --
10519: ,P_MIRROR_CONT_ATTRIBUTE20 =>
10520: hr_transaction_api.get_VARCHAR2_value
10521: (p_transaction_step_id => p_transaction_step_id
10522: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE20')
10523: --
10524: ,P_CONTACT_RELATIONSHIP_ID => L_CONTACT_RELATIONSHIP_ID

Line 10545: hr_transaction_api.get_VARCHAR2_value

10541: --
10542: ,P_ORIG_HIRE_WARNING => L_CON_ORIG_HIRE_WARNING
10543: --
10544: ,P_CONT_INFORMATION_CATEGORY =>
10545: hr_transaction_api.get_VARCHAR2_value
10546: (p_transaction_step_id => p_transaction_step_id
10547: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
10548: --
10549: ,P_CONT_INFORMATION1 =>

Line 10550: hr_transaction_api.get_VARCHAR2_value

10546: (p_transaction_step_id => p_transaction_step_id
10547: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
10548: --
10549: ,P_CONT_INFORMATION1 =>
10550: hr_transaction_api.get_VARCHAR2_value
10551: (p_transaction_step_id => p_transaction_step_id
10552: ,p_name => 'P_CONT_INFORMATION1')
10553: --
10554: ,P_CONT_INFORMATION2 =>

Line 10555: hr_transaction_api.get_VARCHAR2_value

10551: (p_transaction_step_id => p_transaction_step_id
10552: ,p_name => 'P_CONT_INFORMATION1')
10553: --
10554: ,P_CONT_INFORMATION2 =>
10555: hr_transaction_api.get_VARCHAR2_value
10556: (p_transaction_step_id => p_transaction_step_id
10557: ,p_name => 'P_CONT_INFORMATION2')
10558: --
10559: ,P_CONT_INFORMATION3 =>

Line 10560: hr_transaction_api.get_VARCHAR2_value

10556: (p_transaction_step_id => p_transaction_step_id
10557: ,p_name => 'P_CONT_INFORMATION2')
10558: --
10559: ,P_CONT_INFORMATION3 =>
10560: hr_transaction_api.get_VARCHAR2_value
10561: (p_transaction_step_id => p_transaction_step_id
10562: ,p_name => 'P_CONT_INFORMATION3')
10563: --
10564: ,P_CONT_INFORMATION4 =>

Line 10565: hr_transaction_api.get_VARCHAR2_value

10561: (p_transaction_step_id => p_transaction_step_id
10562: ,p_name => 'P_CONT_INFORMATION3')
10563: --
10564: ,P_CONT_INFORMATION4 =>
10565: hr_transaction_api.get_VARCHAR2_value
10566: (p_transaction_step_id => p_transaction_step_id
10567: ,p_name => 'P_CONT_INFORMATION4')
10568: --
10569: ,P_CONT_INFORMATION5 =>

Line 10570: hr_transaction_api.get_VARCHAR2_value

10566: (p_transaction_step_id => p_transaction_step_id
10567: ,p_name => 'P_CONT_INFORMATION4')
10568: --
10569: ,P_CONT_INFORMATION5 =>
10570: hr_transaction_api.get_VARCHAR2_value
10571: (p_transaction_step_id => p_transaction_step_id
10572: ,p_name => 'P_CONT_INFORMATION5')
10573: --
10574: ,P_CONT_INFORMATION6 =>

Line 10575: hr_transaction_api.get_VARCHAR2_value

10571: (p_transaction_step_id => p_transaction_step_id
10572: ,p_name => 'P_CONT_INFORMATION5')
10573: --
10574: ,P_CONT_INFORMATION6 =>
10575: hr_transaction_api.get_VARCHAR2_value
10576: (p_transaction_step_id => p_transaction_step_id
10577: ,p_name => 'P_CONT_INFORMATION6')
10578: --
10579: ,P_CONT_INFORMATION7 =>

Line 10580: hr_transaction_api.get_VARCHAR2_value

10576: (p_transaction_step_id => p_transaction_step_id
10577: ,p_name => 'P_CONT_INFORMATION6')
10578: --
10579: ,P_CONT_INFORMATION7 =>
10580: hr_transaction_api.get_VARCHAR2_value
10581: (p_transaction_step_id => p_transaction_step_id
10582: ,p_name => 'P_CONT_INFORMATION7')
10583: --
10584: ,P_CONT_INFORMATION8 =>

Line 10585: hr_transaction_api.get_VARCHAR2_value

10581: (p_transaction_step_id => p_transaction_step_id
10582: ,p_name => 'P_CONT_INFORMATION7')
10583: --
10584: ,P_CONT_INFORMATION8 =>
10585: hr_transaction_api.get_VARCHAR2_value
10586: (p_transaction_step_id => p_transaction_step_id
10587: ,p_name => 'P_CONT_INFORMATION8')
10588: --
10589: ,P_CONT_INFORMATION9 =>

Line 10590: hr_transaction_api.get_VARCHAR2_value

10586: (p_transaction_step_id => p_transaction_step_id
10587: ,p_name => 'P_CONT_INFORMATION8')
10588: --
10589: ,P_CONT_INFORMATION9 =>
10590: hr_transaction_api.get_VARCHAR2_value
10591: (p_transaction_step_id => p_transaction_step_id
10592: ,p_name => 'P_CONT_INFORMATION9')
10593: --
10594: ,P_CONT_INFORMATION10 =>

Line 10595: hr_transaction_api.get_VARCHAR2_value

10591: (p_transaction_step_id => p_transaction_step_id
10592: ,p_name => 'P_CONT_INFORMATION9')
10593: --
10594: ,P_CONT_INFORMATION10 =>
10595: hr_transaction_api.get_VARCHAR2_value
10596: (p_transaction_step_id => p_transaction_step_id
10597: ,p_name => 'P_CONT_INFORMATION10')
10598: --
10599: ,P_CONT_INFORMATION11 =>

Line 10600: hr_transaction_api.get_VARCHAR2_value

10596: (p_transaction_step_id => p_transaction_step_id
10597: ,p_name => 'P_CONT_INFORMATION10')
10598: --
10599: ,P_CONT_INFORMATION11 =>
10600: hr_transaction_api.get_VARCHAR2_value
10601: (p_transaction_step_id => p_transaction_step_id
10602: ,p_name => 'P_CONT_INFORMATION11')
10603: --
10604: ,P_CONT_INFORMATION12 =>

Line 10605: hr_transaction_api.get_VARCHAR2_value

10601: (p_transaction_step_id => p_transaction_step_id
10602: ,p_name => 'P_CONT_INFORMATION11')
10603: --
10604: ,P_CONT_INFORMATION12 =>
10605: hr_transaction_api.get_VARCHAR2_value
10606: (p_transaction_step_id => p_transaction_step_id
10607: ,p_name => 'P_CONT_INFORMATION12')
10608: --
10609: ,P_CONT_INFORMATION13 =>

Line 10610: hr_transaction_api.get_VARCHAR2_value

10606: (p_transaction_step_id => p_transaction_step_id
10607: ,p_name => 'P_CONT_INFORMATION12')
10608: --
10609: ,P_CONT_INFORMATION13 =>
10610: hr_transaction_api.get_VARCHAR2_value
10611: (p_transaction_step_id => p_transaction_step_id
10612: ,p_name => 'P_CONT_INFORMATION13')
10613: --
10614: ,P_CONT_INFORMATION14 =>

Line 10615: hr_transaction_api.get_VARCHAR2_value

10611: (p_transaction_step_id => p_transaction_step_id
10612: ,p_name => 'P_CONT_INFORMATION13')
10613: --
10614: ,P_CONT_INFORMATION14 =>
10615: hr_transaction_api.get_VARCHAR2_value
10616: (p_transaction_step_id => p_transaction_step_id
10617: ,p_name => 'P_CONT_INFORMATION14')
10618: --
10619: ,P_CONT_INFORMATION15 =>

Line 10620: hr_transaction_api.get_VARCHAR2_value

10616: (p_transaction_step_id => p_transaction_step_id
10617: ,p_name => 'P_CONT_INFORMATION14')
10618: --
10619: ,P_CONT_INFORMATION15 =>
10620: hr_transaction_api.get_VARCHAR2_value
10621: (p_transaction_step_id => p_transaction_step_id
10622: ,p_name => 'P_CONT_INFORMATION15')
10623: --
10624: ,P_CONT_INFORMATION16 =>

Line 10625: hr_transaction_api.get_VARCHAR2_value

10621: (p_transaction_step_id => p_transaction_step_id
10622: ,p_name => 'P_CONT_INFORMATION15')
10623: --
10624: ,P_CONT_INFORMATION16 =>
10625: hr_transaction_api.get_VARCHAR2_value
10626: (p_transaction_step_id => p_transaction_step_id
10627: ,p_name => 'P_CONT_INFORMATION16')
10628: --
10629: ,P_CONT_INFORMATION17 =>

Line 10630: hr_transaction_api.get_VARCHAR2_value

10626: (p_transaction_step_id => p_transaction_step_id
10627: ,p_name => 'P_CONT_INFORMATION16')
10628: --
10629: ,P_CONT_INFORMATION17 =>
10630: hr_transaction_api.get_VARCHAR2_value
10631: (p_transaction_step_id => p_transaction_step_id
10632: ,p_name => 'P_CONT_INFORMATION17')
10633: --
10634: ,P_CONT_INFORMATION18 =>

Line 10635: hr_transaction_api.get_VARCHAR2_value

10631: (p_transaction_step_id => p_transaction_step_id
10632: ,p_name => 'P_CONT_INFORMATION17')
10633: --
10634: ,P_CONT_INFORMATION18 =>
10635: hr_transaction_api.get_VARCHAR2_value
10636: (p_transaction_step_id => p_transaction_step_id
10637: ,p_name => 'P_CONT_INFORMATION18')
10638: --
10639: ,P_CONT_INFORMATION19 =>

Line 10640: hr_transaction_api.get_VARCHAR2_value

10636: (p_transaction_step_id => p_transaction_step_id
10637: ,p_name => 'P_CONT_INFORMATION18')
10638: --
10639: ,P_CONT_INFORMATION19 =>
10640: hr_transaction_api.get_VARCHAR2_value
10641: (p_transaction_step_id => p_transaction_step_id
10642: ,p_name => 'P_CONT_INFORMATION19')
10643: --
10644: ,P_CONT_INFORMATION20 =>

Line 10645: hr_transaction_api.get_VARCHAR2_value

10641: (p_transaction_step_id => p_transaction_step_id
10642: ,p_name => 'P_CONT_INFORMATION19')
10643: --
10644: ,P_CONT_INFORMATION20 =>
10645: hr_transaction_api.get_VARCHAR2_value
10646: (p_transaction_step_id => p_transaction_step_id
10647: ,p_name => 'P_CONT_INFORMATION20')
10648: --
10649: ,P_MIRROR_CONT_INFORMATION_CAT =>

Line 10650: hr_transaction_api.get_VARCHAR2_value

10646: (p_transaction_step_id => p_transaction_step_id
10647: ,p_name => 'P_CONT_INFORMATION20')
10648: --
10649: ,P_MIRROR_CONT_INFORMATION_CAT =>
10650: hr_transaction_api.get_VARCHAR2_value
10651: (p_transaction_step_id => p_transaction_step_id
10652: ,p_name => 'P_MIRROR_CONT_INFORMATION_CAT')
10653: --
10654: ,P_MIRROR_CONT_INFORMATION1 =>

Line 10655: hr_transaction_api.get_VARCHAR2_value

10651: (p_transaction_step_id => p_transaction_step_id
10652: ,p_name => 'P_MIRROR_CONT_INFORMATION_CAT')
10653: --
10654: ,P_MIRROR_CONT_INFORMATION1 =>
10655: hr_transaction_api.get_VARCHAR2_value
10656: (p_transaction_step_id => p_transaction_step_id
10657: ,p_name => 'P_MIRROR_CONT_INFORMATION1')
10658: --
10659: ,P_MIRROR_CONT_INFORMATION2 =>

Line 10660: hr_transaction_api.get_VARCHAR2_value

10656: (p_transaction_step_id => p_transaction_step_id
10657: ,p_name => 'P_MIRROR_CONT_INFORMATION1')
10658: --
10659: ,P_MIRROR_CONT_INFORMATION2 =>
10660: hr_transaction_api.get_VARCHAR2_value
10661: (p_transaction_step_id => p_transaction_step_id
10662: ,p_name => 'P_MIRROR_CONT_INFORMATION2')
10663: --
10664: ,P_MIRROR_CONT_INFORMATION3 =>

Line 10665: hr_transaction_api.get_VARCHAR2_value

10661: (p_transaction_step_id => p_transaction_step_id
10662: ,p_name => 'P_MIRROR_CONT_INFORMATION2')
10663: --
10664: ,P_MIRROR_CONT_INFORMATION3 =>
10665: hr_transaction_api.get_VARCHAR2_value
10666: (p_transaction_step_id => p_transaction_step_id
10667: ,p_name => 'P_MIRROR_CONT_INFORMATION3')
10668: --
10669: ,P_MIRROR_CONT_INFORMATION4 =>

Line 10670: hr_transaction_api.get_VARCHAR2_value

10666: (p_transaction_step_id => p_transaction_step_id
10667: ,p_name => 'P_MIRROR_CONT_INFORMATION3')
10668: --
10669: ,P_MIRROR_CONT_INFORMATION4 =>
10670: hr_transaction_api.get_VARCHAR2_value
10671: (p_transaction_step_id => p_transaction_step_id
10672: ,p_name => 'P_MIRROR_CONT_INFORMATION4')
10673: --
10674: ,P_MIRROR_CONT_INFORMATION5 =>

Line 10675: hr_transaction_api.get_VARCHAR2_value

10671: (p_transaction_step_id => p_transaction_step_id
10672: ,p_name => 'P_MIRROR_CONT_INFORMATION4')
10673: --
10674: ,P_MIRROR_CONT_INFORMATION5 =>
10675: hr_transaction_api.get_VARCHAR2_value
10676: (p_transaction_step_id => p_transaction_step_id
10677: ,p_name => 'P_MIRROR_CONT_INFORMATION5')
10678: --
10679: ,P_MIRROR_CONT_INFORMATION6 =>

Line 10680: hr_transaction_api.get_VARCHAR2_value

10676: (p_transaction_step_id => p_transaction_step_id
10677: ,p_name => 'P_MIRROR_CONT_INFORMATION5')
10678: --
10679: ,P_MIRROR_CONT_INFORMATION6 =>
10680: hr_transaction_api.get_VARCHAR2_value
10681: (p_transaction_step_id => p_transaction_step_id
10682: ,p_name => 'P_MIRROR_CONT_INFORMATION6')
10683: --
10684: ,P_MIRROR_CONT_INFORMATION7 =>

Line 10685: hr_transaction_api.get_VARCHAR2_value

10681: (p_transaction_step_id => p_transaction_step_id
10682: ,p_name => 'P_MIRROR_CONT_INFORMATION6')
10683: --
10684: ,P_MIRROR_CONT_INFORMATION7 =>
10685: hr_transaction_api.get_VARCHAR2_value
10686: (p_transaction_step_id => p_transaction_step_id
10687: ,p_name => 'P_MIRROR_CONT_INFORMATION7')
10688: --
10689: ,P_MIRROR_CONT_INFORMATION8 =>

Line 10690: hr_transaction_api.get_VARCHAR2_value

10686: (p_transaction_step_id => p_transaction_step_id
10687: ,p_name => 'P_MIRROR_CONT_INFORMATION7')
10688: --
10689: ,P_MIRROR_CONT_INFORMATION8 =>
10690: hr_transaction_api.get_VARCHAR2_value
10691: (p_transaction_step_id => p_transaction_step_id
10692: ,p_name => 'P_MIRROR_CONT_INFORMATION8')
10693: --
10694: ,P_MIRROR_CONT_INFORMATION9 =>

Line 10695: hr_transaction_api.get_VARCHAR2_value

10691: (p_transaction_step_id => p_transaction_step_id
10692: ,p_name => 'P_MIRROR_CONT_INFORMATION8')
10693: --
10694: ,P_MIRROR_CONT_INFORMATION9 =>
10695: hr_transaction_api.get_VARCHAR2_value
10696: (p_transaction_step_id => p_transaction_step_id
10697: ,p_name => 'P_MIRROR_CONT_INFORMATION9')
10698: --
10699: ,P_MIRROR_CONT_INFORMATION10 =>

Line 10700: hr_transaction_api.get_VARCHAR2_value

10696: (p_transaction_step_id => p_transaction_step_id
10697: ,p_name => 'P_MIRROR_CONT_INFORMATION9')
10698: --
10699: ,P_MIRROR_CONT_INFORMATION10 =>
10700: hr_transaction_api.get_VARCHAR2_value
10701: (p_transaction_step_id => p_transaction_step_id
10702: ,p_name => 'P_MIRROR_CONT_INFORMATION10')
10703: --
10704: ,P_MIRROR_CONT_INFORMATION11 =>

Line 10705: hr_transaction_api.get_VARCHAR2_value

10701: (p_transaction_step_id => p_transaction_step_id
10702: ,p_name => 'P_MIRROR_CONT_INFORMATION10')
10703: --
10704: ,P_MIRROR_CONT_INFORMATION11 =>
10705: hr_transaction_api.get_VARCHAR2_value
10706: (p_transaction_step_id => p_transaction_step_id
10707: ,p_name => 'P_MIRROR_CONT_INFORMATION11')
10708: --
10709: ,P_MIRROR_CONT_INFORMATION12 =>

Line 10710: hr_transaction_api.get_VARCHAR2_value

10706: (p_transaction_step_id => p_transaction_step_id
10707: ,p_name => 'P_MIRROR_CONT_INFORMATION11')
10708: --
10709: ,P_MIRROR_CONT_INFORMATION12 =>
10710: hr_transaction_api.get_VARCHAR2_value
10711: (p_transaction_step_id => p_transaction_step_id
10712: ,p_name => 'P_MIRROR_CONT_INFORMATION12')
10713: --
10714: ,P_MIRROR_CONT_INFORMATION13 =>

Line 10715: hr_transaction_api.get_VARCHAR2_value

10711: (p_transaction_step_id => p_transaction_step_id
10712: ,p_name => 'P_MIRROR_CONT_INFORMATION12')
10713: --
10714: ,P_MIRROR_CONT_INFORMATION13 =>
10715: hr_transaction_api.get_VARCHAR2_value
10716: (p_transaction_step_id => p_transaction_step_id
10717: ,p_name => 'P_MIRROR_CONT_INFORMATION13')
10718: --
10719: ,P_MIRROR_CONT_INFORMATION14 =>

Line 10720: hr_transaction_api.get_VARCHAR2_value

10716: (p_transaction_step_id => p_transaction_step_id
10717: ,p_name => 'P_MIRROR_CONT_INFORMATION13')
10718: --
10719: ,P_MIRROR_CONT_INFORMATION14 =>
10720: hr_transaction_api.get_VARCHAR2_value
10721: (p_transaction_step_id => p_transaction_step_id
10722: ,p_name => 'P_MIRROR_CONT_INFORMATION14')
10723: --
10724: ,P_MIRROR_CONT_INFORMATION15 =>

Line 10725: hr_transaction_api.get_VARCHAR2_value

10721: (p_transaction_step_id => p_transaction_step_id
10722: ,p_name => 'P_MIRROR_CONT_INFORMATION14')
10723: --
10724: ,P_MIRROR_CONT_INFORMATION15 =>
10725: hr_transaction_api.get_VARCHAR2_value
10726: (p_transaction_step_id => p_transaction_step_id
10727: ,p_name => 'P_MIRROR_CONT_INFORMATION15')
10728: --
10729: ,P_MIRROR_CONT_INFORMATION16 =>

Line 10730: hr_transaction_api.get_VARCHAR2_value

10726: (p_transaction_step_id => p_transaction_step_id
10727: ,p_name => 'P_MIRROR_CONT_INFORMATION15')
10728: --
10729: ,P_MIRROR_CONT_INFORMATION16 =>
10730: hr_transaction_api.get_VARCHAR2_value
10731: (p_transaction_step_id => p_transaction_step_id
10732: ,p_name => 'P_MIRROR_CONT_INFORMATION16')
10733: --
10734: ,P_MIRROR_CONT_INFORMATION17 =>

Line 10735: hr_transaction_api.get_VARCHAR2_value

10731: (p_transaction_step_id => p_transaction_step_id
10732: ,p_name => 'P_MIRROR_CONT_INFORMATION16')
10733: --
10734: ,P_MIRROR_CONT_INFORMATION17 =>
10735: hr_transaction_api.get_VARCHAR2_value
10736: (p_transaction_step_id => p_transaction_step_id
10737: ,p_name => 'P_MIRROR_CONT_INFORMATION17')
10738: --
10739: ,P_MIRROR_CONT_INFORMATION18 =>

Line 10740: hr_transaction_api.get_VARCHAR2_value

10736: (p_transaction_step_id => p_transaction_step_id
10737: ,p_name => 'P_MIRROR_CONT_INFORMATION17')
10738: --
10739: ,P_MIRROR_CONT_INFORMATION18 =>
10740: hr_transaction_api.get_VARCHAR2_value
10741: (p_transaction_step_id => p_transaction_step_id
10742: ,p_name => 'P_MIRROR_CONT_INFORMATION18')
10743: --
10744: ,P_MIRROR_CONT_INFORMATION19 =>

Line 10745: hr_transaction_api.get_VARCHAR2_value

10741: (p_transaction_step_id => p_transaction_step_id
10742: ,p_name => 'P_MIRROR_CONT_INFORMATION18')
10743: --
10744: ,P_MIRROR_CONT_INFORMATION19 =>
10745: hr_transaction_api.get_VARCHAR2_value
10746: (p_transaction_step_id => p_transaction_step_id
10747: ,p_name => 'P_MIRROR_CONT_INFORMATION19')
10748: --
10749: ,P_MIRROR_CONT_INFORMATION20 =>

Line 10750: hr_transaction_api.get_VARCHAR2_value

10746: (p_transaction_step_id => p_transaction_step_id
10747: ,p_name => 'P_MIRROR_CONT_INFORMATION19')
10748: --
10749: ,P_MIRROR_CONT_INFORMATION20 =>
10750: hr_transaction_api.get_VARCHAR2_value
10751: (p_transaction_step_id => p_transaction_step_id
10752: ,p_name => 'P_MIRROR_CONT_INFORMATION20')
10753: );
10754: --

Line 10794: hr_transaction_api.get_date_value

10790: ,p_employee_number => l_employee_number
10791: -- Bug 2652114
10792: /*
10793: ,p_adjusted_svc_date =>
10794: hr_transaction_api.get_date_value
10795: (p_transaction_step_id => p_transaction_step_id
10796: ,p_name =>upper('p_adjusted_svc_date'))
10797: */
10798: --

Line 10800: hr_transaction_api.get_varchar2_value

10796: ,p_name =>upper('p_adjusted_svc_date'))
10797: */
10798: --
10799: ,p_applicant_number =>
10800: hr_transaction_api.get_varchar2_value
10801: (p_transaction_step_id => p_transaction_step_id
10802: ,p_name =>upper('p_applicant_number'))
10803: --
10804: ,p_background_check_status =>

Line 10805: hr_transaction_api.get_varchar2_value

10801: (p_transaction_step_id => p_transaction_step_id
10802: ,p_name =>upper('p_applicant_number'))
10803: --
10804: ,p_background_check_status =>
10805: hr_transaction_api.get_varchar2_value
10806: (p_transaction_step_id => p_transaction_step_id
10807: ,p_name =>upper('p_background_check_status'))
10808: --
10809: ,p_background_date_check =>

Line 10810: hr_transaction_api.get_date_value

10806: (p_transaction_step_id => p_transaction_step_id
10807: ,p_name =>upper('p_background_check_status'))
10808: --
10809: ,p_background_date_check =>
10810: hr_transaction_api.get_date_value
10811: (p_transaction_step_id => p_transaction_step_id
10812: ,p_name =>upper('p_background_date_check'))
10813: --
10814: ,p_benefit_group_id =>

Line 10815: hr_transaction_api.get_number_value

10811: (p_transaction_step_id => p_transaction_step_id
10812: ,p_name =>upper('p_background_date_check'))
10813: --
10814: ,p_benefit_group_id =>
10815: hr_transaction_api.get_number_value
10816: (p_transaction_step_id => p_transaction_step_id
10817: ,p_name =>upper('p_benefit_group_id'))
10818: --
10819: ,p_blood_type =>

Line 10820: hr_transaction_api.get_varchar2_value

10816: (p_transaction_step_id => p_transaction_step_id
10817: ,p_name =>upper('p_benefit_group_id'))
10818: --
10819: ,p_blood_type =>
10820: hr_transaction_api.get_varchar2_value
10821: (p_transaction_step_id => p_transaction_step_id
10822: ,p_name =>upper('p_blood_type'))
10823: --
10824: ,p_coord_ben_med_pln_no =>

Line 10825: hr_transaction_api.get_varchar2_value

10821: (p_transaction_step_id => p_transaction_step_id
10822: ,p_name =>upper('p_blood_type'))
10823: --
10824: ,p_coord_ben_med_pln_no =>
10825: hr_transaction_api.get_varchar2_value
10826: (p_transaction_step_id => p_transaction_step_id
10827: ,p_name =>upper('p_coord_ben_med_pln_no'))
10828: --
10829: ,p_coord_ben_no_cvg_flag =>

Line 10830: hr_transaction_api.get_varchar2_value

10826: (p_transaction_step_id => p_transaction_step_id
10827: ,p_name =>upper('p_coord_ben_med_pln_no'))
10828: --
10829: ,p_coord_ben_no_cvg_flag =>
10830: hr_transaction_api.get_varchar2_value
10831: (p_transaction_step_id => p_transaction_step_id
10832: ,p_name =>upper('p_coord_ben_no_cvg_flag'))
10833: --
10834: ,p_country_of_birth =>

Line 10835: hr_transaction_api.get_varchar2_value

10831: (p_transaction_step_id => p_transaction_step_id
10832: ,p_name =>upper('p_coord_ben_no_cvg_flag'))
10833: --
10834: ,p_country_of_birth =>
10835: hr_transaction_api.get_varchar2_value
10836: (p_transaction_step_id => p_transaction_step_id
10837: ,p_name =>upper('p_country_of_birth'))
10838: --
10839: ,p_date_employee_data_verified =>

Line 10840: hr_transaction_api.get_date_value

10836: (p_transaction_step_id => p_transaction_step_id
10837: ,p_name =>upper('p_country_of_birth'))
10838: --
10839: ,p_date_employee_data_verified =>
10840: hr_transaction_api.get_date_value
10841: (p_transaction_step_id => p_transaction_step_id
10842: ,p_name =>upper('p_date_employee_data_verified'))
10843: --
10844: ,p_date_of_death =>

Line 10845: hr_transaction_api.get_date_value

10841: (p_transaction_step_id => p_transaction_step_id
10842: ,p_name =>upper('p_date_employee_data_verified'))
10843: --
10844: ,p_date_of_death =>
10845: hr_transaction_api.get_date_value
10846: (p_transaction_step_id => p_transaction_step_id
10847: ,p_name =>upper('p_date_of_death'))
10848: --
10849: ,p_dpdnt_adoption_date =>

Line 10850: hr_transaction_api.get_date_value

10846: (p_transaction_step_id => p_transaction_step_id
10847: ,p_name =>upper('p_date_of_death'))
10848: --
10849: ,p_dpdnt_adoption_date =>
10850: hr_transaction_api.get_date_value
10851: (p_transaction_step_id => p_transaction_step_id
10852: ,p_name =>upper('p_dpdnt_adoption_date'))
10853: --
10854: ,p_dpdnt_vlntry_svce_flag =>

Line 10855: hr_transaction_api.get_varchar2_value

10851: (p_transaction_step_id => p_transaction_step_id
10852: ,p_name =>upper('p_dpdnt_adoption_date'))
10853: --
10854: ,p_dpdnt_vlntry_svce_flag =>
10855: hr_transaction_api.get_varchar2_value
10856: (p_transaction_step_id => p_transaction_step_id
10857: ,p_name =>upper('p_dpdnt_vlntry_svce_flag'))
10858: --
10859: ,p_expense_check_send_to_addres =>

Line 10860: hr_transaction_api.get_varchar2_value

10856: (p_transaction_step_id => p_transaction_step_id
10857: ,p_name =>upper('p_dpdnt_vlntry_svce_flag'))
10858: --
10859: ,p_expense_check_send_to_addres =>
10860: hr_transaction_api.get_varchar2_value
10861: (p_transaction_step_id => p_transaction_step_id
10862: ,p_name =>upper('p_expense_check_send_to_addres'))
10863: --
10864: ,p_fast_path_employee =>

Line 10865: hr_transaction_api.get_varchar2_value

10861: (p_transaction_step_id => p_transaction_step_id
10862: ,p_name =>upper('p_expense_check_send_to_addres'))
10863: --
10864: ,p_fast_path_employee =>
10865: hr_transaction_api.get_varchar2_value
10866: (p_transaction_step_id => p_transaction_step_id
10867: ,p_name =>upper('p_fast_path_employee'))
10868: --
10869: ,p_fte_capacity =>

Line 10870: hr_transaction_api.get_number_value

10866: (p_transaction_step_id => p_transaction_step_id
10867: ,p_name =>upper('p_fast_path_employee'))
10868: --
10869: ,p_fte_capacity =>
10870: hr_transaction_api.get_number_value
10871: (p_transaction_step_id => p_transaction_step_id
10872: ,p_name =>upper('p_fte_capacity'))
10873: --
10874: ,p_global_person_id =>

Line 10875: hr_transaction_api.get_varchar2_value

10871: (p_transaction_step_id => p_transaction_step_id
10872: ,p_name =>upper('p_fte_capacity'))
10873: --
10874: ,p_global_person_id =>
10875: hr_transaction_api.get_varchar2_value
10876: (p_transaction_step_id => p_transaction_step_id
10877: ,p_name =>upper('p_global_person_id'))
10878: --
10879: ,p_hold_applicant_date_until =>

Line 10880: hr_transaction_api.get_date_value

10876: (p_transaction_step_id => p_transaction_step_id
10877: ,p_name =>upper('p_global_person_id'))
10878: --
10879: ,p_hold_applicant_date_until =>
10880: hr_transaction_api.get_date_value
10881: (p_transaction_step_id => p_transaction_step_id
10882: ,p_name =>upper('p_hold_applicant_date_until'))
10883: --
10884: ,p_internal_location =>

Line 10885: hr_transaction_api.get_varchar2_value

10881: (p_transaction_step_id => p_transaction_step_id
10882: ,p_name =>upper('p_hold_applicant_date_until'))
10883: --
10884: ,p_internal_location =>
10885: hr_transaction_api.get_varchar2_value
10886: (p_transaction_step_id => p_transaction_step_id
10887: ,p_name =>upper('p_internal_location'))
10888: --
10889: ,p_last_medical_test_by =>

Line 10890: hr_transaction_api.get_varchar2_value

10886: (p_transaction_step_id => p_transaction_step_id
10887: ,p_name =>upper('p_internal_location'))
10888: --
10889: ,p_last_medical_test_by =>
10890: hr_transaction_api.get_varchar2_value
10891: (p_transaction_step_id => p_transaction_step_id
10892: ,p_name =>upper('p_last_medical_test_by'))
10893: --
10894: ,p_last_medical_test_date =>

Line 10895: hr_transaction_api.get_date_value

10891: (p_transaction_step_id => p_transaction_step_id
10892: ,p_name =>upper('p_last_medical_test_by'))
10893: --
10894: ,p_last_medical_test_date =>
10895: hr_transaction_api.get_date_value
10896: (p_transaction_step_id => p_transaction_step_id
10897: ,p_name =>upper('p_last_medical_test_date'))
10898: --
10899: ,p_mailstop =>

Line 10900: hr_transaction_api.get_varchar2_value

10896: (p_transaction_step_id => p_transaction_step_id
10897: ,p_name =>upper('p_last_medical_test_date'))
10898: --
10899: ,p_mailstop =>
10900: hr_transaction_api.get_varchar2_value
10901: (p_transaction_step_id => p_transaction_step_id
10902: ,p_name =>upper('p_mailstop'))
10903: --
10904: ,p_office_number =>

Line 10905: hr_transaction_api.get_varchar2_value

10901: (p_transaction_step_id => p_transaction_step_id
10902: ,p_name =>upper('p_mailstop'))
10903: --
10904: ,p_office_number =>
10905: hr_transaction_api.get_varchar2_value
10906: (p_transaction_step_id => p_transaction_step_id
10907: ,p_name =>upper('p_office_number'))
10908: --
10909: ,p_on_military_service =>

Line 10910: hr_transaction_api.get_varchar2_value

10906: (p_transaction_step_id => p_transaction_step_id
10907: ,p_name =>upper('p_office_number'))
10908: --
10909: ,p_on_military_service =>
10910: hr_transaction_api.get_varchar2_value
10911: (p_transaction_step_id => p_transaction_step_id
10912: ,p_name =>upper('p_on_military_service'))
10913: --
10914: -- Bug 2652114

Line 10917: hr_transaction_api.get_date_value

10913: --
10914: -- Bug 2652114
10915: /*
10916: ,p_original_date_of_hire =>
10917: hr_transaction_api.get_date_value
10918: (p_transaction_step_id => p_transaction_step_id
10919: ,p_name =>upper('p_original_date_of_hire'))
10920: */
10921: --

Line 10923: hr_transaction_api.get_date_value

10919: ,p_name =>upper('p_original_date_of_hire'))
10920: */
10921: --
10922: ,p_projected_start_date =>
10923: hr_transaction_api.get_date_value
10924: (p_transaction_step_id => p_transaction_step_id
10925: ,p_name =>upper('p_projected_start_date'))
10926: --
10927: ,p_receipt_of_death_cert_date =>

Line 10928: hr_transaction_api.get_date_value

10924: (p_transaction_step_id => p_transaction_step_id
10925: ,p_name =>upper('p_projected_start_date'))
10926: --
10927: ,p_receipt_of_death_cert_date =>
10928: hr_transaction_api.get_date_value
10929: (p_transaction_step_id => p_transaction_step_id
10930: ,p_name =>upper('p_receipt_of_death_cert_date'))
10931: --
10932: ,p_region_of_birth =>

Line 10933: hr_transaction_api.get_varchar2_value

10929: (p_transaction_step_id => p_transaction_step_id
10930: ,p_name =>upper('p_receipt_of_death_cert_date'))
10931: --
10932: ,p_region_of_birth =>
10933: hr_transaction_api.get_varchar2_value
10934: (p_transaction_step_id => p_transaction_step_id
10935: ,p_name =>upper('p_region_of_birth'))
10936: --
10937: ,p_rehire_authorizor =>

Line 10938: hr_transaction_api.get_varchar2_value

10934: (p_transaction_step_id => p_transaction_step_id
10935: ,p_name =>upper('p_region_of_birth'))
10936: --
10937: ,p_rehire_authorizor =>
10938: hr_transaction_api.get_varchar2_value
10939: (p_transaction_step_id => p_transaction_step_id
10940: ,p_name =>upper('p_rehire_authorizor'))
10941: --
10942: ,p_rehire_recommendation =>

Line 10943: hr_transaction_api.get_varchar2_value

10939: (p_transaction_step_id => p_transaction_step_id
10940: ,p_name =>upper('p_rehire_authorizor'))
10941: --
10942: ,p_rehire_recommendation =>
10943: hr_transaction_api.get_varchar2_value
10944: (p_transaction_step_id => p_transaction_step_id
10945: ,p_name =>upper('p_rehire_recommendation'))
10946: --
10947: ,p_rehire_reason =>

Line 10948: hr_transaction_api.get_varchar2_value

10944: (p_transaction_step_id => p_transaction_step_id
10945: ,p_name =>upper('p_rehire_recommendation'))
10946: --
10947: ,p_rehire_reason =>
10948: hr_transaction_api.get_varchar2_value
10949: (p_transaction_step_id => p_transaction_step_id
10950: ,p_name =>upper('p_rehire_reason'))
10951: --
10952: ,p_resume_exists =>

Line 10953: hr_transaction_api.get_varchar2_value

10949: (p_transaction_step_id => p_transaction_step_id
10950: ,p_name =>upper('p_rehire_reason'))
10951: --
10952: ,p_resume_exists =>
10953: hr_transaction_api.get_varchar2_value
10954: (p_transaction_step_id => p_transaction_step_id
10955: ,p_name =>upper('p_resume_exists'))
10956: --
10957: ,p_resume_last_updated =>

Line 10958: hr_transaction_api.get_date_value

10954: (p_transaction_step_id => p_transaction_step_id
10955: ,p_name =>upper('p_resume_exists'))
10956: --
10957: ,p_resume_last_updated =>
10958: hr_transaction_api.get_date_value
10959: (p_transaction_step_id => p_transaction_step_id
10960: ,p_name =>upper('p_resume_last_updated'))
10961: --
10962: ,p_second_passport_exists =>

Line 10963: hr_transaction_api.get_varchar2_value

10959: (p_transaction_step_id => p_transaction_step_id
10960: ,p_name =>upper('p_resume_last_updated'))
10961: --
10962: ,p_second_passport_exists =>
10963: hr_transaction_api.get_varchar2_value
10964: (p_transaction_step_id => p_transaction_step_id
10965: ,p_name =>upper('p_second_passport_exists'))
10966: --
10967: ,p_student_status =>

Line 10968: hr_transaction_api.get_varchar2_value

10964: (p_transaction_step_id => p_transaction_step_id
10965: ,p_name =>upper('p_second_passport_exists'))
10966: --
10967: ,p_student_status =>
10968: hr_transaction_api.get_varchar2_value
10969: (p_transaction_step_id => p_transaction_step_id
10970: ,p_name =>upper('p_student_status'))
10971: --
10972: ,p_town_of_birth =>

Line 10973: hr_transaction_api.get_varchar2_value

10969: (p_transaction_step_id => p_transaction_step_id
10970: ,p_name =>upper('p_student_status'))
10971: --
10972: ,p_town_of_birth =>
10973: hr_transaction_api.get_varchar2_value
10974: (p_transaction_step_id => p_transaction_step_id
10975: ,p_name =>upper('p_town_of_birth'))
10976: --
10977: ,p_uses_tobacco_flag =>

Line 10978: hr_transaction_api.get_varchar2_value

10974: (p_transaction_step_id => p_transaction_step_id
10975: ,p_name =>upper('p_town_of_birth'))
10976: --
10977: ,p_uses_tobacco_flag =>
10978: hr_transaction_api.get_varchar2_value
10979: (p_transaction_step_id => p_transaction_step_id
10980: ,p_name =>upper('p_uses_tobacco_flag'))
10981: --
10982: ,p_vendor_id =>

Line 10983: hr_transaction_api.get_number_value

10979: (p_transaction_step_id => p_transaction_step_id
10980: ,p_name =>upper('p_uses_tobacco_flag'))
10981: --
10982: ,p_vendor_id =>
10983: hr_transaction_api.get_number_value
10984: (p_transaction_step_id => p_transaction_step_id
10985: ,p_name =>upper('p_vendor_id'))
10986: --
10987: ,p_work_schedule =>

Line 10988: hr_transaction_api.get_varchar2_value

10984: (p_transaction_step_id => p_transaction_step_id
10985: ,p_name =>upper('p_vendor_id'))
10986: --
10987: ,p_work_schedule =>
10988: hr_transaction_api.get_varchar2_value
10989: (p_transaction_step_id => p_transaction_step_id
10990: ,p_name =>upper('p_work_schedule'))
10991: --
10992: ,p_effective_start_date => l_per_effective_start_date

Line 11043: hr_transaction_api.get_VARCHAR2_value

11039:
11040: l_addl_primary_contact_flag := 'N';
11041: else
11042: l_addl_primary_contact_flag :=
11043: hr_transaction_api.get_VARCHAR2_value
11044: (p_transaction_step_id => p_transaction_step_id
11045: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
11046: end if;
11047: --

Line 11055: hr_transaction_api.get_NUMBER_value

11051: --
11052: ,P_START_DATE => l_effective_date
11053: --
11054: ,P_BUSINESS_GROUP_ID =>
11055: hr_transaction_api.get_NUMBER_value
11056: (p_transaction_step_id => p_transaction_step_id
11057: ,p_name => 'P_BUSINESS_GROUP_ID')
11058: --
11059: ,P_PERSON_ID => l_person_id

Line 11066: hr_transaction_api.get_VARCHAR2_value

11062: --
11063: ,P_CONTACT_TYPE => l_dpdnt_bnf_contact_type
11064: --
11065: ,P_CTR_COMMENTS =>
11066: hr_transaction_api.get_VARCHAR2_value
11067: (p_transaction_step_id => p_transaction_step_id
11068: ,p_name => 'P_CTR_COMMENTS')
11069: --
11070: -- Bug # 2115552

Line 11074: hr_transaction_api.get_VARCHAR2_value

11070: -- Bug # 2115552
11071: ,P_PRIMARY_CONTACT_FLAG => l_addl_primary_contact_flag
11072:
11073: /* ,P_PRIMARY_CONTACT_FLAG =>
11074: hr_transaction_api.get_VARCHAR2_value
11075: (p_transaction_step_id => p_transaction_step_id
11076: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
11077: */
11078: --

Line 11080: hr_transaction_api.get_DATE_value

11076: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
11077: */
11078: --
11079: ,P_DATE_START =>
11080: hr_transaction_api.get_DATE_value
11081: (p_transaction_step_id => p_transaction_step_id
11082: ,p_name => 'P_DATE_START')
11083: --
11084: ,P_START_LIFE_REASON_ID =>

Line 11085: hr_transaction_api.get_NUMBER_value

11081: (p_transaction_step_id => p_transaction_step_id
11082: ,p_name => 'P_DATE_START')
11083: --
11084: ,P_START_LIFE_REASON_ID =>
11085: hr_transaction_api.get_NUMBER_value
11086: (p_transaction_step_id => p_transaction_step_id
11087: ,p_name => 'P_START_LIFE_REASON_ID')
11088: --
11089: ,P_DATE_END =>

Line 11090: hr_transaction_api.get_DATE_value

11086: (p_transaction_step_id => p_transaction_step_id
11087: ,p_name => 'P_START_LIFE_REASON_ID')
11088: --
11089: ,P_DATE_END =>
11090: hr_transaction_api.get_DATE_value
11091: (p_transaction_step_id => p_transaction_step_id
11092: ,p_name => 'P_DATE_END')
11093: --
11094: ,P_END_LIFE_REASON_ID =>

Line 11095: hr_transaction_api.get_NUMBER_value

11091: (p_transaction_step_id => p_transaction_step_id
11092: ,p_name => 'P_DATE_END')
11093: --
11094: ,P_END_LIFE_REASON_ID =>
11095: hr_transaction_api.get_NUMBER_value
11096: (p_transaction_step_id => p_transaction_step_id
11097: ,p_name => 'P_END_LIFE_REASON_ID')
11098: --
11099: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 11100: hr_transaction_api.get_VARCHAR2_value

11096: (p_transaction_step_id => p_transaction_step_id
11097: ,p_name => 'P_END_LIFE_REASON_ID')
11098: --
11099: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
11100: hr_transaction_api.get_VARCHAR2_value
11101: (p_transaction_step_id => p_transaction_step_id
11102: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
11103: --
11104: ,P_PERSONAL_FLAG => l_dpdnt_bnf_personal_flag

Line 11107: hr_transaction_api.get_NUMBER_value

11103: --
11104: ,P_PERSONAL_FLAG => l_dpdnt_bnf_personal_flag
11105: --
11106: ,P_SEQUENCE_NUMBER =>
11107: hr_transaction_api.get_NUMBER_value
11108: (p_transaction_step_id => p_transaction_step_id
11109: ,p_name => 'P_SEQUENCE_NUMBER')
11110: --
11111: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 11112: hr_transaction_api.get_VARCHAR2_value

11108: (p_transaction_step_id => p_transaction_step_id
11109: ,p_name => 'P_SEQUENCE_NUMBER')
11110: --
11111: ,P_CONT_ATTRIBUTE_CATEGORY =>
11112: hr_transaction_api.get_VARCHAR2_value
11113: (p_transaction_step_id => p_transaction_step_id
11114: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
11115: --
11116: ,P_CONT_ATTRIBUTE1 =>

Line 11117: hr_transaction_api.get_VARCHAR2_value

11113: (p_transaction_step_id => p_transaction_step_id
11114: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
11115: --
11116: ,P_CONT_ATTRIBUTE1 =>
11117: hr_transaction_api.get_VARCHAR2_value
11118: (p_transaction_step_id => p_transaction_step_id
11119: ,p_name => 'P_CONT_ATTRIBUTE1')
11120: --
11121: ,P_CONT_ATTRIBUTE2 =>

Line 11122: hr_transaction_api.get_VARCHAR2_value

11118: (p_transaction_step_id => p_transaction_step_id
11119: ,p_name => 'P_CONT_ATTRIBUTE1')
11120: --
11121: ,P_CONT_ATTRIBUTE2 =>
11122: hr_transaction_api.get_VARCHAR2_value
11123: (p_transaction_step_id => p_transaction_step_id
11124: ,p_name => 'P_CONT_ATTRIBUTE2')
11125: --
11126: ,P_CONT_ATTRIBUTE3 =>

Line 11127: hr_transaction_api.get_VARCHAR2_value

11123: (p_transaction_step_id => p_transaction_step_id
11124: ,p_name => 'P_CONT_ATTRIBUTE2')
11125: --
11126: ,P_CONT_ATTRIBUTE3 =>
11127: hr_transaction_api.get_VARCHAR2_value
11128: (p_transaction_step_id => p_transaction_step_id
11129: ,p_name => 'P_CONT_ATTRIBUTE3')
11130: --
11131: ,P_CONT_ATTRIBUTE4 =>

Line 11132: hr_transaction_api.get_VARCHAR2_value

11128: (p_transaction_step_id => p_transaction_step_id
11129: ,p_name => 'P_CONT_ATTRIBUTE3')
11130: --
11131: ,P_CONT_ATTRIBUTE4 =>
11132: hr_transaction_api.get_VARCHAR2_value
11133: (p_transaction_step_id => p_transaction_step_id
11134: ,p_name => 'P_CONT_ATTRIBUTE4')
11135: --
11136: ,P_CONT_ATTRIBUTE5 =>

Line 11137: hr_transaction_api.get_VARCHAR2_value

11133: (p_transaction_step_id => p_transaction_step_id
11134: ,p_name => 'P_CONT_ATTRIBUTE4')
11135: --
11136: ,P_CONT_ATTRIBUTE5 =>
11137: hr_transaction_api.get_VARCHAR2_value
11138: (p_transaction_step_id => p_transaction_step_id
11139: ,p_name => 'P_CONT_ATTRIBUTE5')
11140: --
11141: ,P_CONT_ATTRIBUTE6 =>

Line 11142: hr_transaction_api.get_VARCHAR2_value

11138: (p_transaction_step_id => p_transaction_step_id
11139: ,p_name => 'P_CONT_ATTRIBUTE5')
11140: --
11141: ,P_CONT_ATTRIBUTE6 =>
11142: hr_transaction_api.get_VARCHAR2_value
11143: (p_transaction_step_id => p_transaction_step_id
11144: ,p_name => 'P_CONT_ATTRIBUTE6')
11145: --
11146: ,P_CONT_ATTRIBUTE7 =>

Line 11147: hr_transaction_api.get_VARCHAR2_value

11143: (p_transaction_step_id => p_transaction_step_id
11144: ,p_name => 'P_CONT_ATTRIBUTE6')
11145: --
11146: ,P_CONT_ATTRIBUTE7 =>
11147: hr_transaction_api.get_VARCHAR2_value
11148: (p_transaction_step_id => p_transaction_step_id
11149: ,p_name => 'P_CONT_ATTRIBUTE7')
11150: --
11151: ,P_CONT_ATTRIBUTE8 =>

Line 11152: hr_transaction_api.get_VARCHAR2_value

11148: (p_transaction_step_id => p_transaction_step_id
11149: ,p_name => 'P_CONT_ATTRIBUTE7')
11150: --
11151: ,P_CONT_ATTRIBUTE8 =>
11152: hr_transaction_api.get_VARCHAR2_value
11153: (p_transaction_step_id => p_transaction_step_id
11154: ,p_name => 'P_CONT_ATTRIBUTE8')
11155: --
11156: ,P_CONT_ATTRIBUTE9 =>

Line 11157: hr_transaction_api.get_VARCHAR2_value

11153: (p_transaction_step_id => p_transaction_step_id
11154: ,p_name => 'P_CONT_ATTRIBUTE8')
11155: --
11156: ,P_CONT_ATTRIBUTE9 =>
11157: hr_transaction_api.get_VARCHAR2_value
11158: (p_transaction_step_id => p_transaction_step_id
11159: ,p_name => 'P_CONT_ATTRIBUTE9')
11160: --
11161: ,P_CONT_ATTRIBUTE10 =>

Line 11162: hr_transaction_api.get_VARCHAR2_value

11158: (p_transaction_step_id => p_transaction_step_id
11159: ,p_name => 'P_CONT_ATTRIBUTE9')
11160: --
11161: ,P_CONT_ATTRIBUTE10 =>
11162: hr_transaction_api.get_VARCHAR2_value
11163: (p_transaction_step_id => p_transaction_step_id
11164: ,p_name => 'P_CONT_ATTRIBUTE10')
11165: --
11166: ,P_CONT_ATTRIBUTE11 =>

Line 11167: hr_transaction_api.get_VARCHAR2_value

11163: (p_transaction_step_id => p_transaction_step_id
11164: ,p_name => 'P_CONT_ATTRIBUTE10')
11165: --
11166: ,P_CONT_ATTRIBUTE11 =>
11167: hr_transaction_api.get_VARCHAR2_value
11168: (p_transaction_step_id => p_transaction_step_id
11169: ,p_name => 'P_CONT_ATTRIBUTE11')
11170: --
11171: ,P_CONT_ATTRIBUTE12 =>

Line 11172: hr_transaction_api.get_VARCHAR2_value

11168: (p_transaction_step_id => p_transaction_step_id
11169: ,p_name => 'P_CONT_ATTRIBUTE11')
11170: --
11171: ,P_CONT_ATTRIBUTE12 =>
11172: hr_transaction_api.get_VARCHAR2_value
11173: (p_transaction_step_id => p_transaction_step_id
11174: ,p_name => 'P_CONT_ATTRIBUTE12')
11175: --
11176: ,P_CONT_ATTRIBUTE13 =>

Line 11177: hr_transaction_api.get_VARCHAR2_value

11173: (p_transaction_step_id => p_transaction_step_id
11174: ,p_name => 'P_CONT_ATTRIBUTE12')
11175: --
11176: ,P_CONT_ATTRIBUTE13 =>
11177: hr_transaction_api.get_VARCHAR2_value
11178: (p_transaction_step_id => p_transaction_step_id
11179: ,p_name => 'P_CONT_ATTRIBUTE13')
11180: --
11181: ,P_CONT_ATTRIBUTE14 =>

Line 11182: hr_transaction_api.get_VARCHAR2_value

11178: (p_transaction_step_id => p_transaction_step_id
11179: ,p_name => 'P_CONT_ATTRIBUTE13')
11180: --
11181: ,P_CONT_ATTRIBUTE14 =>
11182: hr_transaction_api.get_VARCHAR2_value
11183: (p_transaction_step_id => p_transaction_step_id
11184: ,p_name => 'P_CONT_ATTRIBUTE14')
11185: --
11186: ,P_CONT_ATTRIBUTE15 =>

Line 11187: hr_transaction_api.get_VARCHAR2_value

11183: (p_transaction_step_id => p_transaction_step_id
11184: ,p_name => 'P_CONT_ATTRIBUTE14')
11185: --
11186: ,P_CONT_ATTRIBUTE15 =>
11187: hr_transaction_api.get_VARCHAR2_value
11188: (p_transaction_step_id => p_transaction_step_id
11189: ,p_name => 'P_CONT_ATTRIBUTE15')
11190: --
11191: ,P_CONT_ATTRIBUTE16 =>

Line 11192: hr_transaction_api.get_VARCHAR2_value

11188: (p_transaction_step_id => p_transaction_step_id
11189: ,p_name => 'P_CONT_ATTRIBUTE15')
11190: --
11191: ,P_CONT_ATTRIBUTE16 =>
11192: hr_transaction_api.get_VARCHAR2_value
11193: (p_transaction_step_id => p_transaction_step_id
11194: ,p_name => 'P_CONT_ATTRIBUTE16')
11195: --
11196: ,P_CONT_ATTRIBUTE17 =>

Line 11197: hr_transaction_api.get_VARCHAR2_value

11193: (p_transaction_step_id => p_transaction_step_id
11194: ,p_name => 'P_CONT_ATTRIBUTE16')
11195: --
11196: ,P_CONT_ATTRIBUTE17 =>
11197: hr_transaction_api.get_VARCHAR2_value
11198: (p_transaction_step_id => p_transaction_step_id
11199: ,p_name => 'P_CONT_ATTRIBUTE17')
11200: --
11201: ,P_CONT_ATTRIBUTE18 =>

Line 11202: hr_transaction_api.get_VARCHAR2_value

11198: (p_transaction_step_id => p_transaction_step_id
11199: ,p_name => 'P_CONT_ATTRIBUTE17')
11200: --
11201: ,P_CONT_ATTRIBUTE18 =>
11202: hr_transaction_api.get_VARCHAR2_value
11203: (p_transaction_step_id => p_transaction_step_id
11204: ,p_name => 'P_CONT_ATTRIBUTE18')
11205: --
11206: ,P_CONT_ATTRIBUTE19 =>

Line 11207: hr_transaction_api.get_VARCHAR2_value

11203: (p_transaction_step_id => p_transaction_step_id
11204: ,p_name => 'P_CONT_ATTRIBUTE18')
11205: --
11206: ,P_CONT_ATTRIBUTE19 =>
11207: hr_transaction_api.get_VARCHAR2_value
11208: (p_transaction_step_id => p_transaction_step_id
11209: ,p_name => 'P_CONT_ATTRIBUTE19')
11210: --
11211: ,P_CONT_ATTRIBUTE20 =>

Line 11212: hr_transaction_api.get_VARCHAR2_value

11208: (p_transaction_step_id => p_transaction_step_id
11209: ,p_name => 'P_CONT_ATTRIBUTE19')
11210: --
11211: ,P_CONT_ATTRIBUTE20 =>
11212: hr_transaction_api.get_VARCHAR2_value
11213: (p_transaction_step_id => p_transaction_step_id
11214: ,p_name => 'P_CONT_ATTRIBUTE20')
11215: --
11216: ,P_THIRD_PARTY_PAY_FLAG =>

Line 11217: hr_transaction_api.get_VARCHAR2_value

11213: (p_transaction_step_id => p_transaction_step_id
11214: ,p_name => 'P_CONT_ATTRIBUTE20')
11215: --
11216: ,P_THIRD_PARTY_PAY_FLAG =>
11217: hr_transaction_api.get_VARCHAR2_value
11218: (p_transaction_step_id => p_transaction_step_id
11219: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
11220: --
11221: ,P_BONDHOLDER_FLAG =>

Line 11222: hr_transaction_api.get_VARCHAR2_value

11218: (p_transaction_step_id => p_transaction_step_id
11219: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
11220: --
11221: ,P_BONDHOLDER_FLAG =>
11222: hr_transaction_api.get_VARCHAR2_value
11223: (p_transaction_step_id => p_transaction_step_id
11224: ,p_name => 'P_BONDHOLDER_FLAG')
11225: --
11226: ,P_DEPENDENT_FLAG =>

Line 11227: hr_transaction_api.get_VARCHAR2_value

11223: (p_transaction_step_id => p_transaction_step_id
11224: ,p_name => 'P_BONDHOLDER_FLAG')
11225: --
11226: ,P_DEPENDENT_FLAG =>
11227: hr_transaction_api.get_VARCHAR2_value
11228: (p_transaction_step_id => p_transaction_step_id
11229: ,p_name => 'P_DEPENDENT_FLAG')
11230: --
11231: ,P_BENEFICIARY_FLAG =>

Line 11232: hr_transaction_api.get_VARCHAR2_value

11228: (p_transaction_step_id => p_transaction_step_id
11229: ,p_name => 'P_DEPENDENT_FLAG')
11230: --
11231: ,P_BENEFICIARY_FLAG =>
11232: hr_transaction_api.get_VARCHAR2_value
11233: (p_transaction_step_id => p_transaction_step_id
11234: ,p_name => 'P_BENEFICIARY_FLAG')
11235: --
11236: ,P_CREATE_MIRROR_FLAG => l_CREATE_MIRROR_FLAG

Line 11241: hr_transaction_api.get_VARCHAR2_value

11237: --
11238: ,P_MIRROR_TYPE => l_MIRROR_TYPE
11239: --
11240: ,P_MIRROR_CONT_ATTRIBUTE_CAT =>
11241: hr_transaction_api.get_VARCHAR2_value
11242: (p_transaction_step_id => p_transaction_step_id
11243: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
11244: --
11245: ,P_MIRROR_CONT_ATTRIBUTE1 =>

Line 11246: hr_transaction_api.get_VARCHAR2_value

11242: (p_transaction_step_id => p_transaction_step_id
11243: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
11244: --
11245: ,P_MIRROR_CONT_ATTRIBUTE1 =>
11246: hr_transaction_api.get_VARCHAR2_value
11247: (p_transaction_step_id => p_transaction_step_id
11248: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
11249: --
11250: ,P_MIRROR_CONT_ATTRIBUTE2 =>

Line 11251: hr_transaction_api.get_VARCHAR2_value

11247: (p_transaction_step_id => p_transaction_step_id
11248: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
11249: --
11250: ,P_MIRROR_CONT_ATTRIBUTE2 =>
11251: hr_transaction_api.get_VARCHAR2_value
11252: (p_transaction_step_id => p_transaction_step_id
11253: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
11254: --
11255: ,P_MIRROR_CONT_ATTRIBUTE3 =>

Line 11256: hr_transaction_api.get_VARCHAR2_value

11252: (p_transaction_step_id => p_transaction_step_id
11253: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
11254: --
11255: ,P_MIRROR_CONT_ATTRIBUTE3 =>
11256: hr_transaction_api.get_VARCHAR2_value
11257: (p_transaction_step_id => p_transaction_step_id
11258: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
11259: --
11260: ,P_MIRROR_CONT_ATTRIBUTE4 =>

Line 11261: hr_transaction_api.get_VARCHAR2_value

11257: (p_transaction_step_id => p_transaction_step_id
11258: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
11259: --
11260: ,P_MIRROR_CONT_ATTRIBUTE4 =>
11261: hr_transaction_api.get_VARCHAR2_value
11262: (p_transaction_step_id => p_transaction_step_id
11263: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
11264: --
11265: ,P_MIRROR_CONT_ATTRIBUTE5 =>

Line 11266: hr_transaction_api.get_VARCHAR2_value

11262: (p_transaction_step_id => p_transaction_step_id
11263: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
11264: --
11265: ,P_MIRROR_CONT_ATTRIBUTE5 =>
11266: hr_transaction_api.get_VARCHAR2_value
11267: (p_transaction_step_id => p_transaction_step_id
11268: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
11269: --
11270: ,P_MIRROR_CONT_ATTRIBUTE6 =>

Line 11271: hr_transaction_api.get_VARCHAR2_value

11267: (p_transaction_step_id => p_transaction_step_id
11268: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
11269: --
11270: ,P_MIRROR_CONT_ATTRIBUTE6 =>
11271: hr_transaction_api.get_VARCHAR2_value
11272: (p_transaction_step_id => p_transaction_step_id
11273: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
11274: --
11275: ,P_MIRROR_CONT_ATTRIBUTE7 =>

Line 11276: hr_transaction_api.get_VARCHAR2_value

11272: (p_transaction_step_id => p_transaction_step_id
11273: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
11274: --
11275: ,P_MIRROR_CONT_ATTRIBUTE7 =>
11276: hr_transaction_api.get_VARCHAR2_value
11277: (p_transaction_step_id => p_transaction_step_id
11278: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
11279: --
11280: ,P_MIRROR_CONT_ATTRIBUTE8 =>

Line 11281: hr_transaction_api.get_VARCHAR2_value

11277: (p_transaction_step_id => p_transaction_step_id
11278: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
11279: --
11280: ,P_MIRROR_CONT_ATTRIBUTE8 =>
11281: hr_transaction_api.get_VARCHAR2_value
11282: (p_transaction_step_id => p_transaction_step_id
11283: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
11284: --
11285: ,P_MIRROR_CONT_ATTRIBUTE9 =>

Line 11286: hr_transaction_api.get_VARCHAR2_value

11282: (p_transaction_step_id => p_transaction_step_id
11283: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
11284: --
11285: ,P_MIRROR_CONT_ATTRIBUTE9 =>
11286: hr_transaction_api.get_VARCHAR2_value
11287: (p_transaction_step_id => p_transaction_step_id
11288: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
11289: --
11290: ,P_MIRROR_CONT_ATTRIBUTE10 =>

Line 11291: hr_transaction_api.get_VARCHAR2_value

11287: (p_transaction_step_id => p_transaction_step_id
11288: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
11289: --
11290: ,P_MIRROR_CONT_ATTRIBUTE10 =>
11291: hr_transaction_api.get_VARCHAR2_value
11292: (p_transaction_step_id => p_transaction_step_id
11293: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
11294: --
11295: ,P_MIRROR_CONT_ATTRIBUTE11 =>

Line 11296: hr_transaction_api.get_VARCHAR2_value

11292: (p_transaction_step_id => p_transaction_step_id
11293: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
11294: --
11295: ,P_MIRROR_CONT_ATTRIBUTE11 =>
11296: hr_transaction_api.get_VARCHAR2_value
11297: (p_transaction_step_id => p_transaction_step_id
11298: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
11299: --
11300: ,P_MIRROR_CONT_ATTRIBUTE12 =>

Line 11301: hr_transaction_api.get_VARCHAR2_value

11297: (p_transaction_step_id => p_transaction_step_id
11298: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
11299: --
11300: ,P_MIRROR_CONT_ATTRIBUTE12 =>
11301: hr_transaction_api.get_VARCHAR2_value
11302: (p_transaction_step_id => p_transaction_step_id
11303: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
11304: --
11305: ,P_MIRROR_CONT_ATTRIBUTE13 =>

Line 11306: hr_transaction_api.get_VARCHAR2_value

11302: (p_transaction_step_id => p_transaction_step_id
11303: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
11304: --
11305: ,P_MIRROR_CONT_ATTRIBUTE13 =>
11306: hr_transaction_api.get_VARCHAR2_value
11307: (p_transaction_step_id => p_transaction_step_id
11308: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
11309: --
11310: ,P_MIRROR_CONT_ATTRIBUTE14 =>

Line 11311: hr_transaction_api.get_VARCHAR2_value

11307: (p_transaction_step_id => p_transaction_step_id
11308: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
11309: --
11310: ,P_MIRROR_CONT_ATTRIBUTE14 =>
11311: hr_transaction_api.get_VARCHAR2_value
11312: (p_transaction_step_id => p_transaction_step_id
11313: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
11314: --
11315: ,P_MIRROR_CONT_ATTRIBUTE15 =>

Line 11316: hr_transaction_api.get_VARCHAR2_value

11312: (p_transaction_step_id => p_transaction_step_id
11313: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
11314: --
11315: ,P_MIRROR_CONT_ATTRIBUTE15 =>
11316: hr_transaction_api.get_VARCHAR2_value
11317: (p_transaction_step_id => p_transaction_step_id
11318: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
11319: --
11320: ,P_MIRROR_CONT_ATTRIBUTE16 =>

Line 11321: hr_transaction_api.get_VARCHAR2_value

11317: (p_transaction_step_id => p_transaction_step_id
11318: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
11319: --
11320: ,P_MIRROR_CONT_ATTRIBUTE16 =>
11321: hr_transaction_api.get_VARCHAR2_value
11322: (p_transaction_step_id => p_transaction_step_id
11323: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
11324: --
11325: ,P_MIRROR_CONT_ATTRIBUTE17 =>

Line 11326: hr_transaction_api.get_VARCHAR2_value

11322: (p_transaction_step_id => p_transaction_step_id
11323: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
11324: --
11325: ,P_MIRROR_CONT_ATTRIBUTE17 =>
11326: hr_transaction_api.get_VARCHAR2_value
11327: (p_transaction_step_id => p_transaction_step_id
11328: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
11329: --
11330: ,P_MIRROR_CONT_ATTRIBUTE18 =>

Line 11331: hr_transaction_api.get_VARCHAR2_value

11327: (p_transaction_step_id => p_transaction_step_id
11328: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
11329: --
11330: ,P_MIRROR_CONT_ATTRIBUTE18 =>
11331: hr_transaction_api.get_VARCHAR2_value
11332: (p_transaction_step_id => p_transaction_step_id
11333: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
11334: --
11335: ,P_MIRROR_CONT_ATTRIBUTE19 =>

Line 11336: hr_transaction_api.get_VARCHAR2_value

11332: (p_transaction_step_id => p_transaction_step_id
11333: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
11334: --
11335: ,P_MIRROR_CONT_ATTRIBUTE19 =>
11336: hr_transaction_api.get_VARCHAR2_value
11337: (p_transaction_step_id => p_transaction_step_id
11338: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
11339: --
11340: ,P_MIRROR_CONT_ATTRIBUTE20 =>

Line 11341: hr_transaction_api.get_VARCHAR2_value

11337: (p_transaction_step_id => p_transaction_step_id
11338: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
11339: --
11340: ,P_MIRROR_CONT_ATTRIBUTE20 =>
11341: hr_transaction_api.get_VARCHAR2_value
11342: (p_transaction_step_id => p_transaction_step_id
11343: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE20')
11344: --
11345:

Line 11367: hr_transaction_api.get_VARCHAR2_value

11363: --
11364: ,P_ORIG_HIRE_WARNING => L_CON_ORIG_HIRE_WARNING1
11365: --
11366: ,P_CONT_INFORMATION_CATEGORY =>
11367: hr_transaction_api.get_VARCHAR2_value
11368: (p_transaction_step_id => p_transaction_step_id
11369: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
11370: --
11371: ,P_CONT_INFORMATION1 =>

Line 11372: hr_transaction_api.get_VARCHAR2_value

11368: (p_transaction_step_id => p_transaction_step_id
11369: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
11370: --
11371: ,P_CONT_INFORMATION1 =>
11372: hr_transaction_api.get_VARCHAR2_value
11373: (p_transaction_step_id => p_transaction_step_id
11374: ,p_name => 'P_CONT_INFORMATION1')
11375: --
11376: ,P_CONT_INFORMATION2 =>

Line 11377: hr_transaction_api.get_VARCHAR2_value

11373: (p_transaction_step_id => p_transaction_step_id
11374: ,p_name => 'P_CONT_INFORMATION1')
11375: --
11376: ,P_CONT_INFORMATION2 =>
11377: hr_transaction_api.get_VARCHAR2_value
11378: (p_transaction_step_id => p_transaction_step_id
11379: ,p_name => 'P_CONT_INFORMATION2')
11380: --
11381: ,P_CONT_INFORMATION3 =>

Line 11382: hr_transaction_api.get_VARCHAR2_value

11378: (p_transaction_step_id => p_transaction_step_id
11379: ,p_name => 'P_CONT_INFORMATION2')
11380: --
11381: ,P_CONT_INFORMATION3 =>
11382: hr_transaction_api.get_VARCHAR2_value
11383: (p_transaction_step_id => p_transaction_step_id
11384: ,p_name => 'P_CONT_INFORMATION3')
11385: --
11386: ,P_CONT_INFORMATION4 =>

Line 11387: hr_transaction_api.get_VARCHAR2_value

11383: (p_transaction_step_id => p_transaction_step_id
11384: ,p_name => 'P_CONT_INFORMATION3')
11385: --
11386: ,P_CONT_INFORMATION4 =>
11387: hr_transaction_api.get_VARCHAR2_value
11388: (p_transaction_step_id => p_transaction_step_id
11389: ,p_name => 'P_CONT_INFORMATION4')
11390: --
11391: ,P_CONT_INFORMATION5 =>

Line 11392: hr_transaction_api.get_VARCHAR2_value

11388: (p_transaction_step_id => p_transaction_step_id
11389: ,p_name => 'P_CONT_INFORMATION4')
11390: --
11391: ,P_CONT_INFORMATION5 =>
11392: hr_transaction_api.get_VARCHAR2_value
11393: (p_transaction_step_id => p_transaction_step_id
11394: ,p_name => 'P_CONT_INFORMATION5')
11395: --
11396: ,P_CONT_INFORMATION6 =>

Line 11397: hr_transaction_api.get_VARCHAR2_value

11393: (p_transaction_step_id => p_transaction_step_id
11394: ,p_name => 'P_CONT_INFORMATION5')
11395: --
11396: ,P_CONT_INFORMATION6 =>
11397: hr_transaction_api.get_VARCHAR2_value
11398: (p_transaction_step_id => p_transaction_step_id
11399: ,p_name => 'P_CONT_INFORMATION6')
11400: --
11401: ,P_CONT_INFORMATION7 =>

Line 11402: hr_transaction_api.get_VARCHAR2_value

11398: (p_transaction_step_id => p_transaction_step_id
11399: ,p_name => 'P_CONT_INFORMATION6')
11400: --
11401: ,P_CONT_INFORMATION7 =>
11402: hr_transaction_api.get_VARCHAR2_value
11403: (p_transaction_step_id => p_transaction_step_id
11404: ,p_name => 'P_CONT_INFORMATION7')
11405: --
11406: ,P_CONT_INFORMATION8 =>

Line 11407: hr_transaction_api.get_VARCHAR2_value

11403: (p_transaction_step_id => p_transaction_step_id
11404: ,p_name => 'P_CONT_INFORMATION7')
11405: --
11406: ,P_CONT_INFORMATION8 =>
11407: hr_transaction_api.get_VARCHAR2_value
11408: (p_transaction_step_id => p_transaction_step_id
11409: ,p_name => 'P_CONT_INFORMATION8')
11410: --
11411: ,P_CONT_INFORMATION9 =>

Line 11412: hr_transaction_api.get_VARCHAR2_value

11408: (p_transaction_step_id => p_transaction_step_id
11409: ,p_name => 'P_CONT_INFORMATION8')
11410: --
11411: ,P_CONT_INFORMATION9 =>
11412: hr_transaction_api.get_VARCHAR2_value
11413: (p_transaction_step_id => p_transaction_step_id
11414: ,p_name => 'P_CONT_INFORMATION9')
11415: --
11416: ,P_CONT_INFORMATION10 =>

Line 11417: hr_transaction_api.get_VARCHAR2_value

11413: (p_transaction_step_id => p_transaction_step_id
11414: ,p_name => 'P_CONT_INFORMATION9')
11415: --
11416: ,P_CONT_INFORMATION10 =>
11417: hr_transaction_api.get_VARCHAR2_value
11418: (p_transaction_step_id => p_transaction_step_id
11419: ,p_name => 'P_CONT_INFORMATION10')
11420: --
11421: ,P_CONT_INFORMATION11 =>

Line 11422: hr_transaction_api.get_VARCHAR2_value

11418: (p_transaction_step_id => p_transaction_step_id
11419: ,p_name => 'P_CONT_INFORMATION10')
11420: --
11421: ,P_CONT_INFORMATION11 =>
11422: hr_transaction_api.get_VARCHAR2_value
11423: (p_transaction_step_id => p_transaction_step_id
11424: ,p_name => 'P_CONT_INFORMATION11')
11425: --
11426: ,P_CONT_INFORMATION12 =>

Line 11427: hr_transaction_api.get_VARCHAR2_value

11423: (p_transaction_step_id => p_transaction_step_id
11424: ,p_name => 'P_CONT_INFORMATION11')
11425: --
11426: ,P_CONT_INFORMATION12 =>
11427: hr_transaction_api.get_VARCHAR2_value
11428: (p_transaction_step_id => p_transaction_step_id
11429: ,p_name => 'P_CONT_INFORMATION12')
11430: --
11431: ,P_CONT_INFORMATION13 =>

Line 11432: hr_transaction_api.get_VARCHAR2_value

11428: (p_transaction_step_id => p_transaction_step_id
11429: ,p_name => 'P_CONT_INFORMATION12')
11430: --
11431: ,P_CONT_INFORMATION13 =>
11432: hr_transaction_api.get_VARCHAR2_value
11433: (p_transaction_step_id => p_transaction_step_id
11434: ,p_name => 'P_CONT_INFORMATION13')
11435: --
11436: ,P_CONT_INFORMATION14 =>

Line 11437: hr_transaction_api.get_VARCHAR2_value

11433: (p_transaction_step_id => p_transaction_step_id
11434: ,p_name => 'P_CONT_INFORMATION13')
11435: --
11436: ,P_CONT_INFORMATION14 =>
11437: hr_transaction_api.get_VARCHAR2_value
11438: (p_transaction_step_id => p_transaction_step_id
11439: ,p_name => 'P_CONT_INFORMATION14')
11440: --
11441: ,P_CONT_INFORMATION15 =>

Line 11442: hr_transaction_api.get_VARCHAR2_value

11438: (p_transaction_step_id => p_transaction_step_id
11439: ,p_name => 'P_CONT_INFORMATION14')
11440: --
11441: ,P_CONT_INFORMATION15 =>
11442: hr_transaction_api.get_VARCHAR2_value
11443: (p_transaction_step_id => p_transaction_step_id
11444: ,p_name => 'P_CONT_INFORMATION15')
11445: --
11446: ,P_CONT_INFORMATION16 =>

Line 11447: hr_transaction_api.get_VARCHAR2_value

11443: (p_transaction_step_id => p_transaction_step_id
11444: ,p_name => 'P_CONT_INFORMATION15')
11445: --
11446: ,P_CONT_INFORMATION16 =>
11447: hr_transaction_api.get_VARCHAR2_value
11448: (p_transaction_step_id => p_transaction_step_id
11449: ,p_name => 'P_CONT_INFORMATION16')
11450: --
11451: ,P_CONT_INFORMATION17 =>

Line 11452: hr_transaction_api.get_VARCHAR2_value

11448: (p_transaction_step_id => p_transaction_step_id
11449: ,p_name => 'P_CONT_INFORMATION16')
11450: --
11451: ,P_CONT_INFORMATION17 =>
11452: hr_transaction_api.get_VARCHAR2_value
11453: (p_transaction_step_id => p_transaction_step_id
11454: ,p_name => 'P_CONT_INFORMATION17')
11455: --
11456: ,P_CONT_INFORMATION18 =>

Line 11457: hr_transaction_api.get_VARCHAR2_value

11453: (p_transaction_step_id => p_transaction_step_id
11454: ,p_name => 'P_CONT_INFORMATION17')
11455: --
11456: ,P_CONT_INFORMATION18 =>
11457: hr_transaction_api.get_VARCHAR2_value
11458: (p_transaction_step_id => p_transaction_step_id
11459: ,p_name => 'P_CONT_INFORMATION18')
11460: --
11461: ,P_CONT_INFORMATION19 =>

Line 11462: hr_transaction_api.get_VARCHAR2_value

11458: (p_transaction_step_id => p_transaction_step_id
11459: ,p_name => 'P_CONT_INFORMATION18')
11460: --
11461: ,P_CONT_INFORMATION19 =>
11462: hr_transaction_api.get_VARCHAR2_value
11463: (p_transaction_step_id => p_transaction_step_id
11464: ,p_name => 'P_CONT_INFORMATION19')
11465: --
11466: ,P_CONT_INFORMATION20 =>

Line 11467: hr_transaction_api.get_VARCHAR2_value

11463: (p_transaction_step_id => p_transaction_step_id
11464: ,p_name => 'P_CONT_INFORMATION19')
11465: --
11466: ,P_CONT_INFORMATION20 =>
11467: hr_transaction_api.get_VARCHAR2_value
11468: (p_transaction_step_id => p_transaction_step_id
11469: ,p_name => 'P_CONT_INFORMATION20')
11470: --
11471: ,P_MIRROR_CONT_INFORMATION_CAT =>

Line 11472: hr_transaction_api.get_VARCHAR2_value

11468: (p_transaction_step_id => p_transaction_step_id
11469: ,p_name => 'P_CONT_INFORMATION20')
11470: --
11471: ,P_MIRROR_CONT_INFORMATION_CAT =>
11472: hr_transaction_api.get_VARCHAR2_value
11473: (p_transaction_step_id => p_transaction_step_id
11474: ,p_name => 'P_MIRROR_CONT_INFORMATION_CAT')
11475: --
11476: ,P_MIRROR_CONT_INFORMATION1 =>

Line 11477: hr_transaction_api.get_VARCHAR2_value

11473: (p_transaction_step_id => p_transaction_step_id
11474: ,p_name => 'P_MIRROR_CONT_INFORMATION_CAT')
11475: --
11476: ,P_MIRROR_CONT_INFORMATION1 =>
11477: hr_transaction_api.get_VARCHAR2_value
11478: (p_transaction_step_id => p_transaction_step_id
11479: ,p_name => 'P_MIRROR_CONT_INFORMATION1')
11480: --
11481: ,P_MIRROR_CONT_INFORMATION2 =>

Line 11482: hr_transaction_api.get_VARCHAR2_value

11478: (p_transaction_step_id => p_transaction_step_id
11479: ,p_name => 'P_MIRROR_CONT_INFORMATION1')
11480: --
11481: ,P_MIRROR_CONT_INFORMATION2 =>
11482: hr_transaction_api.get_VARCHAR2_value
11483: (p_transaction_step_id => p_transaction_step_id
11484: ,p_name => 'P_MIRROR_CONT_INFORMATION2')
11485: --
11486: ,P_MIRROR_CONT_INFORMATION3 =>

Line 11487: hr_transaction_api.get_VARCHAR2_value

11483: (p_transaction_step_id => p_transaction_step_id
11484: ,p_name => 'P_MIRROR_CONT_INFORMATION2')
11485: --
11486: ,P_MIRROR_CONT_INFORMATION3 =>
11487: hr_transaction_api.get_VARCHAR2_value
11488: (p_transaction_step_id => p_transaction_step_id
11489: ,p_name => 'P_MIRROR_CONT_INFORMATION3')
11490: --
11491: ,P_MIRROR_CONT_INFORMATION4 =>

Line 11492: hr_transaction_api.get_VARCHAR2_value

11488: (p_transaction_step_id => p_transaction_step_id
11489: ,p_name => 'P_MIRROR_CONT_INFORMATION3')
11490: --
11491: ,P_MIRROR_CONT_INFORMATION4 =>
11492: hr_transaction_api.get_VARCHAR2_value
11493: (p_transaction_step_id => p_transaction_step_id
11494: ,p_name => 'P_MIRROR_CONT_INFORMATION4')
11495: --
11496: ,P_MIRROR_CONT_INFORMATION5 =>

Line 11497: hr_transaction_api.get_VARCHAR2_value

11493: (p_transaction_step_id => p_transaction_step_id
11494: ,p_name => 'P_MIRROR_CONT_INFORMATION4')
11495: --
11496: ,P_MIRROR_CONT_INFORMATION5 =>
11497: hr_transaction_api.get_VARCHAR2_value
11498: (p_transaction_step_id => p_transaction_step_id
11499: ,p_name => 'P_MIRROR_CONT_INFORMATION5')
11500: --
11501: ,P_MIRROR_CONT_INFORMATION6 =>

Line 11502: hr_transaction_api.get_VARCHAR2_value

11498: (p_transaction_step_id => p_transaction_step_id
11499: ,p_name => 'P_MIRROR_CONT_INFORMATION5')
11500: --
11501: ,P_MIRROR_CONT_INFORMATION6 =>
11502: hr_transaction_api.get_VARCHAR2_value
11503: (p_transaction_step_id => p_transaction_step_id
11504: ,p_name => 'P_MIRROR_CONT_INFORMATION6')
11505: --
11506: ,P_MIRROR_CONT_INFORMATION7 =>

Line 11507: hr_transaction_api.get_VARCHAR2_value

11503: (p_transaction_step_id => p_transaction_step_id
11504: ,p_name => 'P_MIRROR_CONT_INFORMATION6')
11505: --
11506: ,P_MIRROR_CONT_INFORMATION7 =>
11507: hr_transaction_api.get_VARCHAR2_value
11508: (p_transaction_step_id => p_transaction_step_id
11509: ,p_name => 'P_MIRROR_CONT_INFORMATION7')
11510: --
11511: ,P_MIRROR_CONT_INFORMATION8 =>

Line 11512: hr_transaction_api.get_VARCHAR2_value

11508: (p_transaction_step_id => p_transaction_step_id
11509: ,p_name => 'P_MIRROR_CONT_INFORMATION7')
11510: --
11511: ,P_MIRROR_CONT_INFORMATION8 =>
11512: hr_transaction_api.get_VARCHAR2_value
11513: (p_transaction_step_id => p_transaction_step_id
11514: ,p_name => 'P_MIRROR_CONT_INFORMATION8')
11515: --
11516: ,P_MIRROR_CONT_INFORMATION9 =>

Line 11517: hr_transaction_api.get_VARCHAR2_value

11513: (p_transaction_step_id => p_transaction_step_id
11514: ,p_name => 'P_MIRROR_CONT_INFORMATION8')
11515: --
11516: ,P_MIRROR_CONT_INFORMATION9 =>
11517: hr_transaction_api.get_VARCHAR2_value
11518: (p_transaction_step_id => p_transaction_step_id
11519: ,p_name => 'P_MIRROR_CONT_INFORMATION9')
11520: --
11521: ,P_MIRROR_CONT_INFORMATION10 =>

Line 11522: hr_transaction_api.get_VARCHAR2_value

11518: (p_transaction_step_id => p_transaction_step_id
11519: ,p_name => 'P_MIRROR_CONT_INFORMATION9')
11520: --
11521: ,P_MIRROR_CONT_INFORMATION10 =>
11522: hr_transaction_api.get_VARCHAR2_value
11523: (p_transaction_step_id => p_transaction_step_id
11524: ,p_name => 'P_MIRROR_CONT_INFORMATION10')
11525: --
11526: ,P_MIRROR_CONT_INFORMATION11 =>

Line 11527: hr_transaction_api.get_VARCHAR2_value

11523: (p_transaction_step_id => p_transaction_step_id
11524: ,p_name => 'P_MIRROR_CONT_INFORMATION10')
11525: --
11526: ,P_MIRROR_CONT_INFORMATION11 =>
11527: hr_transaction_api.get_VARCHAR2_value
11528: (p_transaction_step_id => p_transaction_step_id
11529: ,p_name => 'P_MIRROR_CONT_INFORMATION11')
11530: --
11531: ,P_MIRROR_CONT_INFORMATION12 =>

Line 11532: hr_transaction_api.get_VARCHAR2_value

11528: (p_transaction_step_id => p_transaction_step_id
11529: ,p_name => 'P_MIRROR_CONT_INFORMATION11')
11530: --
11531: ,P_MIRROR_CONT_INFORMATION12 =>
11532: hr_transaction_api.get_VARCHAR2_value
11533: (p_transaction_step_id => p_transaction_step_id
11534: ,p_name => 'P_MIRROR_CONT_INFORMATION12')
11535: --
11536: ,P_MIRROR_CONT_INFORMATION13 =>

Line 11537: hr_transaction_api.get_VARCHAR2_value

11533: (p_transaction_step_id => p_transaction_step_id
11534: ,p_name => 'P_MIRROR_CONT_INFORMATION12')
11535: --
11536: ,P_MIRROR_CONT_INFORMATION13 =>
11537: hr_transaction_api.get_VARCHAR2_value
11538: (p_transaction_step_id => p_transaction_step_id
11539: ,p_name => 'P_MIRROR_CONT_INFORMATION13')
11540: --
11541: ,P_MIRROR_CONT_INFORMATION14 =>

Line 11542: hr_transaction_api.get_VARCHAR2_value

11538: (p_transaction_step_id => p_transaction_step_id
11539: ,p_name => 'P_MIRROR_CONT_INFORMATION13')
11540: --
11541: ,P_MIRROR_CONT_INFORMATION14 =>
11542: hr_transaction_api.get_VARCHAR2_value
11543: (p_transaction_step_id => p_transaction_step_id
11544: ,p_name => 'P_MIRROR_CONT_INFORMATION14')
11545: --
11546: ,P_MIRROR_CONT_INFORMATION15 =>

Line 11547: hr_transaction_api.get_VARCHAR2_value

11543: (p_transaction_step_id => p_transaction_step_id
11544: ,p_name => 'P_MIRROR_CONT_INFORMATION14')
11545: --
11546: ,P_MIRROR_CONT_INFORMATION15 =>
11547: hr_transaction_api.get_VARCHAR2_value
11548: (p_transaction_step_id => p_transaction_step_id
11549: ,p_name => 'P_MIRROR_CONT_INFORMATION15')
11550: --
11551: ,P_MIRROR_CONT_INFORMATION16 =>

Line 11552: hr_transaction_api.get_VARCHAR2_value

11548: (p_transaction_step_id => p_transaction_step_id
11549: ,p_name => 'P_MIRROR_CONT_INFORMATION15')
11550: --
11551: ,P_MIRROR_CONT_INFORMATION16 =>
11552: hr_transaction_api.get_VARCHAR2_value
11553: (p_transaction_step_id => p_transaction_step_id
11554: ,p_name => 'P_MIRROR_CONT_INFORMATION16')
11555: --
11556: ,P_MIRROR_CONT_INFORMATION17 =>

Line 11557: hr_transaction_api.get_VARCHAR2_value

11553: (p_transaction_step_id => p_transaction_step_id
11554: ,p_name => 'P_MIRROR_CONT_INFORMATION16')
11555: --
11556: ,P_MIRROR_CONT_INFORMATION17 =>
11557: hr_transaction_api.get_VARCHAR2_value
11558: (p_transaction_step_id => p_transaction_step_id
11559: ,p_name => 'P_MIRROR_CONT_INFORMATION17')
11560: --
11561: ,P_MIRROR_CONT_INFORMATION18 =>

Line 11562: hr_transaction_api.get_VARCHAR2_value

11558: (p_transaction_step_id => p_transaction_step_id
11559: ,p_name => 'P_MIRROR_CONT_INFORMATION17')
11560: --
11561: ,P_MIRROR_CONT_INFORMATION18 =>
11562: hr_transaction_api.get_VARCHAR2_value
11563: (p_transaction_step_id => p_transaction_step_id
11564: ,p_name => 'P_MIRROR_CONT_INFORMATION18')
11565: --
11566: ,P_MIRROR_CONT_INFORMATION19 =>

Line 11567: hr_transaction_api.get_VARCHAR2_value

11563: (p_transaction_step_id => p_transaction_step_id
11564: ,p_name => 'P_MIRROR_CONT_INFORMATION18')
11565: --
11566: ,P_MIRROR_CONT_INFORMATION19 =>
11567: hr_transaction_api.get_VARCHAR2_value
11568: (p_transaction_step_id => p_transaction_step_id
11569: ,p_name => 'P_MIRROR_CONT_INFORMATION19')
11570: --
11571: ,P_MIRROR_CONT_INFORMATION20 =>

Line 11572: hr_transaction_api.get_VARCHAR2_value

11568: (p_transaction_step_id => p_transaction_step_id
11569: ,p_name => 'P_MIRROR_CONT_INFORMATION19')
11570: --
11571: ,P_MIRROR_CONT_INFORMATION20 =>
11572: hr_transaction_api.get_VARCHAR2_value
11573: (p_transaction_step_id => p_transaction_step_id
11574: ,p_name => 'P_MIRROR_CONT_INFORMATION20')
11575: --
11576: ,P_DATE_OF_BIRTH =>

Line 11577: hr_transaction_api.get_DATE_value

11573: (p_transaction_step_id => p_transaction_step_id
11574: ,p_name => 'P_MIRROR_CONT_INFORMATION20')
11575: --
11576: ,P_DATE_OF_BIRTH =>
11577: hr_transaction_api.get_DATE_value
11578: (p_transaction_step_id => p_transaction_step_id
11579: ,p_name => 'P_DATE_OF_BIRTH')
11580: );
11581: --

Line 11745: l_process_section := hr_transaction_api.get_varchar2_value

11741:
11742: -- Change for Approvals for contact.
11743: -- Get the process section.
11744: --
11745: l_process_section := hr_transaction_api.get_varchar2_value
11746: (p_transaction_step_id => p_transaction_step_id
11747: ,p_name =>upper( 'P_PROCESS_SECTION_NAME'));
11748: --
11749: if l_process_section = 'DELETE_CONTACTS' then

Line 11768: P_CONTACT_RELATIONSHIP_ID => hr_transaction_api.get_NUMBER_value

11764: --
11765: -- SFL changes
11766:
11767: is_address_updated(
11768: P_CONTACT_RELATIONSHIP_ID => hr_transaction_api.get_NUMBER_value
11769: (p_transaction_step_id => p_transaction_step_id
11770: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
11771: ,P_DATE_START => hr_transaction_api.get_DATE_value
11772: (p_transaction_step_id => p_transaction_step_id

Line 11771: ,P_DATE_START => hr_transaction_api.get_DATE_value

11767: is_address_updated(
11768: P_CONTACT_RELATIONSHIP_ID => hr_transaction_api.get_NUMBER_value
11769: (p_transaction_step_id => p_transaction_step_id
11770: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
11771: ,P_DATE_START => hr_transaction_api.get_DATE_value
11772: (p_transaction_step_id => p_transaction_step_id
11773: ,p_name => 'P_DATE_START')
11774: ,p_transaction_step_id => p_transaction_step_id
11775: ,p_CONTACT_PERSON_ID => hr_transaction_api.get_NUMBER_value

Line 11775: ,p_CONTACT_PERSON_ID => hr_transaction_api.get_NUMBER_value

11771: ,P_DATE_START => hr_transaction_api.get_DATE_value
11772: (p_transaction_step_id => p_transaction_step_id
11773: ,p_name => 'P_DATE_START')
11774: ,p_transaction_step_id => p_transaction_step_id
11775: ,p_CONTACT_PERSON_ID => hr_transaction_api.get_NUMBER_value
11776: (p_transaction_step_id => p_transaction_step_id
11777: ,p_name => 'P_CONTACT_PERSON_ID')
11778: , p_PERSON_ID => hr_transaction_api.get_NUMBER_value
11779: (p_transaction_step_id => p_transaction_step_id

Line 11778: , p_PERSON_ID => hr_transaction_api.get_NUMBER_value

11774: ,p_transaction_step_id => p_transaction_step_id
11775: ,p_CONTACT_PERSON_ID => hr_transaction_api.get_NUMBER_value
11776: (p_transaction_step_id => p_transaction_step_id
11777: ,p_name => 'P_CONTACT_PERSON_ID')
11778: , p_PERSON_ID => hr_transaction_api.get_NUMBER_value
11779: (p_transaction_step_id => p_transaction_step_id
11780: ,p_name => 'P_PERSON_ID'));
11781: begin
11782: --

Line 11783: l_per_rec_changed := hr_transaction_api.get_varchar2_value

11779: (p_transaction_step_id => p_transaction_step_id
11780: ,p_name => 'P_PERSON_ID'));
11781: begin
11782: --
11783: l_per_rec_changed := hr_transaction_api.get_varchar2_value
11784: (p_transaction_step_id => p_transaction_step_id
11785: ,p_name => 'p_per_rec_changed') ;
11786: --
11787: exception

Line 11794: l_per_ovn := hr_transaction_api.get_number_value

11790: end;
11791:
11792: IF l_per_rec_changed = 'CHANGED' THEN
11793: --
11794: l_per_ovn := hr_transaction_api.get_number_value
11795: (p_transaction_step_id => p_transaction_step_id
11796: ,p_name => 'p_per_object_version_number') ;
11797: --
11798: l_employee_number := hr_transaction_api.get_varchar2_value

Line 11798: l_employee_number := hr_transaction_api.get_varchar2_value

11794: l_per_ovn := hr_transaction_api.get_number_value
11795: (p_transaction_step_id => p_transaction_step_id
11796: ,p_name => 'p_per_object_version_number') ;
11797: --
11798: l_employee_number := hr_transaction_api.get_varchar2_value
11799: (p_transaction_step_id => p_transaction_step_id
11800: ,p_name => 'p_employee_number') ;
11801:
11802: l_datetrack_update_mode :=

Line 11803: hr_transaction_api.get_varchar2_value

11799: (p_transaction_step_id => p_transaction_step_id
11800: ,p_name => 'p_employee_number') ;
11801:
11802: l_datetrack_update_mode :=
11803: hr_transaction_api.get_varchar2_value
11804: (p_transaction_step_id => p_transaction_step_id
11805: ,p_name =>upper('p_datetrack_update_mode'));
11806: --
11807: if l_datetrack_update_mode = 'CORRECT' then

Line 11816: l_effective_date := hr_transaction_api.get_DATE_value

11812: end if;
11813: --
11814: if not p_validate then
11815: --
11816: l_effective_date := hr_transaction_api.get_DATE_value
11817: (p_transaction_step_id => p_transaction_step_id
11818: ,p_name => 'P_PER_EFFECTIVE_DATE');
11819: --
11820: end if;

Line 11828: hr_transaction_api.get_date_value

11824: p_validate => p_validate
11825: --
11826: ,p_effective_date => l_effective_date
11827: /*
11828: hr_transaction_api.get_date_value
11829: (p_transaction_step_id => p_transaction_step_id
11830: ,p_name =>upper('p_per_effective_date'))
11831: */
11832: --

Line 11835: -- hr_transaction_api.get_varchar2_value

11831: */
11832: --
11833: ,p_datetrack_update_mode => l_datetrack_update_mode
11834: -- 9999
11835: -- hr_transaction_api.get_varchar2_value
11836: -- (p_transaction_step_id => p_transaction_step_id
11837: -- ,p_name =>upper('p_datetrack_update_mode'))
11838: --
11839: ,p_person_id =>

Line 11840: hr_transaction_api.get_number_value

11836: -- (p_transaction_step_id => p_transaction_step_id
11837: -- ,p_name =>upper('p_datetrack_update_mode'))
11838: --
11839: ,p_person_id =>
11840: hr_transaction_api.get_number_value
11841: (p_transaction_step_id => p_transaction_step_id
11842: ,p_name =>upper('p_cont_person_id'))
11843: --
11844: ,p_object_version_number => l_per_ovn

Line 11868: hr_transaction_api.get_number_value

11864: -- per_person_type_usages_f table.
11865: ---------------------------------------------------------------------------
11866: /*
11867: ,p_person_type_id =>
11868: hr_transaction_api.get_number_value
11869: (p_transaction_step_id => p_transaction_step_id
11870: ,p_name =>upper('p_person_type_id'))
11871: */
11872: --

Line 11874: hr_transaction_api.get_varchar2_value

11870: ,p_name =>upper('p_person_type_id'))
11871: */
11872: --
11873: ,p_last_name =>
11874: hr_transaction_api.get_varchar2_value
11875: (p_transaction_step_id => p_transaction_step_id
11876: ,p_name =>upper('p_last_name'))
11877: --
11878: ,p_applicant_number =>

Line 11879: hr_transaction_api.get_varchar2_value

11875: (p_transaction_step_id => p_transaction_step_id
11876: ,p_name =>upper('p_last_name'))
11877: --
11878: ,p_applicant_number =>
11879: hr_transaction_api.get_varchar2_value
11880: (p_transaction_step_id => p_transaction_step_id
11881: ,p_name =>upper('p_applicant_number'))
11882: --
11883: ,p_comments =>

Line 11884: hr_transaction_api.get_varchar2_value

11880: (p_transaction_step_id => p_transaction_step_id
11881: ,p_name =>upper('p_applicant_number'))
11882: --
11883: ,p_comments =>
11884: hr_transaction_api.get_varchar2_value
11885: (p_transaction_step_id => p_transaction_step_id
11886: ,p_name =>upper('p_per_comments'))
11887: --
11888: ,p_date_employee_data_verified =>

Line 11889: hr_transaction_api.get_date_value

11885: (p_transaction_step_id => p_transaction_step_id
11886: ,p_name =>upper('p_per_comments'))
11887: --
11888: ,p_date_employee_data_verified =>
11889: hr_transaction_api.get_date_value
11890: (p_transaction_step_id => p_transaction_step_id
11891: ,p_name =>upper('p_date_employee_data_verified'))
11892: --
11893: ,p_date_of_birth =>

Line 11894: hr_transaction_api.get_date_value

11890: (p_transaction_step_id => p_transaction_step_id
11891: ,p_name =>upper('p_date_employee_data_verified'))
11892: --
11893: ,p_date_of_birth =>
11894: hr_transaction_api.get_date_value
11895: (p_transaction_step_id => p_transaction_step_id
11896: ,p_name =>upper('p_date_of_birth'))
11897: --
11898: ,p_email_address =>

Line 11899: hr_transaction_api.get_varchar2_value

11895: (p_transaction_step_id => p_transaction_step_id
11896: ,p_name =>upper('p_date_of_birth'))
11897: --
11898: ,p_email_address =>
11899: hr_transaction_api.get_varchar2_value
11900: (p_transaction_step_id => p_transaction_step_id
11901: ,p_name =>upper('p_email_address'))
11902: --
11903: ,p_employee_number => l_employee_number

Line 11906: hr_transaction_api.get_varchar2_value

11902: --
11903: ,p_employee_number => l_employee_number
11904: --
11905: ,p_expense_check_send_to_addres =>
11906: hr_transaction_api.get_varchar2_value
11907: (p_transaction_step_id => p_transaction_step_id
11908: ,p_name =>upper('p_expense_check_send_to_addres'))
11909: --
11910: ,p_first_name =>

Line 11911: hr_transaction_api.get_varchar2_value

11907: (p_transaction_step_id => p_transaction_step_id
11908: ,p_name =>upper('p_expense_check_send_to_addres'))
11909: --
11910: ,p_first_name =>
11911: hr_transaction_api.get_varchar2_value
11912: (p_transaction_step_id => p_transaction_step_id
11913: ,p_name =>upper('p_first_name'))
11914: --
11915: ,p_known_as =>

Line 11916: hr_transaction_api.get_varchar2_value

11912: (p_transaction_step_id => p_transaction_step_id
11913: ,p_name =>upper('p_first_name'))
11914: --
11915: ,p_known_as =>
11916: hr_transaction_api.get_varchar2_value
11917: (p_transaction_step_id => p_transaction_step_id
11918: ,p_name =>upper('p_known_as'))
11919: --
11920: ,p_marital_status =>

Line 11921: hr_transaction_api.get_varchar2_value

11917: (p_transaction_step_id => p_transaction_step_id
11918: ,p_name =>upper('p_known_as'))
11919: --
11920: ,p_marital_status =>
11921: hr_transaction_api.get_varchar2_value
11922: (p_transaction_step_id => p_transaction_step_id
11923: ,p_name =>upper('p_marital_status'))
11924: --
11925: ,p_middle_names =>

Line 11926: hr_transaction_api.get_varchar2_value

11922: (p_transaction_step_id => p_transaction_step_id
11923: ,p_name =>upper('p_marital_status'))
11924: --
11925: ,p_middle_names =>
11926: hr_transaction_api.get_varchar2_value
11927: (p_transaction_step_id => p_transaction_step_id
11928: ,p_name =>upper('p_middle_names'))
11929: --
11930: ,p_nationality =>

Line 11931: hr_transaction_api.get_varchar2_value

11927: (p_transaction_step_id => p_transaction_step_id
11928: ,p_name =>upper('p_middle_names'))
11929: --
11930: ,p_nationality =>
11931: hr_transaction_api.get_varchar2_value
11932: (p_transaction_step_id => p_transaction_step_id
11933: ,p_name =>upper('p_nationality'))
11934: --
11935: ,p_national_identifier =>

Line 11936: hr_transaction_api.get_varchar2_value

11932: (p_transaction_step_id => p_transaction_step_id
11933: ,p_name =>upper('p_nationality'))
11934: --
11935: ,p_national_identifier =>
11936: hr_transaction_api.get_varchar2_value
11937: (p_transaction_step_id => p_transaction_step_id
11938: ,p_name =>upper('p_national_identifier'))
11939: --
11940: ,p_previous_last_name =>

Line 11941: hr_transaction_api.get_varchar2_value

11937: (p_transaction_step_id => p_transaction_step_id
11938: ,p_name =>upper('p_national_identifier'))
11939: --
11940: ,p_previous_last_name =>
11941: hr_transaction_api.get_varchar2_value
11942: (p_transaction_step_id => p_transaction_step_id
11943: ,p_name =>upper('p_previous_last_name'))
11944: --
11945: ,p_registered_disabled_flag =>

Line 11946: hr_transaction_api.get_varchar2_value

11942: (p_transaction_step_id => p_transaction_step_id
11943: ,p_name =>upper('p_previous_last_name'))
11944: --
11945: ,p_registered_disabled_flag =>
11946: hr_transaction_api.get_varchar2_value
11947: (p_transaction_step_id => p_transaction_step_id
11948: ,p_name =>upper('p_registered_disabled_flag'))
11949: --
11950: ,p_sex =>

Line 11951: hr_transaction_api.get_varchar2_value

11947: (p_transaction_step_id => p_transaction_step_id
11948: ,p_name =>upper('p_registered_disabled_flag'))
11949: --
11950: ,p_sex =>
11951: hr_transaction_api.get_varchar2_value
11952: (p_transaction_step_id => p_transaction_step_id
11953: ,p_name =>upper('p_sex'))
11954: --
11955: ,p_title =>

Line 11956: hr_transaction_api.get_varchar2_value

11952: (p_transaction_step_id => p_transaction_step_id
11953: ,p_name =>upper('p_sex'))
11954: --
11955: ,p_title =>
11956: hr_transaction_api.get_varchar2_value
11957: (p_transaction_step_id => p_transaction_step_id
11958: ,p_name =>upper('p_title'))
11959: --
11960: ,p_vendor_id =>

Line 11961: hr_transaction_api.get_number_value

11957: (p_transaction_step_id => p_transaction_step_id
11958: ,p_name =>upper('p_title'))
11959: --
11960: ,p_vendor_id =>
11961: hr_transaction_api.get_number_value
11962: (p_transaction_step_id => p_transaction_step_id
11963: ,p_name =>upper('p_vendor_id'))
11964: --
11965: ,p_work_telephone =>

Line 11966: hr_transaction_api.get_varchar2_value

11962: (p_transaction_step_id => p_transaction_step_id
11963: ,p_name =>upper('p_vendor_id'))
11964: --
11965: ,p_work_telephone =>
11966: hr_transaction_api.get_varchar2_value
11967: (p_transaction_step_id => p_transaction_step_id
11968: ,p_name =>upper('p_work_telephone'))
11969: --
11970: ,p_attribute_category =>

Line 11971: hr_transaction_api.get_varchar2_value

11967: (p_transaction_step_id => p_transaction_step_id
11968: ,p_name =>upper('p_work_telephone'))
11969: --
11970: ,p_attribute_category =>
11971: hr_transaction_api.get_varchar2_value
11972: (p_transaction_step_id => p_transaction_step_id
11973: ,p_name =>upper('p_attribute_category'))
11974: --
11975: ,p_attribute1 =>

Line 11976: hr_transaction_api.get_varchar2_value

11972: (p_transaction_step_id => p_transaction_step_id
11973: ,p_name =>upper('p_attribute_category'))
11974: --
11975: ,p_attribute1 =>
11976: hr_transaction_api.get_varchar2_value
11977: (p_transaction_step_id => p_transaction_step_id
11978: ,p_name =>upper('p_attribute1'))
11979: --
11980: ,p_attribute2 =>

Line 11981: hr_transaction_api.get_varchar2_value

11977: (p_transaction_step_id => p_transaction_step_id
11978: ,p_name =>upper('p_attribute1'))
11979: --
11980: ,p_attribute2 =>
11981: hr_transaction_api.get_varchar2_value
11982: (p_transaction_step_id => p_transaction_step_id
11983: ,p_name =>upper('p_attribute2'))
11984: --
11985: ,p_attribute3 =>

Line 11986: hr_transaction_api.get_varchar2_value

11982: (p_transaction_step_id => p_transaction_step_id
11983: ,p_name =>upper('p_attribute2'))
11984: --
11985: ,p_attribute3 =>
11986: hr_transaction_api.get_varchar2_value
11987: (p_transaction_step_id => p_transaction_step_id
11988: ,p_name =>upper('p_attribute3'))
11989: --
11990: ,p_attribute4 =>

Line 11991: hr_transaction_api.get_varchar2_value

11987: (p_transaction_step_id => p_transaction_step_id
11988: ,p_name =>upper('p_attribute3'))
11989: --
11990: ,p_attribute4 =>
11991: hr_transaction_api.get_varchar2_value
11992: (p_transaction_step_id => p_transaction_step_id
11993: ,p_name =>upper('p_attribute4'))
11994: --
11995: ,p_attribute5 =>

Line 11996: hr_transaction_api.get_varchar2_value

11992: (p_transaction_step_id => p_transaction_step_id
11993: ,p_name =>upper('p_attribute4'))
11994: --
11995: ,p_attribute5 =>
11996: hr_transaction_api.get_varchar2_value
11997: (p_transaction_step_id => p_transaction_step_id
11998: ,p_name =>upper('p_attribute5'))
11999: --
12000: ,p_attribute6 =>

Line 12001: hr_transaction_api.get_varchar2_value

11997: (p_transaction_step_id => p_transaction_step_id
11998: ,p_name =>upper('p_attribute5'))
11999: --
12000: ,p_attribute6 =>
12001: hr_transaction_api.get_varchar2_value
12002: (p_transaction_step_id => p_transaction_step_id
12003: ,p_name =>upper('p_attribute6'))
12004: --
12005: ,p_attribute7 =>

Line 12006: hr_transaction_api.get_varchar2_value

12002: (p_transaction_step_id => p_transaction_step_id
12003: ,p_name =>upper('p_attribute6'))
12004: --
12005: ,p_attribute7 =>
12006: hr_transaction_api.get_varchar2_value
12007: (p_transaction_step_id => p_transaction_step_id
12008: ,p_name =>upper('p_attribute7'))
12009: --
12010: ,p_attribute8 =>

Line 12011: hr_transaction_api.get_varchar2_value

12007: (p_transaction_step_id => p_transaction_step_id
12008: ,p_name =>upper('p_attribute7'))
12009: --
12010: ,p_attribute8 =>
12011: hr_transaction_api.get_varchar2_value
12012: (p_transaction_step_id => p_transaction_step_id
12013: ,p_name =>upper('p_attribute8'))
12014: --
12015: ,p_attribute9 =>

Line 12016: hr_transaction_api.get_varchar2_value

12012: (p_transaction_step_id => p_transaction_step_id
12013: ,p_name =>upper('p_attribute8'))
12014: --
12015: ,p_attribute9 =>
12016: hr_transaction_api.get_varchar2_value
12017: (p_transaction_step_id => p_transaction_step_id
12018: ,p_name =>upper('p_attribute9'))
12019: --
12020: ,p_attribute10 =>

Line 12021: hr_transaction_api.get_varchar2_value

12017: (p_transaction_step_id => p_transaction_step_id
12018: ,p_name =>upper('p_attribute9'))
12019: --
12020: ,p_attribute10 =>
12021: hr_transaction_api.get_varchar2_value
12022: (p_transaction_step_id => p_transaction_step_id
12023: ,p_name =>upper('p_attribute10'))
12024: --
12025: ,p_attribute11 =>

Line 12026: hr_transaction_api.get_varchar2_value

12022: (p_transaction_step_id => p_transaction_step_id
12023: ,p_name =>upper('p_attribute10'))
12024: --
12025: ,p_attribute11 =>
12026: hr_transaction_api.get_varchar2_value
12027: (p_transaction_step_id => p_transaction_step_id
12028: ,p_name =>upper('p_attribute11'))
12029: --
12030: ,p_attribute12 =>

Line 12031: hr_transaction_api.get_varchar2_value

12027: (p_transaction_step_id => p_transaction_step_id
12028: ,p_name =>upper('p_attribute11'))
12029: --
12030: ,p_attribute12 =>
12031: hr_transaction_api.get_varchar2_value
12032: (p_transaction_step_id => p_transaction_step_id
12033: ,p_name =>upper('p_attribute12'))
12034: --
12035: ,p_attribute13 =>

Line 12036: hr_transaction_api.get_varchar2_value

12032: (p_transaction_step_id => p_transaction_step_id
12033: ,p_name =>upper('p_attribute12'))
12034: --
12035: ,p_attribute13 =>
12036: hr_transaction_api.get_varchar2_value
12037: (p_transaction_step_id => p_transaction_step_id
12038: ,p_name =>upper('p_attribute13'))
12039: --
12040: ,p_attribute14 =>

Line 12041: hr_transaction_api.get_varchar2_value

12037: (p_transaction_step_id => p_transaction_step_id
12038: ,p_name =>upper('p_attribute13'))
12039: --
12040: ,p_attribute14 =>
12041: hr_transaction_api.get_varchar2_value
12042: (p_transaction_step_id => p_transaction_step_id
12043: ,p_name =>upper('p_attribute14'))
12044: --
12045: ,p_attribute15 =>

Line 12046: hr_transaction_api.get_varchar2_value

12042: (p_transaction_step_id => p_transaction_step_id
12043: ,p_name =>upper('p_attribute14'))
12044: --
12045: ,p_attribute15 =>
12046: hr_transaction_api.get_varchar2_value
12047: (p_transaction_step_id => p_transaction_step_id
12048: ,p_name =>upper('p_attribute15'))
12049: --
12050: ,p_attribute16 =>

Line 12051: hr_transaction_api.get_varchar2_value

12047: (p_transaction_step_id => p_transaction_step_id
12048: ,p_name =>upper('p_attribute15'))
12049: --
12050: ,p_attribute16 =>
12051: hr_transaction_api.get_varchar2_value
12052: (p_transaction_step_id => p_transaction_step_id
12053: ,p_name =>upper('p_attribute16'))
12054: --
12055: ,p_attribute17 =>

Line 12056: hr_transaction_api.get_varchar2_value

12052: (p_transaction_step_id => p_transaction_step_id
12053: ,p_name =>upper('p_attribute16'))
12054: --
12055: ,p_attribute17 =>
12056: hr_transaction_api.get_varchar2_value
12057: (p_transaction_step_id => p_transaction_step_id
12058: ,p_name =>upper('p_attribute17'))
12059: --
12060: ,p_attribute18 =>

Line 12061: hr_transaction_api.get_varchar2_value

12057: (p_transaction_step_id => p_transaction_step_id
12058: ,p_name =>upper('p_attribute17'))
12059: --
12060: ,p_attribute18 =>
12061: hr_transaction_api.get_varchar2_value
12062: (p_transaction_step_id => p_transaction_step_id
12063: ,p_name =>upper('p_attribute18'))
12064: --
12065: ,p_attribute19 =>

Line 12066: hr_transaction_api.get_varchar2_value

12062: (p_transaction_step_id => p_transaction_step_id
12063: ,p_name =>upper('p_attribute18'))
12064: --
12065: ,p_attribute19 =>
12066: hr_transaction_api.get_varchar2_value
12067: (p_transaction_step_id => p_transaction_step_id
12068: ,p_name =>upper('p_attribute19'))
12069: --
12070: ,p_attribute20 =>

Line 12071: hr_transaction_api.get_varchar2_value

12067: (p_transaction_step_id => p_transaction_step_id
12068: ,p_name =>upper('p_attribute19'))
12069: --
12070: ,p_attribute20 =>
12071: hr_transaction_api.get_varchar2_value
12072: (p_transaction_step_id => p_transaction_step_id
12073: ,p_name =>upper('p_attribute20'))
12074: --
12075: ,p_attribute21 =>

Line 12076: hr_transaction_api.get_varchar2_value

12072: (p_transaction_step_id => p_transaction_step_id
12073: ,p_name =>upper('p_attribute20'))
12074: --
12075: ,p_attribute21 =>
12076: hr_transaction_api.get_varchar2_value
12077: (p_transaction_step_id => p_transaction_step_id
12078: ,p_name =>upper('p_attribute21'))
12079: --
12080: ,p_attribute22 =>

Line 12081: hr_transaction_api.get_varchar2_value

12077: (p_transaction_step_id => p_transaction_step_id
12078: ,p_name =>upper('p_attribute21'))
12079: --
12080: ,p_attribute22 =>
12081: hr_transaction_api.get_varchar2_value
12082: (p_transaction_step_id => p_transaction_step_id
12083: ,p_name =>upper('p_attribute22'))
12084: --
12085: ,p_attribute23 =>

Line 12086: hr_transaction_api.get_varchar2_value

12082: (p_transaction_step_id => p_transaction_step_id
12083: ,p_name =>upper('p_attribute22'))
12084: --
12085: ,p_attribute23 =>
12086: hr_transaction_api.get_varchar2_value
12087: (p_transaction_step_id => p_transaction_step_id
12088: ,p_name =>upper('p_attribute23'))
12089: --
12090: ,p_attribute24 =>

Line 12091: hr_transaction_api.get_varchar2_value

12087: (p_transaction_step_id => p_transaction_step_id
12088: ,p_name =>upper('p_attribute23'))
12089: --
12090: ,p_attribute24 =>
12091: hr_transaction_api.get_varchar2_value
12092: (p_transaction_step_id => p_transaction_step_id
12093: ,p_name =>upper('p_attribute24'))
12094: --
12095: ,p_attribute25 =>

Line 12096: hr_transaction_api.get_varchar2_value

12092: (p_transaction_step_id => p_transaction_step_id
12093: ,p_name =>upper('p_attribute24'))
12094: --
12095: ,p_attribute25 =>
12096: hr_transaction_api.get_varchar2_value
12097: (p_transaction_step_id => p_transaction_step_id
12098: ,p_name =>upper('p_attribute25'))
12099: --
12100: ,p_attribute26 =>

Line 12101: hr_transaction_api.get_varchar2_value

12097: (p_transaction_step_id => p_transaction_step_id
12098: ,p_name =>upper('p_attribute25'))
12099: --
12100: ,p_attribute26 =>
12101: hr_transaction_api.get_varchar2_value
12102: (p_transaction_step_id => p_transaction_step_id
12103: ,p_name =>upper('p_attribute26'))
12104: --
12105: ,p_attribute27 =>

Line 12106: hr_transaction_api.get_varchar2_value

12102: (p_transaction_step_id => p_transaction_step_id
12103: ,p_name =>upper('p_attribute26'))
12104: --
12105: ,p_attribute27 =>
12106: hr_transaction_api.get_varchar2_value
12107: (p_transaction_step_id => p_transaction_step_id
12108: ,p_name =>upper('p_attribute27'))
12109: --
12110: ,p_attribute28 =>

Line 12111: hr_transaction_api.get_varchar2_value

12107: (p_transaction_step_id => p_transaction_step_id
12108: ,p_name =>upper('p_attribute27'))
12109: --
12110: ,p_attribute28 =>
12111: hr_transaction_api.get_varchar2_value
12112: (p_transaction_step_id => p_transaction_step_id
12113: ,p_name =>upper('p_attribute28'))
12114: --
12115: ,p_attribute29 =>

Line 12116: hr_transaction_api.get_varchar2_value

12112: (p_transaction_step_id => p_transaction_step_id
12113: ,p_name =>upper('p_attribute28'))
12114: --
12115: ,p_attribute29 =>
12116: hr_transaction_api.get_varchar2_value
12117: (p_transaction_step_id => p_transaction_step_id
12118: ,p_name =>upper('p_attribute29'))
12119: --
12120: ,p_attribute30 =>

Line 12121: hr_transaction_api.get_varchar2_value

12117: (p_transaction_step_id => p_transaction_step_id
12118: ,p_name =>upper('p_attribute29'))
12119: --
12120: ,p_attribute30 =>
12121: hr_transaction_api.get_varchar2_value
12122: (p_transaction_step_id => p_transaction_step_id
12123: ,p_name =>upper('p_attribute30'))
12124: --
12125: ,p_per_information_category =>

Line 12126: hr_transaction_api.get_varchar2_value

12122: (p_transaction_step_id => p_transaction_step_id
12123: ,p_name =>upper('p_attribute30'))
12124: --
12125: ,p_per_information_category =>
12126: hr_transaction_api.get_varchar2_value
12127: (p_transaction_step_id => p_transaction_step_id
12128: ,p_name =>upper('p_per_information_category'))
12129: --
12130: ,p_per_information1 =>

Line 12131: hr_transaction_api.get_varchar2_value

12127: (p_transaction_step_id => p_transaction_step_id
12128: ,p_name =>upper('p_per_information_category'))
12129: --
12130: ,p_per_information1 =>
12131: hr_transaction_api.get_varchar2_value
12132: (p_transaction_step_id => p_transaction_step_id
12133: ,p_name =>upper('p_per_information1'))
12134: --
12135: ,p_per_information2 =>

Line 12136: hr_transaction_api.get_varchar2_value

12132: (p_transaction_step_id => p_transaction_step_id
12133: ,p_name =>upper('p_per_information1'))
12134: --
12135: ,p_per_information2 =>
12136: hr_transaction_api.get_varchar2_value
12137: (p_transaction_step_id => p_transaction_step_id
12138: ,p_name =>upper('p_per_information2'))
12139: --
12140: ,p_per_information3 =>

Line 12141: hr_transaction_api.get_varchar2_value

12137: (p_transaction_step_id => p_transaction_step_id
12138: ,p_name =>upper('p_per_information2'))
12139: --
12140: ,p_per_information3 =>
12141: hr_transaction_api.get_varchar2_value
12142: (p_transaction_step_id => p_transaction_step_id
12143: ,p_name =>upper('p_per_information3'))
12144: --
12145: ,p_per_information4 =>

Line 12146: hr_transaction_api.get_varchar2_value

12142: (p_transaction_step_id => p_transaction_step_id
12143: ,p_name =>upper('p_per_information3'))
12144: --
12145: ,p_per_information4 =>
12146: hr_transaction_api.get_varchar2_value
12147: (p_transaction_step_id => p_transaction_step_id
12148: ,p_name =>upper('p_per_information4'))
12149: --
12150: ,p_per_information5 =>

Line 12151: hr_transaction_api.get_varchar2_value

12147: (p_transaction_step_id => p_transaction_step_id
12148: ,p_name =>upper('p_per_information4'))
12149: --
12150: ,p_per_information5 =>
12151: hr_transaction_api.get_varchar2_value
12152: (p_transaction_step_id => p_transaction_step_id
12153: ,p_name =>upper('p_per_information5'))
12154: --
12155: ,p_per_information6 =>

Line 12156: hr_transaction_api.get_varchar2_value

12152: (p_transaction_step_id => p_transaction_step_id
12153: ,p_name =>upper('p_per_information5'))
12154: --
12155: ,p_per_information6 =>
12156: hr_transaction_api.get_varchar2_value
12157: (p_transaction_step_id => p_transaction_step_id
12158: ,p_name =>upper('p_per_information6'))
12159: --
12160: ,p_per_information7 =>

Line 12161: hr_transaction_api.get_varchar2_value

12157: (p_transaction_step_id => p_transaction_step_id
12158: ,p_name =>upper('p_per_information6'))
12159: --
12160: ,p_per_information7 =>
12161: hr_transaction_api.get_varchar2_value
12162: (p_transaction_step_id => p_transaction_step_id
12163: ,p_name =>upper('p_per_information7'))
12164: --
12165: ,p_per_information8 =>

Line 12166: hr_transaction_api.get_varchar2_value

12162: (p_transaction_step_id => p_transaction_step_id
12163: ,p_name =>upper('p_per_information7'))
12164: --
12165: ,p_per_information8 =>
12166: hr_transaction_api.get_varchar2_value
12167: (p_transaction_step_id => p_transaction_step_id
12168: ,p_name =>upper('p_per_information8'))
12169: --
12170: ,p_per_information9 =>

Line 12171: hr_transaction_api.get_varchar2_value

12167: (p_transaction_step_id => p_transaction_step_id
12168: ,p_name =>upper('p_per_information8'))
12169: --
12170: ,p_per_information9 =>
12171: hr_transaction_api.get_varchar2_value
12172: (p_transaction_step_id => p_transaction_step_id
12173: ,p_name =>upper('p_per_information9'))
12174: --
12175: ,p_per_information10 =>

Line 12176: hr_transaction_api.get_varchar2_value

12172: (p_transaction_step_id => p_transaction_step_id
12173: ,p_name =>upper('p_per_information9'))
12174: --
12175: ,p_per_information10 =>
12176: hr_transaction_api.get_varchar2_value
12177: (p_transaction_step_id => p_transaction_step_id
12178: ,p_name =>upper('p_per_information10'))
12179: --
12180: ,p_per_information11 =>

Line 12181: hr_transaction_api.get_varchar2_value

12177: (p_transaction_step_id => p_transaction_step_id
12178: ,p_name =>upper('p_per_information10'))
12179: --
12180: ,p_per_information11 =>
12181: hr_transaction_api.get_varchar2_value
12182: (p_transaction_step_id => p_transaction_step_id
12183: ,p_name =>upper('p_per_information11'))
12184: --
12185: ,p_per_information12 =>

Line 12186: hr_transaction_api.get_varchar2_value

12182: (p_transaction_step_id => p_transaction_step_id
12183: ,p_name =>upper('p_per_information11'))
12184: --
12185: ,p_per_information12 =>
12186: hr_transaction_api.get_varchar2_value
12187: (p_transaction_step_id => p_transaction_step_id
12188: ,p_name =>upper('p_per_information12'))
12189: --
12190: ,p_per_information13 =>

Line 12191: hr_transaction_api.get_varchar2_value

12187: (p_transaction_step_id => p_transaction_step_id
12188: ,p_name =>upper('p_per_information12'))
12189: --
12190: ,p_per_information13 =>
12191: hr_transaction_api.get_varchar2_value
12192: (p_transaction_step_id => p_transaction_step_id
12193: ,p_name =>upper('p_per_information13'))
12194: --
12195: ,p_per_information14 =>

Line 12196: hr_transaction_api.get_varchar2_value

12192: (p_transaction_step_id => p_transaction_step_id
12193: ,p_name =>upper('p_per_information13'))
12194: --
12195: ,p_per_information14 =>
12196: hr_transaction_api.get_varchar2_value
12197: (p_transaction_step_id => p_transaction_step_id
12198: ,p_name =>upper('p_per_information14'))
12199: --
12200: ,p_per_information15 =>

Line 12201: hr_transaction_api.get_varchar2_value

12197: (p_transaction_step_id => p_transaction_step_id
12198: ,p_name =>upper('p_per_information14'))
12199: --
12200: ,p_per_information15 =>
12201: hr_transaction_api.get_varchar2_value
12202: (p_transaction_step_id => p_transaction_step_id
12203: ,p_name =>upper('p_per_information15'))
12204: --
12205: ,p_per_information16 =>

Line 12206: hr_transaction_api.get_varchar2_value

12202: (p_transaction_step_id => p_transaction_step_id
12203: ,p_name =>upper('p_per_information15'))
12204: --
12205: ,p_per_information16 =>
12206: hr_transaction_api.get_varchar2_value
12207: (p_transaction_step_id => p_transaction_step_id
12208: ,p_name =>upper('p_per_information16'))
12209: --
12210: ,p_per_information17 =>

Line 12211: hr_transaction_api.get_varchar2_value

12207: (p_transaction_step_id => p_transaction_step_id
12208: ,p_name =>upper('p_per_information16'))
12209: --
12210: ,p_per_information17 =>
12211: hr_transaction_api.get_varchar2_value
12212: (p_transaction_step_id => p_transaction_step_id
12213: ,p_name =>upper('p_per_information17'))
12214: --
12215: ,p_per_information18 =>

Line 12216: hr_transaction_api.get_varchar2_value

12212: (p_transaction_step_id => p_transaction_step_id
12213: ,p_name =>upper('p_per_information17'))
12214: --
12215: ,p_per_information18 =>
12216: hr_transaction_api.get_varchar2_value
12217: (p_transaction_step_id => p_transaction_step_id
12218: ,p_name =>upper('p_per_information18'))
12219: --
12220: ,p_per_information19 =>

Line 12221: hr_transaction_api.get_varchar2_value

12217: (p_transaction_step_id => p_transaction_step_id
12218: ,p_name =>upper('p_per_information18'))
12219: --
12220: ,p_per_information19 =>
12221: hr_transaction_api.get_varchar2_value
12222: (p_transaction_step_id => p_transaction_step_id
12223: ,p_name =>upper('p_per_information19'))
12224: --
12225: ,p_per_information20 =>

Line 12226: hr_transaction_api.get_varchar2_value

12222: (p_transaction_step_id => p_transaction_step_id
12223: ,p_name =>upper('p_per_information19'))
12224: --
12225: ,p_per_information20 =>
12226: hr_transaction_api.get_varchar2_value
12227: (p_transaction_step_id => p_transaction_step_id
12228: ,p_name =>upper('p_per_information20'))
12229: --
12230: ,p_per_information21 =>

Line 12231: hr_transaction_api.get_varchar2_value

12227: (p_transaction_step_id => p_transaction_step_id
12228: ,p_name =>upper('p_per_information20'))
12229: --
12230: ,p_per_information21 =>
12231: hr_transaction_api.get_varchar2_value
12232: (p_transaction_step_id => p_transaction_step_id
12233: ,p_name =>upper('p_per_information21'))
12234: --
12235: ,p_per_information22 =>

Line 12236: hr_transaction_api.get_varchar2_value

12232: (p_transaction_step_id => p_transaction_step_id
12233: ,p_name =>upper('p_per_information21'))
12234: --
12235: ,p_per_information22 =>
12236: hr_transaction_api.get_varchar2_value
12237: (p_transaction_step_id => p_transaction_step_id
12238: ,p_name =>upper('p_per_information22'))
12239: --
12240: ,p_per_information23 =>

Line 12241: hr_transaction_api.get_varchar2_value

12237: (p_transaction_step_id => p_transaction_step_id
12238: ,p_name =>upper('p_per_information22'))
12239: --
12240: ,p_per_information23 =>
12241: hr_transaction_api.get_varchar2_value
12242: (p_transaction_step_id => p_transaction_step_id
12243: ,p_name =>upper('p_per_information23'))
12244: --
12245: ,p_per_information24 =>

Line 12246: hr_transaction_api.get_varchar2_value

12242: (p_transaction_step_id => p_transaction_step_id
12243: ,p_name =>upper('p_per_information23'))
12244: --
12245: ,p_per_information24 =>
12246: hr_transaction_api.get_varchar2_value
12247: (p_transaction_step_id => p_transaction_step_id
12248: ,p_name =>upper('p_per_information24'))
12249: --
12250: ,p_per_information25 =>

Line 12251: hr_transaction_api.get_varchar2_value

12247: (p_transaction_step_id => p_transaction_step_id
12248: ,p_name =>upper('p_per_information24'))
12249: --
12250: ,p_per_information25 =>
12251: hr_transaction_api.get_varchar2_value
12252: (p_transaction_step_id => p_transaction_step_id
12253: ,p_name =>upper('p_per_information25'))
12254: --
12255: ,p_per_information26 =>

Line 12256: hr_transaction_api.get_varchar2_value

12252: (p_transaction_step_id => p_transaction_step_id
12253: ,p_name =>upper('p_per_information25'))
12254: --
12255: ,p_per_information26 =>
12256: hr_transaction_api.get_varchar2_value
12257: (p_transaction_step_id => p_transaction_step_id
12258: ,p_name =>upper('p_per_information26'))
12259: --
12260: ,p_per_information27 =>

Line 12261: hr_transaction_api.get_varchar2_value

12257: (p_transaction_step_id => p_transaction_step_id
12258: ,p_name =>upper('p_per_information26'))
12259: --
12260: ,p_per_information27 =>
12261: hr_transaction_api.get_varchar2_value
12262: (p_transaction_step_id => p_transaction_step_id
12263: ,p_name =>upper('p_per_information27'))
12264: --
12265: ,p_per_information28 =>

Line 12266: hr_transaction_api.get_varchar2_value

12262: (p_transaction_step_id => p_transaction_step_id
12263: ,p_name =>upper('p_per_information27'))
12264: --
12265: ,p_per_information28 =>
12266: hr_transaction_api.get_varchar2_value
12267: (p_transaction_step_id => p_transaction_step_id
12268: ,p_name =>upper('p_per_information28'))
12269: --
12270: ,p_per_information29 =>

Line 12271: hr_transaction_api.get_varchar2_value

12267: (p_transaction_step_id => p_transaction_step_id
12268: ,p_name =>upper('p_per_information28'))
12269: --
12270: ,p_per_information29 =>
12271: hr_transaction_api.get_varchar2_value
12272: (p_transaction_step_id => p_transaction_step_id
12273: ,p_name =>upper('p_per_information29'))
12274: --
12275: ,p_per_information30 =>

Line 12276: hr_transaction_api.get_varchar2_value

12272: (p_transaction_step_id => p_transaction_step_id
12273: ,p_name =>upper('p_per_information29'))
12274: --
12275: ,p_per_information30 =>
12276: hr_transaction_api.get_varchar2_value
12277: (p_transaction_step_id => p_transaction_step_id
12278: ,p_name =>upper('p_per_information30'))
12279: --
12280: ,p_date_of_death =>

Line 12281: hr_transaction_api.get_date_value

12277: (p_transaction_step_id => p_transaction_step_id
12278: ,p_name =>upper('p_per_information30'))
12279: --
12280: ,p_date_of_death =>
12281: hr_transaction_api.get_date_value
12282: (p_transaction_step_id => p_transaction_step_id
12283: ,p_name =>upper('p_date_of_death'))
12284: --
12285: ,p_background_check_status =>

Line 12286: hr_transaction_api.get_varchar2_value

12282: (p_transaction_step_id => p_transaction_step_id
12283: ,p_name =>upper('p_date_of_death'))
12284: --
12285: ,p_background_check_status =>
12286: hr_transaction_api.get_varchar2_value
12287: (p_transaction_step_id => p_transaction_step_id
12288: ,p_name =>upper('p_background_check_status'))
12289: --
12290: ,p_background_date_check =>

Line 12291: hr_transaction_api.get_date_value

12287: (p_transaction_step_id => p_transaction_step_id
12288: ,p_name =>upper('p_background_check_status'))
12289: --
12290: ,p_background_date_check =>
12291: hr_transaction_api.get_date_value
12292: (p_transaction_step_id => p_transaction_step_id
12293: ,p_name =>upper('p_background_date_check'))
12294: --
12295: ,p_blood_type =>

Line 12296: hr_transaction_api.get_varchar2_value

12292: (p_transaction_step_id => p_transaction_step_id
12293: ,p_name =>upper('p_background_date_check'))
12294: --
12295: ,p_blood_type =>
12296: hr_transaction_api.get_varchar2_value
12297: (p_transaction_step_id => p_transaction_step_id
12298: ,p_name =>upper('p_blood_type'))
12299: --
12300: ,p_correspondence_language =>

Line 12301: hr_transaction_api.get_varchar2_value

12297: (p_transaction_step_id => p_transaction_step_id
12298: ,p_name =>upper('p_blood_type'))
12299: --
12300: ,p_correspondence_language =>
12301: hr_transaction_api.get_varchar2_value
12302: (p_transaction_step_id => p_transaction_step_id
12303: ,p_name =>upper('p_correspondence_language'))
12304: --
12305: ,p_fast_path_employee =>

Line 12306: hr_transaction_api.get_varchar2_value

12302: (p_transaction_step_id => p_transaction_step_id
12303: ,p_name =>upper('p_correspondence_language'))
12304: --
12305: ,p_fast_path_employee =>
12306: hr_transaction_api.get_varchar2_value
12307: (p_transaction_step_id => p_transaction_step_id
12308: ,p_name =>upper('p_fast_path_employee'))
12309: --
12310: ,p_fte_capacity =>

Line 12311: hr_transaction_api.get_number_value

12307: (p_transaction_step_id => p_transaction_step_id
12308: ,p_name =>upper('p_fast_path_employee'))
12309: --
12310: ,p_fte_capacity =>
12311: hr_transaction_api.get_number_value
12312: (p_transaction_step_id => p_transaction_step_id
12313: ,p_name =>upper('p_fte_capacity'))
12314: --
12315: ,p_hold_applicant_date_until =>

Line 12316: hr_transaction_api.get_date_value

12312: (p_transaction_step_id => p_transaction_step_id
12313: ,p_name =>upper('p_fte_capacity'))
12314: --
12315: ,p_hold_applicant_date_until =>
12316: hr_transaction_api.get_date_value
12317: (p_transaction_step_id => p_transaction_step_id
12318: ,p_name =>upper('p_hold_applicant_date_until'))
12319: --
12320: ,p_honors =>

Line 12321: hr_transaction_api.get_varchar2_value

12317: (p_transaction_step_id => p_transaction_step_id
12318: ,p_name =>upper('p_hold_applicant_date_until'))
12319: --
12320: ,p_honors =>
12321: hr_transaction_api.get_varchar2_value
12322: (p_transaction_step_id => p_transaction_step_id
12323: ,p_name =>upper('p_honors'))
12324: --
12325: ,p_internal_location =>

Line 12326: hr_transaction_api.get_varchar2_value

12322: (p_transaction_step_id => p_transaction_step_id
12323: ,p_name =>upper('p_honors'))
12324: --
12325: ,p_internal_location =>
12326: hr_transaction_api.get_varchar2_value
12327: (p_transaction_step_id => p_transaction_step_id
12328: ,p_name =>upper('p_internal_location'))
12329: --
12330: ,p_last_medical_test_by =>

Line 12331: hr_transaction_api.get_varchar2_value

12327: (p_transaction_step_id => p_transaction_step_id
12328: ,p_name =>upper('p_internal_location'))
12329: --
12330: ,p_last_medical_test_by =>
12331: hr_transaction_api.get_varchar2_value
12332: (p_transaction_step_id => p_transaction_step_id
12333: ,p_name =>upper('p_last_medical_test_by'))
12334: --
12335: ,p_last_medical_test_date =>

Line 12336: hr_transaction_api.get_date_value

12332: (p_transaction_step_id => p_transaction_step_id
12333: ,p_name =>upper('p_last_medical_test_by'))
12334: --
12335: ,p_last_medical_test_date =>
12336: hr_transaction_api.get_date_value
12337: (p_transaction_step_id => p_transaction_step_id
12338: ,p_name =>upper('p_last_medical_test_date'))
12339: --
12340: ,p_mailstop =>

Line 12341: hr_transaction_api.get_varchar2_value

12337: (p_transaction_step_id => p_transaction_step_id
12338: ,p_name =>upper('p_last_medical_test_date'))
12339: --
12340: ,p_mailstop =>
12341: hr_transaction_api.get_varchar2_value
12342: (p_transaction_step_id => p_transaction_step_id
12343: ,p_name =>upper('p_mailstop'))
12344: --
12345: ,p_office_number =>

Line 12346: hr_transaction_api.get_varchar2_value

12342: (p_transaction_step_id => p_transaction_step_id
12343: ,p_name =>upper('p_mailstop'))
12344: --
12345: ,p_office_number =>
12346: hr_transaction_api.get_varchar2_value
12347: (p_transaction_step_id => p_transaction_step_id
12348: ,p_name =>upper('p_office_number'))
12349: --
12350: ,p_on_military_service =>

Line 12351: hr_transaction_api.get_varchar2_value

12347: (p_transaction_step_id => p_transaction_step_id
12348: ,p_name =>upper('p_office_number'))
12349: --
12350: ,p_on_military_service =>
12351: hr_transaction_api.get_varchar2_value
12352: (p_transaction_step_id => p_transaction_step_id
12353: ,p_name =>upper('p_on_military_service'))
12354: --
12355: ,p_pre_name_adjunct =>

Line 12356: hr_transaction_api.get_varchar2_value

12352: (p_transaction_step_id => p_transaction_step_id
12353: ,p_name =>upper('p_on_military_service'))
12354: --
12355: ,p_pre_name_adjunct =>
12356: hr_transaction_api.get_varchar2_value
12357: (p_transaction_step_id => p_transaction_step_id
12358: ,p_name =>upper('p_pre_name_adjunct'))
12359: --
12360: ,p_projected_start_date =>

Line 12361: hr_transaction_api.get_date_value

12357: (p_transaction_step_id => p_transaction_step_id
12358: ,p_name =>upper('p_pre_name_adjunct'))
12359: --
12360: ,p_projected_start_date =>
12361: hr_transaction_api.get_date_value
12362: (p_transaction_step_id => p_transaction_step_id
12363: ,p_name =>upper('p_projected_start_date'))
12364: --
12365: ,p_rehire_authorizor =>

Line 12366: hr_transaction_api.get_varchar2_value

12362: (p_transaction_step_id => p_transaction_step_id
12363: ,p_name =>upper('p_projected_start_date'))
12364: --
12365: ,p_rehire_authorizor =>
12366: hr_transaction_api.get_varchar2_value
12367: (p_transaction_step_id => p_transaction_step_id
12368: ,p_name =>upper('p_rehire_authorizor'))
12369: --
12370: ,p_rehire_recommendation =>

Line 12371: hr_transaction_api.get_varchar2_value

12367: (p_transaction_step_id => p_transaction_step_id
12368: ,p_name =>upper('p_rehire_authorizor'))
12369: --
12370: ,p_rehire_recommendation =>
12371: hr_transaction_api.get_varchar2_value
12372: (p_transaction_step_id => p_transaction_step_id
12373: ,p_name =>upper('p_rehire_recommendation'))
12374: --
12375: ,p_resume_exists =>

Line 12376: hr_transaction_api.get_varchar2_value

12372: (p_transaction_step_id => p_transaction_step_id
12373: ,p_name =>upper('p_rehire_recommendation'))
12374: --
12375: ,p_resume_exists =>
12376: hr_transaction_api.get_varchar2_value
12377: (p_transaction_step_id => p_transaction_step_id
12378: ,p_name =>upper('p_resume_exists'))
12379: --
12380: ,p_resume_last_updated =>

Line 12381: hr_transaction_api.get_date_value

12377: (p_transaction_step_id => p_transaction_step_id
12378: ,p_name =>upper('p_resume_exists'))
12379: --
12380: ,p_resume_last_updated =>
12381: hr_transaction_api.get_date_value
12382: (p_transaction_step_id => p_transaction_step_id
12383: ,p_name =>upper('p_resume_last_updated'))
12384: --
12385: ,p_second_passport_exists =>

Line 12386: hr_transaction_api.get_varchar2_value

12382: (p_transaction_step_id => p_transaction_step_id
12383: ,p_name =>upper('p_resume_last_updated'))
12384: --
12385: ,p_second_passport_exists =>
12386: hr_transaction_api.get_varchar2_value
12387: (p_transaction_step_id => p_transaction_step_id
12388: ,p_name =>upper('p_second_passport_exists'))
12389: --
12390: ,p_student_status =>

Line 12391: hr_transaction_api.get_varchar2_value

12387: (p_transaction_step_id => p_transaction_step_id
12388: ,p_name =>upper('p_second_passport_exists'))
12389: --
12390: ,p_student_status =>
12391: hr_transaction_api.get_varchar2_value
12392: (p_transaction_step_id => p_transaction_step_id
12393: ,p_name =>upper('p_student_status'))
12394: --
12395: ,p_work_schedule =>

Line 12396: hr_transaction_api.get_varchar2_value

12392: (p_transaction_step_id => p_transaction_step_id
12393: ,p_name =>upper('p_student_status'))
12394: --
12395: ,p_work_schedule =>
12396: hr_transaction_api.get_varchar2_value
12397: (p_transaction_step_id => p_transaction_step_id
12398: ,p_name =>upper('p_work_schedule'))
12399: --
12400: ,p_rehire_reason =>

Line 12401: hr_transaction_api.get_varchar2_value

12397: (p_transaction_step_id => p_transaction_step_id
12398: ,p_name =>upper('p_work_schedule'))
12399: --
12400: ,p_rehire_reason =>
12401: hr_transaction_api.get_varchar2_value
12402: (p_transaction_step_id => p_transaction_step_id
12403: ,p_name =>upper('p_rehire_reason'))
12404: --
12405: ,p_suffix =>

Line 12406: hr_transaction_api.get_varchar2_value

12402: (p_transaction_step_id => p_transaction_step_id
12403: ,p_name =>upper('p_rehire_reason'))
12404: --
12405: ,p_suffix =>
12406: hr_transaction_api.get_varchar2_value
12407: (p_transaction_step_id => p_transaction_step_id
12408: ,p_name =>upper('p_suffix'))
12409: --
12410: ,p_benefit_group_id =>

Line 12411: hr_transaction_api.get_number_value

12407: (p_transaction_step_id => p_transaction_step_id
12408: ,p_name =>upper('p_suffix'))
12409: --
12410: ,p_benefit_group_id =>
12411: hr_transaction_api.get_number_value
12412: (p_transaction_step_id => p_transaction_step_id
12413: ,p_name =>upper('p_benefit_group_id'))
12414: --
12415: ,p_receipt_of_death_cert_date =>

Line 12416: hr_transaction_api.get_date_value

12412: (p_transaction_step_id => p_transaction_step_id
12413: ,p_name =>upper('p_benefit_group_id'))
12414: --
12415: ,p_receipt_of_death_cert_date =>
12416: hr_transaction_api.get_date_value
12417: (p_transaction_step_id => p_transaction_step_id
12418: ,p_name =>upper('p_receipt_of_death_cert_date'))
12419: --
12420: ,p_coord_ben_med_pln_no =>

Line 12421: hr_transaction_api.get_varchar2_value

12417: (p_transaction_step_id => p_transaction_step_id
12418: ,p_name =>upper('p_receipt_of_death_cert_date'))
12419: --
12420: ,p_coord_ben_med_pln_no =>
12421: hr_transaction_api.get_varchar2_value
12422: (p_transaction_step_id => p_transaction_step_id
12423: ,p_name =>upper('p_coord_ben_med_pln_no'))
12424: --
12425: ,p_coord_ben_no_cvg_flag =>

Line 12426: hr_transaction_api.get_varchar2_value

12422: (p_transaction_step_id => p_transaction_step_id
12423: ,p_name =>upper('p_coord_ben_med_pln_no'))
12424: --
12425: ,p_coord_ben_no_cvg_flag =>
12426: hr_transaction_api.get_varchar2_value
12427: (p_transaction_step_id => p_transaction_step_id
12428: ,p_name =>upper('p_coord_ben_no_cvg_flag'))
12429: --
12430: ,p_uses_tobacco_flag =>

Line 12431: hr_transaction_api.get_varchar2_value

12427: (p_transaction_step_id => p_transaction_step_id
12428: ,p_name =>upper('p_coord_ben_no_cvg_flag'))
12429: --
12430: ,p_uses_tobacco_flag =>
12431: hr_transaction_api.get_varchar2_value
12432: (p_transaction_step_id => p_transaction_step_id
12433: ,p_name =>upper('p_uses_tobacco_flag'))
12434: --
12435: ,p_dpdnt_adoption_date =>

Line 12436: hr_transaction_api.get_date_value

12432: (p_transaction_step_id => p_transaction_step_id
12433: ,p_name =>upper('p_uses_tobacco_flag'))
12434: --
12435: ,p_dpdnt_adoption_date =>
12436: hr_transaction_api.get_date_value
12437: (p_transaction_step_id => p_transaction_step_id
12438: ,p_name =>upper('p_dpdnt_adoption_date'))
12439: --
12440: ,p_dpdnt_vlntry_svce_flag =>

Line 12441: hr_transaction_api.get_varchar2_value

12437: (p_transaction_step_id => p_transaction_step_id
12438: ,p_name =>upper('p_dpdnt_adoption_date'))
12439: --
12440: ,p_dpdnt_vlntry_svce_flag =>
12441: hr_transaction_api.get_varchar2_value
12442: (p_transaction_step_id => p_transaction_step_id
12443: ,p_name =>upper('p_dpdnt_vlntry_svce_flag'))
12444: --
12445: /*

Line 12452: hr_transaction_api.get_date_value

12448: -- and original_date_of_hire
12449: -- So not necessary to pass the parameter.
12450: --
12451: ,p_original_date_of_hire =>
12452: hr_transaction_api.get_date_value
12453: (p_transaction_step_id => p_transaction_step_id
12454: ,p_name =>upper('p_original_date_of_hire'))
12455: --
12456: ,p_adjusted_svc_date =>

Line 12457: hr_transaction_api.get_date_value

12453: (p_transaction_step_id => p_transaction_step_id
12454: ,p_name =>upper('p_original_date_of_hire'))
12455: --
12456: ,p_adjusted_svc_date =>
12457: hr_transaction_api.get_date_value
12458: (p_transaction_step_id => p_transaction_step_id
12459: ,p_name =>upper('p_adjusted_svc_date'))
12460: */
12461: --

Line 12463: hr_transaction_api.get_varchar2_value

12459: ,p_name =>upper('p_adjusted_svc_date'))
12460: */
12461: --
12462: ,p_town_of_birth =>
12463: hr_transaction_api.get_varchar2_value
12464: (p_transaction_step_id => p_transaction_step_id
12465: ,p_name =>upper('p_town_of_birth'))
12466: --
12467: ,p_region_of_birth =>

Line 12468: hr_transaction_api.get_varchar2_value

12464: (p_transaction_step_id => p_transaction_step_id
12465: ,p_name =>upper('p_town_of_birth'))
12466: --
12467: ,p_region_of_birth =>
12468: hr_transaction_api.get_varchar2_value
12469: (p_transaction_step_id => p_transaction_step_id
12470: ,p_name =>upper('p_region_of_birth'))
12471: --
12472: ,p_country_of_birth =>

Line 12473: hr_transaction_api.get_varchar2_value

12469: (p_transaction_step_id => p_transaction_step_id
12470: ,p_name =>upper('p_region_of_birth'))
12471: --
12472: ,p_country_of_birth =>
12473: hr_transaction_api.get_varchar2_value
12474: (p_transaction_step_id => p_transaction_step_id
12475: ,p_name =>upper('p_country_of_birth'))
12476: --
12477: ,p_global_person_id =>

Line 12478: hr_transaction_api.get_varchar2_value

12474: (p_transaction_step_id => p_transaction_step_id
12475: ,p_name =>upper('p_country_of_birth'))
12476: --
12477: ,p_global_person_id =>
12478: hr_transaction_api.get_varchar2_value
12479: (p_transaction_step_id => p_transaction_step_id
12480: ,p_name =>upper('p_global_person_id'))
12481: --
12482: ,p_effective_start_date => l_effective_start_date

Line 12516: l_effective_date := hr_transaction_api.get_DATE_value

12512: -- For normal commit the effective date should come from txn tbales.
12513: --
12514: if not p_validate then
12515: --
12516: l_effective_date := hr_transaction_api.get_DATE_value
12517: (p_transaction_step_id => p_transaction_step_id
12518: ,p_name => 'P_CONT_EFFECTIVE_DATE');
12519: --
12520: end if;

Line 12527: l_cont_rec_changed := hr_transaction_api.get_varchar2_value

12523: --
12524: -- Get the contact_relationship_id first. If it is null, that means
12525: -- this is error and raise the error. -- add the error name 99999.
12526: --
12527: l_cont_rec_changed := hr_transaction_api.get_varchar2_value
12528: (p_transaction_step_id => p_transaction_step_id
12529: ,p_name =>upper( 'p_cont_rec_changed'));
12530:
12531: --

Line 12532: l_contact_relationship_id := hr_transaction_api.get_number_value

12528: (p_transaction_step_id => p_transaction_step_id
12529: ,p_name =>upper( 'p_cont_rec_changed'));
12530:
12531: --
12532: l_contact_relationship_id := hr_transaction_api.get_number_value
12533: (p_transaction_step_id => p_transaction_step_id
12534: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
12535: --
12536: l_ovn := hr_transaction_api.get_number_value

Line 12536: l_ovn := hr_transaction_api.get_number_value

12532: l_contact_relationship_id := hr_transaction_api.get_number_value
12533: (p_transaction_step_id => p_transaction_step_id
12534: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
12535: --
12536: l_ovn := hr_transaction_api.get_number_value
12537: (p_transaction_step_id => p_transaction_step_id
12538: ,p_name => 'P_CONT_OBJECT_VERSION_NUMBER');
12539:
12540: --

Line 12541: l_action := hr_transaction_api.get_varchar2_value

12537: (p_transaction_step_id => p_transaction_step_id
12538: ,p_name => 'P_CONT_OBJECT_VERSION_NUMBER');
12539:
12540: --
12541: l_action := hr_transaction_api.get_varchar2_value
12542: (p_transaction_step_id => p_transaction_step_id
12543: ,p_name =>upper( 'p_action'));
12544: --
12545: l_orig_rel_type := hr_transaction_api.get_VARCHAR2_value

Line 12545: l_orig_rel_type := hr_transaction_api.get_VARCHAR2_value

12541: l_action := hr_transaction_api.get_varchar2_value
12542: (p_transaction_step_id => p_transaction_step_id
12543: ,p_name =>upper( 'p_action'));
12544: --
12545: l_orig_rel_type := hr_transaction_api.get_VARCHAR2_value
12546: (p_transaction_step_id => p_transaction_step_id
12547: ,p_name => upper('p_orig_rel_type'));
12548:
12549: --

Line 12551: hr_transaction_api.get_varchar2_value

12547: ,p_name => upper('p_orig_rel_type'));
12548:
12549: --
12550: l_contact_operation :=
12551: hr_transaction_api.get_varchar2_value
12552: (p_transaction_step_id => p_transaction_step_id
12553: ,p_name =>upper( 'p_contact_operation'));
12554:
12555:

Line 12563: if (hr_transaction_api.get_VARCHAR2_value

12559: --
12560: -- If shared residence flag is yes then delete the contacts primary
12561: -- address.
12562: --
12563: if (hr_transaction_api.get_VARCHAR2_value
12564: (p_transaction_step_id => p_transaction_step_id
12565: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG') = 'Y') then
12566: --
12567: p_del_cont_primary_addr

Line 12569: => hr_transaction_api.get_NUMBER_value

12565: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG') = 'Y') then
12566: --
12567: p_del_cont_primary_addr
12568: (p_contact_relationship_id
12569: => hr_transaction_api.get_NUMBER_value
12570: (p_transaction_step_id => p_transaction_step_id
12571: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12572: );
12573: --

Line 12576: l_date_sart := hr_transaction_api.get_DATE_value

12572: );
12573: --
12574: end if;
12575:
12576: l_date_sart := hr_transaction_api.get_DATE_value
12577: (p_transaction_step_id => p_transaction_step_id
12578: ,p_name => 'P_DATE_START');
12579: --
12580: l_primary_contact_flag :=

Line 12581: hr_transaction_api.get_VARCHAR2_value

12577: (p_transaction_step_id => p_transaction_step_id
12578: ,p_name => 'P_DATE_START');
12579: --
12580: l_primary_contact_flag :=
12581: hr_transaction_api.get_VARCHAR2_value
12582: (p_transaction_step_id => p_transaction_step_id
12583: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
12584: if l_primary_contact_flag = null then
12585: l_primary_contact_flag := 'N';

Line 12597: hr_transaction_api.get_NUMBER_value

12593: ---if earlier start date of contact is greater than or equals to the new date, then delete the contact,
12594: ---and create a new one. Else update the contact, and then create one.
12595:
12596: l_old_contact_relationship_id :=
12597: hr_transaction_api.get_NUMBER_value
12598: (p_transaction_step_id => p_transaction_step_id
12599: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
12600:
12601: begin

Line 12628: hr_transaction_api.get_NUMBER_value

12624:
12625: /*hr_contact_rel_api.delete_contact_relationship(
12626: p_validate => p_validate
12627: ,P_CONTACT_RELATIONSHIP_ID =>
12628: hr_transaction_api.get_NUMBER_value
12629: (p_transaction_step_id => p_transaction_step_id
12630: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12631: ,p_object_version_number => l_ovn
12632: );

Line 12634: l_CONTACT_RELATIONSHIP_ID_1 := hr_transaction_api.get_number_value

12630: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12631: ,p_object_version_number => l_ovn
12632: );
12633: */
12634: l_CONTACT_RELATIONSHIP_ID_1 := hr_transaction_api.get_number_value
12635: (p_transaction_step_id => p_transaction_step_id
12636: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
12637:
12638: select rowid

Line 12648: , X_Business_Group_Id => hr_transaction_api.get_NUMBER_value

12644:
12645: PER_CONTACT_RELATIONSHIPS_PKG.Update_Row(
12646: X_Rowid => p_rowid
12647: , X_Contact_Relationship_Id => l_CONTACT_RELATIONSHIP_ID_1
12648: , X_Business_Group_Id => hr_transaction_api.get_NUMBER_value
12649: (p_transaction_step_id => p_transaction_step_id
12650: ,p_name => 'P_BUSINESS_GROUP_ID')
12651: , X_Person_Id => hr_transaction_api.get_number_value
12652: (p_transaction_step_id => p_transaction_step_id

Line 12651: , X_Person_Id => hr_transaction_api.get_number_value

12647: , X_Contact_Relationship_Id => l_CONTACT_RELATIONSHIP_ID_1
12648: , X_Business_Group_Id => hr_transaction_api.get_NUMBER_value
12649: (p_transaction_step_id => p_transaction_step_id
12650: ,p_name => 'P_BUSINESS_GROUP_ID')
12651: , X_Person_Id => hr_transaction_api.get_number_value
12652: (p_transaction_step_id => p_transaction_step_id
12653: ,p_name =>upper('p_person_id'))
12654: , X_Contact_Person_Id => hr_transaction_api.get_number_value
12655: (p_transaction_step_id => p_transaction_step_id

Line 12654: , X_Contact_Person_Id => hr_transaction_api.get_number_value

12650: ,p_name => 'P_BUSINESS_GROUP_ID')
12651: , X_Person_Id => hr_transaction_api.get_number_value
12652: (p_transaction_step_id => p_transaction_step_id
12653: ,p_name =>upper('p_person_id'))
12654: , X_Contact_Person_Id => hr_transaction_api.get_number_value
12655: (p_transaction_step_id => p_transaction_step_id
12656: ,p_name =>upper('p_cont_person_id'))
12657: , X_Contact_Type => hr_transaction_api.get_VARCHAR2_value
12658: (p_transaction_step_id => p_transaction_step_id

Line 12657: , X_Contact_Type => hr_transaction_api.get_VARCHAR2_value

12653: ,p_name =>upper('p_person_id'))
12654: , X_Contact_Person_Id => hr_transaction_api.get_number_value
12655: (p_transaction_step_id => p_transaction_step_id
12656: ,p_name =>upper('p_cont_person_id'))
12657: , X_Contact_Type => hr_transaction_api.get_VARCHAR2_value
12658: (p_transaction_step_id => p_transaction_step_id
12659: ,p_name => 'P_CONTACT_TYPE')
12660: , X_Comments => hr_transaction_api.get_VARCHAR2_value
12661: (p_transaction_step_id => p_transaction_step_id

Line 12660: , X_Comments => hr_transaction_api.get_VARCHAR2_value

12656: ,p_name =>upper('p_cont_person_id'))
12657: , X_Contact_Type => hr_transaction_api.get_VARCHAR2_value
12658: (p_transaction_step_id => p_transaction_step_id
12659: ,p_name => 'P_CONTACT_TYPE')
12660: , X_Comments => hr_transaction_api.get_VARCHAR2_value
12661: (p_transaction_step_id => p_transaction_step_id
12662: ,p_name => 'P_CTR_COMMENTS')
12663: , X_Bondholder_Flag => hr_transaction_api.get_VARCHAR2_value
12664: (p_transaction_step_id => p_transaction_step_id

Line 12663: , X_Bondholder_Flag => hr_transaction_api.get_VARCHAR2_value

12659: ,p_name => 'P_CONTACT_TYPE')
12660: , X_Comments => hr_transaction_api.get_VARCHAR2_value
12661: (p_transaction_step_id => p_transaction_step_id
12662: ,p_name => 'P_CTR_COMMENTS')
12663: , X_Bondholder_Flag => hr_transaction_api.get_VARCHAR2_value
12664: (p_transaction_step_id => p_transaction_step_id
12665: ,p_name => 'P_BONDHOLDER_FLAG')
12666: , X_Third_Party_Pay_Flag => hr_transaction_api.get_VARCHAR2_value
12667: (p_transaction_step_id => p_transaction_step_id

Line 12666: , X_Third_Party_Pay_Flag => hr_transaction_api.get_VARCHAR2_value

12662: ,p_name => 'P_CTR_COMMENTS')
12663: , X_Bondholder_Flag => hr_transaction_api.get_VARCHAR2_value
12664: (p_transaction_step_id => p_transaction_step_id
12665: ,p_name => 'P_BONDHOLDER_FLAG')
12666: , X_Third_Party_Pay_Flag => hr_transaction_api.get_VARCHAR2_value
12667: (p_transaction_step_id => p_transaction_step_id
12668: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
12669: , X_Primary_Contact_Flag => hr_transaction_api.get_VARCHAR2_value
12670: (p_transaction_step_id => p_transaction_step_id

Line 12669: , X_Primary_Contact_Flag => hr_transaction_api.get_VARCHAR2_value

12665: ,p_name => 'P_BONDHOLDER_FLAG')
12666: , X_Third_Party_Pay_Flag => hr_transaction_api.get_VARCHAR2_value
12667: (p_transaction_step_id => p_transaction_step_id
12668: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
12669: , X_Primary_Contact_Flag => hr_transaction_api.get_VARCHAR2_value
12670: (p_transaction_step_id => p_transaction_step_id
12671: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
12672: , X_Cont_Attribute_Category => hr_transaction_api.get_VARCHAR2_value
12673: (p_transaction_step_id => p_transaction_step_id

Line 12672: , X_Cont_Attribute_Category => hr_transaction_api.get_VARCHAR2_value

12668: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
12669: , X_Primary_Contact_Flag => hr_transaction_api.get_VARCHAR2_value
12670: (p_transaction_step_id => p_transaction_step_id
12671: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
12672: , X_Cont_Attribute_Category => hr_transaction_api.get_VARCHAR2_value
12673: (p_transaction_step_id => p_transaction_step_id
12674: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12675: , X_Cont_Attribute1 => hr_transaction_api.get_VARCHAR2_value
12676: (p_transaction_step_id => p_transaction_step_id

Line 12675: , X_Cont_Attribute1 => hr_transaction_api.get_VARCHAR2_value

12671: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
12672: , X_Cont_Attribute_Category => hr_transaction_api.get_VARCHAR2_value
12673: (p_transaction_step_id => p_transaction_step_id
12674: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12675: , X_Cont_Attribute1 => hr_transaction_api.get_VARCHAR2_value
12676: (p_transaction_step_id => p_transaction_step_id
12677: ,p_name => 'P_CONT_ATTRIBUTE1')
12678: , X_Cont_Attribute2 => hr_transaction_api.get_VARCHAR2_value
12679: (p_transaction_step_id => p_transaction_step_id

Line 12678: , X_Cont_Attribute2 => hr_transaction_api.get_VARCHAR2_value

12674: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12675: , X_Cont_Attribute1 => hr_transaction_api.get_VARCHAR2_value
12676: (p_transaction_step_id => p_transaction_step_id
12677: ,p_name => 'P_CONT_ATTRIBUTE1')
12678: , X_Cont_Attribute2 => hr_transaction_api.get_VARCHAR2_value
12679: (p_transaction_step_id => p_transaction_step_id
12680: ,p_name => 'P_CONT_ATTRIBUTE2')
12681: , X_Cont_Attribute3 => hr_transaction_api.get_VARCHAR2_value
12682: (p_transaction_step_id => p_transaction_step_id

Line 12681: , X_Cont_Attribute3 => hr_transaction_api.get_VARCHAR2_value

12677: ,p_name => 'P_CONT_ATTRIBUTE1')
12678: , X_Cont_Attribute2 => hr_transaction_api.get_VARCHAR2_value
12679: (p_transaction_step_id => p_transaction_step_id
12680: ,p_name => 'P_CONT_ATTRIBUTE2')
12681: , X_Cont_Attribute3 => hr_transaction_api.get_VARCHAR2_value
12682: (p_transaction_step_id => p_transaction_step_id
12683: ,p_name => 'P_CONT_ATTRIBUTE3')
12684: , X_Cont_Attribute4 => hr_transaction_api.get_VARCHAR2_value
12685: (p_transaction_step_id => p_transaction_step_id

Line 12684: , X_Cont_Attribute4 => hr_transaction_api.get_VARCHAR2_value

12680: ,p_name => 'P_CONT_ATTRIBUTE2')
12681: , X_Cont_Attribute3 => hr_transaction_api.get_VARCHAR2_value
12682: (p_transaction_step_id => p_transaction_step_id
12683: ,p_name => 'P_CONT_ATTRIBUTE3')
12684: , X_Cont_Attribute4 => hr_transaction_api.get_VARCHAR2_value
12685: (p_transaction_step_id => p_transaction_step_id
12686: ,p_name => 'P_CONT_ATTRIBUTE4')
12687: , X_Cont_Attribute5 => hr_transaction_api.get_VARCHAR2_value
12688: (p_transaction_step_id => p_transaction_step_id

Line 12687: , X_Cont_Attribute5 => hr_transaction_api.get_VARCHAR2_value

12683: ,p_name => 'P_CONT_ATTRIBUTE3')
12684: , X_Cont_Attribute4 => hr_transaction_api.get_VARCHAR2_value
12685: (p_transaction_step_id => p_transaction_step_id
12686: ,p_name => 'P_CONT_ATTRIBUTE4')
12687: , X_Cont_Attribute5 => hr_transaction_api.get_VARCHAR2_value
12688: (p_transaction_step_id => p_transaction_step_id
12689: ,p_name => 'P_CONT_ATTRIBUTE5')
12690: , X_Cont_Attribute6 => hr_transaction_api.get_VARCHAR2_value
12691: (p_transaction_step_id => p_transaction_step_id

Line 12690: , X_Cont_Attribute6 => hr_transaction_api.get_VARCHAR2_value

12686: ,p_name => 'P_CONT_ATTRIBUTE4')
12687: , X_Cont_Attribute5 => hr_transaction_api.get_VARCHAR2_value
12688: (p_transaction_step_id => p_transaction_step_id
12689: ,p_name => 'P_CONT_ATTRIBUTE5')
12690: , X_Cont_Attribute6 => hr_transaction_api.get_VARCHAR2_value
12691: (p_transaction_step_id => p_transaction_step_id
12692: ,p_name => 'P_CONT_ATTRIBUTE6')
12693: , X_Cont_Attribute7 => hr_transaction_api.get_VARCHAR2_value
12694: (p_transaction_step_id => p_transaction_step_id

Line 12693: , X_Cont_Attribute7 => hr_transaction_api.get_VARCHAR2_value

12689: ,p_name => 'P_CONT_ATTRIBUTE5')
12690: , X_Cont_Attribute6 => hr_transaction_api.get_VARCHAR2_value
12691: (p_transaction_step_id => p_transaction_step_id
12692: ,p_name => 'P_CONT_ATTRIBUTE6')
12693: , X_Cont_Attribute7 => hr_transaction_api.get_VARCHAR2_value
12694: (p_transaction_step_id => p_transaction_step_id
12695: ,p_name => 'P_CONT_ATTRIBUTE7')
12696: , X_Cont_Attribute8 => hr_transaction_api.get_VARCHAR2_value
12697: (p_transaction_step_id => p_transaction_step_id

Line 12696: , X_Cont_Attribute8 => hr_transaction_api.get_VARCHAR2_value

12692: ,p_name => 'P_CONT_ATTRIBUTE6')
12693: , X_Cont_Attribute7 => hr_transaction_api.get_VARCHAR2_value
12694: (p_transaction_step_id => p_transaction_step_id
12695: ,p_name => 'P_CONT_ATTRIBUTE7')
12696: , X_Cont_Attribute8 => hr_transaction_api.get_VARCHAR2_value
12697: (p_transaction_step_id => p_transaction_step_id
12698: ,p_name => 'P_CONT_ATTRIBUTE8')
12699: , X_Cont_Attribute9 => hr_transaction_api.get_VARCHAR2_value
12700: (p_transaction_step_id => p_transaction_step_id

Line 12699: , X_Cont_Attribute9 => hr_transaction_api.get_VARCHAR2_value

12695: ,p_name => 'P_CONT_ATTRIBUTE7')
12696: , X_Cont_Attribute8 => hr_transaction_api.get_VARCHAR2_value
12697: (p_transaction_step_id => p_transaction_step_id
12698: ,p_name => 'P_CONT_ATTRIBUTE8')
12699: , X_Cont_Attribute9 => hr_transaction_api.get_VARCHAR2_value
12700: (p_transaction_step_id => p_transaction_step_id
12701: ,p_name => 'P_CONT_ATTRIBUTE9')
12702: , X_Cont_Attribute10 => hr_transaction_api.get_VARCHAR2_value
12703: (p_transaction_step_id => p_transaction_step_id

Line 12702: , X_Cont_Attribute10 => hr_transaction_api.get_VARCHAR2_value

12698: ,p_name => 'P_CONT_ATTRIBUTE8')
12699: , X_Cont_Attribute9 => hr_transaction_api.get_VARCHAR2_value
12700: (p_transaction_step_id => p_transaction_step_id
12701: ,p_name => 'P_CONT_ATTRIBUTE9')
12702: , X_Cont_Attribute10 => hr_transaction_api.get_VARCHAR2_value
12703: (p_transaction_step_id => p_transaction_step_id
12704: ,p_name => 'P_CONT_ATTRIBUTE10')
12705: , X_Cont_Attribute11 => hr_transaction_api.get_VARCHAR2_value
12706: (p_transaction_step_id => p_transaction_step_id

Line 12705: , X_Cont_Attribute11 => hr_transaction_api.get_VARCHAR2_value

12701: ,p_name => 'P_CONT_ATTRIBUTE9')
12702: , X_Cont_Attribute10 => hr_transaction_api.get_VARCHAR2_value
12703: (p_transaction_step_id => p_transaction_step_id
12704: ,p_name => 'P_CONT_ATTRIBUTE10')
12705: , X_Cont_Attribute11 => hr_transaction_api.get_VARCHAR2_value
12706: (p_transaction_step_id => p_transaction_step_id
12707: ,p_name => 'P_CONT_ATTRIBUTE11')
12708: , X_Cont_Attribute12 => hr_transaction_api.get_VARCHAR2_value
12709: (p_transaction_step_id => p_transaction_step_id

Line 12708: , X_Cont_Attribute12 => hr_transaction_api.get_VARCHAR2_value

12704: ,p_name => 'P_CONT_ATTRIBUTE10')
12705: , X_Cont_Attribute11 => hr_transaction_api.get_VARCHAR2_value
12706: (p_transaction_step_id => p_transaction_step_id
12707: ,p_name => 'P_CONT_ATTRIBUTE11')
12708: , X_Cont_Attribute12 => hr_transaction_api.get_VARCHAR2_value
12709: (p_transaction_step_id => p_transaction_step_id
12710: ,p_name => 'P_CONT_ATTRIBUTE12')
12711: , X_Cont_Attribute13 => hr_transaction_api.get_VARCHAR2_value
12712: (p_transaction_step_id => p_transaction_step_id

Line 12711: , X_Cont_Attribute13 => hr_transaction_api.get_VARCHAR2_value

12707: ,p_name => 'P_CONT_ATTRIBUTE11')
12708: , X_Cont_Attribute12 => hr_transaction_api.get_VARCHAR2_value
12709: (p_transaction_step_id => p_transaction_step_id
12710: ,p_name => 'P_CONT_ATTRIBUTE12')
12711: , X_Cont_Attribute13 => hr_transaction_api.get_VARCHAR2_value
12712: (p_transaction_step_id => p_transaction_step_id
12713: ,p_name => 'P_CONT_ATTRIBUTE13')
12714: , X_Cont_Attribute14 => hr_transaction_api.get_VARCHAR2_value
12715: (p_transaction_step_id => p_transaction_step_id

Line 12714: , X_Cont_Attribute14 => hr_transaction_api.get_VARCHAR2_value

12710: ,p_name => 'P_CONT_ATTRIBUTE12')
12711: , X_Cont_Attribute13 => hr_transaction_api.get_VARCHAR2_value
12712: (p_transaction_step_id => p_transaction_step_id
12713: ,p_name => 'P_CONT_ATTRIBUTE13')
12714: , X_Cont_Attribute14 => hr_transaction_api.get_VARCHAR2_value
12715: (p_transaction_step_id => p_transaction_step_id
12716: ,p_name => 'P_CONT_ATTRIBUTE14')
12717: , X_Cont_Attribute15 => hr_transaction_api.get_VARCHAR2_value
12718: (p_transaction_step_id => p_transaction_step_id

Line 12717: , X_Cont_Attribute15 => hr_transaction_api.get_VARCHAR2_value

12713: ,p_name => 'P_CONT_ATTRIBUTE13')
12714: , X_Cont_Attribute14 => hr_transaction_api.get_VARCHAR2_value
12715: (p_transaction_step_id => p_transaction_step_id
12716: ,p_name => 'P_CONT_ATTRIBUTE14')
12717: , X_Cont_Attribute15 => hr_transaction_api.get_VARCHAR2_value
12718: (p_transaction_step_id => p_transaction_step_id
12719: ,p_name => 'P_CONT_ATTRIBUTE15')
12720: , X_Cont_Attribute16 => hr_transaction_api.get_VARCHAR2_value
12721: (p_transaction_step_id => p_transaction_step_id

Line 12720: , X_Cont_Attribute16 => hr_transaction_api.get_VARCHAR2_value

12716: ,p_name => 'P_CONT_ATTRIBUTE14')
12717: , X_Cont_Attribute15 => hr_transaction_api.get_VARCHAR2_value
12718: (p_transaction_step_id => p_transaction_step_id
12719: ,p_name => 'P_CONT_ATTRIBUTE15')
12720: , X_Cont_Attribute16 => hr_transaction_api.get_VARCHAR2_value
12721: (p_transaction_step_id => p_transaction_step_id
12722: ,p_name => 'P_CONT_ATTRIBUTE16')
12723: , X_Cont_Attribute17 => hr_transaction_api.get_VARCHAR2_value
12724: (p_transaction_step_id => p_transaction_step_id

Line 12723: , X_Cont_Attribute17 => hr_transaction_api.get_VARCHAR2_value

12719: ,p_name => 'P_CONT_ATTRIBUTE15')
12720: , X_Cont_Attribute16 => hr_transaction_api.get_VARCHAR2_value
12721: (p_transaction_step_id => p_transaction_step_id
12722: ,p_name => 'P_CONT_ATTRIBUTE16')
12723: , X_Cont_Attribute17 => hr_transaction_api.get_VARCHAR2_value
12724: (p_transaction_step_id => p_transaction_step_id
12725: ,p_name => 'P_CONT_ATTRIBUTE17')
12726: , X_Cont_Attribute18 => hr_transaction_api.get_VARCHAR2_value
12727: (p_transaction_step_id => p_transaction_step_id

Line 12726: , X_Cont_Attribute18 => hr_transaction_api.get_VARCHAR2_value

12722: ,p_name => 'P_CONT_ATTRIBUTE16')
12723: , X_Cont_Attribute17 => hr_transaction_api.get_VARCHAR2_value
12724: (p_transaction_step_id => p_transaction_step_id
12725: ,p_name => 'P_CONT_ATTRIBUTE17')
12726: , X_Cont_Attribute18 => hr_transaction_api.get_VARCHAR2_value
12727: (p_transaction_step_id => p_transaction_step_id
12728: ,p_name => 'P_CONT_ATTRIBUTE18')
12729: , X_Cont_Attribute19 => hr_transaction_api.get_VARCHAR2_value
12730: (p_transaction_step_id => p_transaction_step_id

Line 12729: , X_Cont_Attribute19 => hr_transaction_api.get_VARCHAR2_value

12725: ,p_name => 'P_CONT_ATTRIBUTE17')
12726: , X_Cont_Attribute18 => hr_transaction_api.get_VARCHAR2_value
12727: (p_transaction_step_id => p_transaction_step_id
12728: ,p_name => 'P_CONT_ATTRIBUTE18')
12729: , X_Cont_Attribute19 => hr_transaction_api.get_VARCHAR2_value
12730: (p_transaction_step_id => p_transaction_step_id
12731: ,p_name => 'P_CONT_ATTRIBUTE19')
12732: , X_Cont_Attribute20 => hr_transaction_api.get_VARCHAR2_value
12733: (p_transaction_step_id => p_transaction_step_id

Line 12732: , X_Cont_Attribute20 => hr_transaction_api.get_VARCHAR2_value

12728: ,p_name => 'P_CONT_ATTRIBUTE18')
12729: , X_Cont_Attribute19 => hr_transaction_api.get_VARCHAR2_value
12730: (p_transaction_step_id => p_transaction_step_id
12731: ,p_name => 'P_CONT_ATTRIBUTE19')
12732: , X_Cont_Attribute20 => hr_transaction_api.get_VARCHAR2_value
12733: (p_transaction_step_id => p_transaction_step_id
12734: ,p_name => 'P_CONT_ATTRIBUTE20')
12735: , X_Cont_Information_Category => hr_transaction_api.get_VARCHAR2_value
12736: (p_transaction_step_id => p_transaction_step_id

Line 12735: , X_Cont_Information_Category => hr_transaction_api.get_VARCHAR2_value

12731: ,p_name => 'P_CONT_ATTRIBUTE19')
12732: , X_Cont_Attribute20 => hr_transaction_api.get_VARCHAR2_value
12733: (p_transaction_step_id => p_transaction_step_id
12734: ,p_name => 'P_CONT_ATTRIBUTE20')
12735: , X_Cont_Information_Category => hr_transaction_api.get_VARCHAR2_value
12736: (p_transaction_step_id => p_transaction_step_id
12737: ,p_name => 'P_PER_INFORMATION_CATEGORY')
12738: , X_Cont_Information1 => hr_transaction_api.get_VARCHAR2_value
12739: (p_transaction_step_id => p_transaction_step_id

Line 12738: , X_Cont_Information1 => hr_transaction_api.get_VARCHAR2_value

12734: ,p_name => 'P_CONT_ATTRIBUTE20')
12735: , X_Cont_Information_Category => hr_transaction_api.get_VARCHAR2_value
12736: (p_transaction_step_id => p_transaction_step_id
12737: ,p_name => 'P_PER_INFORMATION_CATEGORY')
12738: , X_Cont_Information1 => hr_transaction_api.get_VARCHAR2_value
12739: (p_transaction_step_id => p_transaction_step_id
12740: ,p_name => 'P_CONT_INFORMATION1')
12741: , X_Cont_Information2 => hr_transaction_api.get_VARCHAR2_value
12742: (p_transaction_step_id => p_transaction_step_id

Line 12741: , X_Cont_Information2 => hr_transaction_api.get_VARCHAR2_value

12737: ,p_name => 'P_PER_INFORMATION_CATEGORY')
12738: , X_Cont_Information1 => hr_transaction_api.get_VARCHAR2_value
12739: (p_transaction_step_id => p_transaction_step_id
12740: ,p_name => 'P_CONT_INFORMATION1')
12741: , X_Cont_Information2 => hr_transaction_api.get_VARCHAR2_value
12742: (p_transaction_step_id => p_transaction_step_id
12743: ,p_name => 'P_CONT_INFORMATION2')
12744: , X_Cont_Information3 => hr_transaction_api.get_VARCHAR2_value
12745: (p_transaction_step_id => p_transaction_step_id

Line 12744: , X_Cont_Information3 => hr_transaction_api.get_VARCHAR2_value

12740: ,p_name => 'P_CONT_INFORMATION1')
12741: , X_Cont_Information2 => hr_transaction_api.get_VARCHAR2_value
12742: (p_transaction_step_id => p_transaction_step_id
12743: ,p_name => 'P_CONT_INFORMATION2')
12744: , X_Cont_Information3 => hr_transaction_api.get_VARCHAR2_value
12745: (p_transaction_step_id => p_transaction_step_id
12746: ,p_name => 'P_CONT_INFORMATION3')
12747: , X_Cont_Information4 => hr_transaction_api.get_VARCHAR2_value
12748: (p_transaction_step_id => p_transaction_step_id

Line 12747: , X_Cont_Information4 => hr_transaction_api.get_VARCHAR2_value

12743: ,p_name => 'P_CONT_INFORMATION2')
12744: , X_Cont_Information3 => hr_transaction_api.get_VARCHAR2_value
12745: (p_transaction_step_id => p_transaction_step_id
12746: ,p_name => 'P_CONT_INFORMATION3')
12747: , X_Cont_Information4 => hr_transaction_api.get_VARCHAR2_value
12748: (p_transaction_step_id => p_transaction_step_id
12749: ,p_name => 'P_CONT_INFORMATION4')
12750: , X_Cont_Information5 => hr_transaction_api.get_VARCHAR2_value
12751: (p_transaction_step_id => p_transaction_step_id

Line 12750: , X_Cont_Information5 => hr_transaction_api.get_VARCHAR2_value

12746: ,p_name => 'P_CONT_INFORMATION3')
12747: , X_Cont_Information4 => hr_transaction_api.get_VARCHAR2_value
12748: (p_transaction_step_id => p_transaction_step_id
12749: ,p_name => 'P_CONT_INFORMATION4')
12750: , X_Cont_Information5 => hr_transaction_api.get_VARCHAR2_value
12751: (p_transaction_step_id => p_transaction_step_id
12752: ,p_name => 'P_CONT_INFORMATION5')
12753: , X_Cont_Information6 => hr_transaction_api.get_VARCHAR2_value
12754: (p_transaction_step_id => p_transaction_step_id

Line 12753: , X_Cont_Information6 => hr_transaction_api.get_VARCHAR2_value

12749: ,p_name => 'P_CONT_INFORMATION4')
12750: , X_Cont_Information5 => hr_transaction_api.get_VARCHAR2_value
12751: (p_transaction_step_id => p_transaction_step_id
12752: ,p_name => 'P_CONT_INFORMATION5')
12753: , X_Cont_Information6 => hr_transaction_api.get_VARCHAR2_value
12754: (p_transaction_step_id => p_transaction_step_id
12755: ,p_name => 'P_CONT_INFORMATION6')
12756: , X_Cont_Information7 => hr_transaction_api.get_VARCHAR2_value
12757: (p_transaction_step_id => p_transaction_step_id

Line 12756: , X_Cont_Information7 => hr_transaction_api.get_VARCHAR2_value

12752: ,p_name => 'P_CONT_INFORMATION5')
12753: , X_Cont_Information6 => hr_transaction_api.get_VARCHAR2_value
12754: (p_transaction_step_id => p_transaction_step_id
12755: ,p_name => 'P_CONT_INFORMATION6')
12756: , X_Cont_Information7 => hr_transaction_api.get_VARCHAR2_value
12757: (p_transaction_step_id => p_transaction_step_id
12758: ,p_name => 'P_CONT_INFORMATION7')
12759: , X_Cont_Information8 => hr_transaction_api.get_VARCHAR2_value
12760: (p_transaction_step_id => p_transaction_step_id

Line 12759: , X_Cont_Information8 => hr_transaction_api.get_VARCHAR2_value

12755: ,p_name => 'P_CONT_INFORMATION6')
12756: , X_Cont_Information7 => hr_transaction_api.get_VARCHAR2_value
12757: (p_transaction_step_id => p_transaction_step_id
12758: ,p_name => 'P_CONT_INFORMATION7')
12759: , X_Cont_Information8 => hr_transaction_api.get_VARCHAR2_value
12760: (p_transaction_step_id => p_transaction_step_id
12761: ,p_name => 'P_CONT_INFORMATION8')
12762: , X_Cont_Information9 => hr_transaction_api.get_VARCHAR2_value
12763: (p_transaction_step_id => p_transaction_step_id

Line 12762: , X_Cont_Information9 => hr_transaction_api.get_VARCHAR2_value

12758: ,p_name => 'P_CONT_INFORMATION7')
12759: , X_Cont_Information8 => hr_transaction_api.get_VARCHAR2_value
12760: (p_transaction_step_id => p_transaction_step_id
12761: ,p_name => 'P_CONT_INFORMATION8')
12762: , X_Cont_Information9 => hr_transaction_api.get_VARCHAR2_value
12763: (p_transaction_step_id => p_transaction_step_id
12764: ,p_name => 'P_CONT_INFORMATION9')
12765: , X_Cont_Information10 => hr_transaction_api.get_VARCHAR2_value
12766: (p_transaction_step_id => p_transaction_step_id

Line 12765: , X_Cont_Information10 => hr_transaction_api.get_VARCHAR2_value

12761: ,p_name => 'P_CONT_INFORMATION8')
12762: , X_Cont_Information9 => hr_transaction_api.get_VARCHAR2_value
12763: (p_transaction_step_id => p_transaction_step_id
12764: ,p_name => 'P_CONT_INFORMATION9')
12765: , X_Cont_Information10 => hr_transaction_api.get_VARCHAR2_value
12766: (p_transaction_step_id => p_transaction_step_id
12767: ,p_name => 'P_CONT_INFORMATION10')
12768: , X_Cont_Information11 => hr_transaction_api.get_VARCHAR2_value
12769: (p_transaction_step_id => p_transaction_step_id

Line 12768: , X_Cont_Information11 => hr_transaction_api.get_VARCHAR2_value

12764: ,p_name => 'P_CONT_INFORMATION9')
12765: , X_Cont_Information10 => hr_transaction_api.get_VARCHAR2_value
12766: (p_transaction_step_id => p_transaction_step_id
12767: ,p_name => 'P_CONT_INFORMATION10')
12768: , X_Cont_Information11 => hr_transaction_api.get_VARCHAR2_value
12769: (p_transaction_step_id => p_transaction_step_id
12770: ,p_name => 'P_CONT_INFORMATION11')
12771: , X_Cont_Information12 => hr_transaction_api.get_VARCHAR2_value
12772: (p_transaction_step_id => p_transaction_step_id

Line 12771: , X_Cont_Information12 => hr_transaction_api.get_VARCHAR2_value

12767: ,p_name => 'P_CONT_INFORMATION10')
12768: , X_Cont_Information11 => hr_transaction_api.get_VARCHAR2_value
12769: (p_transaction_step_id => p_transaction_step_id
12770: ,p_name => 'P_CONT_INFORMATION11')
12771: , X_Cont_Information12 => hr_transaction_api.get_VARCHAR2_value
12772: (p_transaction_step_id => p_transaction_step_id
12773: ,p_name => 'P_CONT_INFORMATION12')
12774: , X_Cont_Information13 => hr_transaction_api.get_VARCHAR2_value
12775: (p_transaction_step_id => p_transaction_step_id

Line 12774: , X_Cont_Information13 => hr_transaction_api.get_VARCHAR2_value

12770: ,p_name => 'P_CONT_INFORMATION11')
12771: , X_Cont_Information12 => hr_transaction_api.get_VARCHAR2_value
12772: (p_transaction_step_id => p_transaction_step_id
12773: ,p_name => 'P_CONT_INFORMATION12')
12774: , X_Cont_Information13 => hr_transaction_api.get_VARCHAR2_value
12775: (p_transaction_step_id => p_transaction_step_id
12776: ,p_name => 'P_CONT_INFORMATION13')
12777: , X_Cont_Information14 => hr_transaction_api.get_VARCHAR2_value
12778: (p_transaction_step_id => p_transaction_step_id

Line 12777: , X_Cont_Information14 => hr_transaction_api.get_VARCHAR2_value

12773: ,p_name => 'P_CONT_INFORMATION12')
12774: , X_Cont_Information13 => hr_transaction_api.get_VARCHAR2_value
12775: (p_transaction_step_id => p_transaction_step_id
12776: ,p_name => 'P_CONT_INFORMATION13')
12777: , X_Cont_Information14 => hr_transaction_api.get_VARCHAR2_value
12778: (p_transaction_step_id => p_transaction_step_id
12779: ,p_name => 'P_CONT_INFORMATION14')
12780: , X_Cont_Information15 => hr_transaction_api.get_VARCHAR2_value
12781: (p_transaction_step_id => p_transaction_step_id

Line 12780: , X_Cont_Information15 => hr_transaction_api.get_VARCHAR2_value

12776: ,p_name => 'P_CONT_INFORMATION13')
12777: , X_Cont_Information14 => hr_transaction_api.get_VARCHAR2_value
12778: (p_transaction_step_id => p_transaction_step_id
12779: ,p_name => 'P_CONT_INFORMATION14')
12780: , X_Cont_Information15 => hr_transaction_api.get_VARCHAR2_value
12781: (p_transaction_step_id => p_transaction_step_id
12782: ,p_name => 'P_CONT_INFORMATION15')
12783: , X_Cont_Information16 => hr_transaction_api.get_VARCHAR2_value
12784: (p_transaction_step_id => p_transaction_step_id

Line 12783: , X_Cont_Information16 => hr_transaction_api.get_VARCHAR2_value

12779: ,p_name => 'P_CONT_INFORMATION14')
12780: , X_Cont_Information15 => hr_transaction_api.get_VARCHAR2_value
12781: (p_transaction_step_id => p_transaction_step_id
12782: ,p_name => 'P_CONT_INFORMATION15')
12783: , X_Cont_Information16 => hr_transaction_api.get_VARCHAR2_value
12784: (p_transaction_step_id => p_transaction_step_id
12785: ,p_name => 'P_CONT_INFORMATION16')
12786: , X_Cont_Information17 => hr_transaction_api.get_VARCHAR2_value
12787: (p_transaction_step_id => p_transaction_step_id

Line 12786: , X_Cont_Information17 => hr_transaction_api.get_VARCHAR2_value

12782: ,p_name => 'P_CONT_INFORMATION15')
12783: , X_Cont_Information16 => hr_transaction_api.get_VARCHAR2_value
12784: (p_transaction_step_id => p_transaction_step_id
12785: ,p_name => 'P_CONT_INFORMATION16')
12786: , X_Cont_Information17 => hr_transaction_api.get_VARCHAR2_value
12787: (p_transaction_step_id => p_transaction_step_id
12788: ,p_name => 'P_CONT_INFORMATION17')
12789: , X_Cont_Information18 => hr_transaction_api.get_VARCHAR2_value
12790: (p_transaction_step_id => p_transaction_step_id

Line 12789: , X_Cont_Information18 => hr_transaction_api.get_VARCHAR2_value

12785: ,p_name => 'P_CONT_INFORMATION16')
12786: , X_Cont_Information17 => hr_transaction_api.get_VARCHAR2_value
12787: (p_transaction_step_id => p_transaction_step_id
12788: ,p_name => 'P_CONT_INFORMATION17')
12789: , X_Cont_Information18 => hr_transaction_api.get_VARCHAR2_value
12790: (p_transaction_step_id => p_transaction_step_id
12791: ,p_name => 'P_CONT_INFORMATION18')
12792: , X_Cont_Information19 => hr_transaction_api.get_VARCHAR2_value
12793: (p_transaction_step_id => p_transaction_step_id

Line 12792: , X_Cont_Information19 => hr_transaction_api.get_VARCHAR2_value

12788: ,p_name => 'P_CONT_INFORMATION17')
12789: , X_Cont_Information18 => hr_transaction_api.get_VARCHAR2_value
12790: (p_transaction_step_id => p_transaction_step_id
12791: ,p_name => 'P_CONT_INFORMATION18')
12792: , X_Cont_Information19 => hr_transaction_api.get_VARCHAR2_value
12793: (p_transaction_step_id => p_transaction_step_id
12794: ,p_name => 'P_CONT_INFORMATION19')
12795: , X_Cont_Information20 => hr_transaction_api.get_VARCHAR2_value
12796: (p_transaction_step_id => p_transaction_step_id

Line 12795: , X_Cont_Information20 => hr_transaction_api.get_VARCHAR2_value

12791: ,p_name => 'P_CONT_INFORMATION18')
12792: , X_Cont_Information19 => hr_transaction_api.get_VARCHAR2_value
12793: (p_transaction_step_id => p_transaction_step_id
12794: ,p_name => 'P_CONT_INFORMATION19')
12795: , X_Cont_Information20 => hr_transaction_api.get_VARCHAR2_value
12796: (p_transaction_step_id => p_transaction_step_id
12797: ,p_name => 'P_CONT_INFORMATION20')
12798: , X_Session_Date => null --- this session_date is not used in PER_CONTACT_RELATIONSHIPS_PKG.update_row method, so null is pass here
12799: , X_Date_Start => hr_transaction_api.get_DATE_value

Line 12799: , X_Date_Start => hr_transaction_api.get_DATE_value

12795: , X_Cont_Information20 => hr_transaction_api.get_VARCHAR2_value
12796: (p_transaction_step_id => p_transaction_step_id
12797: ,p_name => 'P_CONT_INFORMATION20')
12798: , X_Session_Date => null --- this session_date is not used in PER_CONTACT_RELATIONSHIPS_PKG.update_row method, so null is pass here
12799: , X_Date_Start => hr_transaction_api.get_DATE_value
12800: (p_transaction_step_id => p_transaction_step_id
12801: ,p_name => 'P_DATE_START')
12802: , X_Start_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12803: (p_transaction_step_id => p_transaction_step_id

Line 12802: , X_Start_Life_Reason_Id => hr_transaction_api.get_NUMBER_value

12798: , X_Session_Date => null --- this session_date is not used in PER_CONTACT_RELATIONSHIPS_PKG.update_row method, so null is pass here
12799: , X_Date_Start => hr_transaction_api.get_DATE_value
12800: (p_transaction_step_id => p_transaction_step_id
12801: ,p_name => 'P_DATE_START')
12802: , X_Start_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12803: (p_transaction_step_id => p_transaction_step_id
12804: ,p_name => 'P_START_LIFE_REASON_ID')
12805: , X_Date_End => hr_transaction_api.get_DATE_value
12806: (p_transaction_step_id => p_transaction_step_id

Line 12805: , X_Date_End => hr_transaction_api.get_DATE_value

12801: ,p_name => 'P_DATE_START')
12802: , X_Start_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12803: (p_transaction_step_id => p_transaction_step_id
12804: ,p_name => 'P_START_LIFE_REASON_ID')
12805: , X_Date_End => hr_transaction_api.get_DATE_value
12806: (p_transaction_step_id => p_transaction_step_id
12807: ,p_name => 'P_DATE_END')
12808: , X_End_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12809: (p_transaction_step_id => p_transaction_step_id

Line 12808: , X_End_Life_Reason_Id => hr_transaction_api.get_NUMBER_value

12804: ,p_name => 'P_START_LIFE_REASON_ID')
12805: , X_Date_End => hr_transaction_api.get_DATE_value
12806: (p_transaction_step_id => p_transaction_step_id
12807: ,p_name => 'P_DATE_END')
12808: , X_End_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12809: (p_transaction_step_id => p_transaction_step_id
12810: ,p_name => 'P_END_LIFE_REASON_ID')
12811: , X_Rltd_Per_Rsds_W_Dsgntr_Flag => hr_transaction_api.get_VARCHAR2_value
12812: (p_transaction_step_id => p_transaction_step_id

Line 12811: , X_Rltd_Per_Rsds_W_Dsgntr_Flag => hr_transaction_api.get_VARCHAR2_value

12807: ,p_name => 'P_DATE_END')
12808: , X_End_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12809: (p_transaction_step_id => p_transaction_step_id
12810: ,p_name => 'P_END_LIFE_REASON_ID')
12811: , X_Rltd_Per_Rsds_W_Dsgntr_Flag => hr_transaction_api.get_VARCHAR2_value
12812: (p_transaction_step_id => p_transaction_step_id
12813: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12814: , X_Personal_Flag => hr_transaction_api.get_VARCHAR2_value
12815: (p_transaction_step_id => p_transaction_step_id

Line 12814: , X_Personal_Flag => hr_transaction_api.get_VARCHAR2_value

12810: ,p_name => 'P_END_LIFE_REASON_ID')
12811: , X_Rltd_Per_Rsds_W_Dsgntr_Flag => hr_transaction_api.get_VARCHAR2_value
12812: (p_transaction_step_id => p_transaction_step_id
12813: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12814: , X_Personal_Flag => hr_transaction_api.get_VARCHAR2_value
12815: (p_transaction_step_id => p_transaction_step_id
12816: ,p_name => 'P_PERSONAL_FLAG')
12817: , X_Sequence_Number => hr_transaction_api.get_NUMBER_value
12818: (p_transaction_step_id => p_transaction_step_id

Line 12817: , X_Sequence_Number => hr_transaction_api.get_NUMBER_value

12813: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12814: , X_Personal_Flag => hr_transaction_api.get_VARCHAR2_value
12815: (p_transaction_step_id => p_transaction_step_id
12816: ,p_name => 'P_PERSONAL_FLAG')
12817: , X_Sequence_Number => hr_transaction_api.get_NUMBER_value
12818: (p_transaction_step_id => p_transaction_step_id
12819: ,p_name => 'P_SEQUENCE_NUMBER')
12820: , X_Dependent_Flag => hr_transaction_api.get_varchar2_value
12821: (p_transaction_step_id => p_transaction_step_id

Line 12820: , X_Dependent_Flag => hr_transaction_api.get_varchar2_value

12816: ,p_name => 'P_PERSONAL_FLAG')
12817: , X_Sequence_Number => hr_transaction_api.get_NUMBER_value
12818: (p_transaction_step_id => p_transaction_step_id
12819: ,p_name => 'P_SEQUENCE_NUMBER')
12820: , X_Dependent_Flag => hr_transaction_api.get_varchar2_value
12821: (p_transaction_step_id => p_transaction_step_id
12822: ,p_name => 'P_DEPENDENT_FLAG')
12823: , X_Beneficiary_Flag => hr_transaction_api.get_varchar2_value
12824: (p_transaction_step_id => p_transaction_step_id

Line 12823: , X_Beneficiary_Flag => hr_transaction_api.get_varchar2_value

12819: ,p_name => 'P_SEQUENCE_NUMBER')
12820: , X_Dependent_Flag => hr_transaction_api.get_varchar2_value
12821: (p_transaction_step_id => p_transaction_step_id
12822: ,p_name => 'P_DEPENDENT_FLAG')
12823: , X_Beneficiary_Flag => hr_transaction_api.get_varchar2_value
12824: (p_transaction_step_id => p_transaction_step_id
12825: ,p_name => 'P_BENEFICIARY_FLAG')
12826: );
12827: skip_contact_create_flg := 1;

Line 12836: hr_transaction_api.get_NUMBER_value

12832: p_validate => p_validate
12833: ,P_EFFECTIVE_DATE =>l_effective_date
12834: ,p_object_version_number => l_ovn
12835: ,P_CONTACT_RELATIONSHIP_ID =>
12836: hr_transaction_api.get_NUMBER_value
12837: (p_transaction_step_id => p_transaction_step_id
12838: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12839: ,p_date_end => l_date_end
12840: );

Line 12853: hr_transaction_api.get_NUMBER_value

12849: p_validate => p_validate
12850: ,P_EFFECTIVE_DATE =>l_effective_date
12851: ,p_object_version_number => l_ovn
12852: ,P_CONTACT_RELATIONSHIP_ID =>
12853: hr_transaction_api.get_NUMBER_value
12854: (p_transaction_step_id => p_transaction_step_id
12855: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12856: ,p_date_end => l_date_end
12857: );

Line 12864: hr_transaction_api.get_NUMBER_value

12860: end if;
12861: -- if primary contact flag is checked/unchecked apply it emrg record and not for
12862: -- other personal relationship record
12863: open get_emrg_relid_ovn(
12864: hr_transaction_api.get_NUMBER_value
12865: (p_transaction_step_id => p_transaction_step_id
12866: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12867: ,hr_transaction_api.get_number_value
12868: (p_transaction_step_id => p_transaction_step_id

Line 12867: ,hr_transaction_api.get_number_value

12863: open get_emrg_relid_ovn(
12864: hr_transaction_api.get_NUMBER_value
12865: (p_transaction_step_id => p_transaction_step_id
12866: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12867: ,hr_transaction_api.get_number_value
12868: (p_transaction_step_id => p_transaction_step_id
12869: ,p_name => 'P_CONTACT_PERSON_ID')
12870: ,hr_transaction_api.get_number_value
12871: (p_transaction_step_id => p_transaction_step_id

Line 12870: ,hr_transaction_api.get_number_value

12866: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12867: ,hr_transaction_api.get_number_value
12868: (p_transaction_step_id => p_transaction_step_id
12869: ,p_name => 'P_CONTACT_PERSON_ID')
12870: ,hr_transaction_api.get_number_value
12871: (p_transaction_step_id => p_transaction_step_id
12872: ,p_name => 'P_PERSON_ID'));
12873: fetch get_emrg_relid_ovn into l_emrg_relid, l_emrg_ovn, l_emrg_primary_cont_flag,
12874: z_person_id, z_date_start, z_date_end;

Line 12908: hr_transaction_api.get_NUMBER_value

12904: --
12905: ,P_START_DATE => l_effective_date
12906: --
12907: ,P_BUSINESS_GROUP_ID =>
12908: hr_transaction_api.get_NUMBER_value
12909: (p_transaction_step_id => p_transaction_step_id
12910: ,p_name => 'P_BUSINESS_GROUP_ID')
12911: --
12912: ,P_PERSON_ID =>

Line 12913: hr_transaction_api.get_number_value

12909: (p_transaction_step_id => p_transaction_step_id
12910: ,p_name => 'P_BUSINESS_GROUP_ID')
12911: --
12912: ,P_PERSON_ID =>
12913: hr_transaction_api.get_number_value
12914: (p_transaction_step_id => p_transaction_step_id
12915: ,p_name =>upper('p_person_id'))
12916: --
12917: ,P_CONTACT_PERSON_ID =>

Line 12918: hr_transaction_api.get_number_value

12914: (p_transaction_step_id => p_transaction_step_id
12915: ,p_name =>upper('p_person_id'))
12916: --
12917: ,P_CONTACT_PERSON_ID =>
12918: hr_transaction_api.get_number_value
12919: (p_transaction_step_id => p_transaction_step_id
12920: ,p_name =>upper('p_cont_person_id'))
12921: --
12922: ,P_CONTACT_TYPE =>

Line 12923: hr_transaction_api.get_VARCHAR2_value

12919: (p_transaction_step_id => p_transaction_step_id
12920: ,p_name =>upper('p_cont_person_id'))
12921: --
12922: ,P_CONTACT_TYPE =>
12923: hr_transaction_api.get_VARCHAR2_value
12924: (p_transaction_step_id => p_transaction_step_id
12925: ,p_name => 'P_CONTACT_TYPE')
12926: --
12927: ,P_CTR_COMMENTS =>

Line 12928: hr_transaction_api.get_VARCHAR2_value

12924: (p_transaction_step_id => p_transaction_step_id
12925: ,p_name => 'P_CONTACT_TYPE')
12926: --
12927: ,P_CTR_COMMENTS =>
12928: hr_transaction_api.get_VARCHAR2_value
12929: (p_transaction_step_id => p_transaction_step_id
12930: ,p_name => 'P_CTR_COMMENTS')
12931: --
12932: ,P_PRIMARY_CONTACT_FLAG => l_primary_contact_flag

Line 12938: hr_transaction_api.get_NUMBER_value

12934: ,P_DATE_START => l_date_sart
12935:
12936: --
12937: ,P_START_LIFE_REASON_ID =>
12938: hr_transaction_api.get_NUMBER_value
12939: (p_transaction_step_id => p_transaction_step_id
12940: ,p_name => 'P_START_LIFE_REASON_ID')
12941: --
12942: ,P_DATE_END =>

Line 12943: hr_transaction_api.get_DATE_value

12939: (p_transaction_step_id => p_transaction_step_id
12940: ,p_name => 'P_START_LIFE_REASON_ID')
12941: --
12942: ,P_DATE_END =>
12943: hr_transaction_api.get_DATE_value
12944: (p_transaction_step_id => p_transaction_step_id
12945: ,p_name => 'P_DATE_END')
12946: --
12947: ,P_END_LIFE_REASON_ID =>

Line 12948: hr_transaction_api.get_NUMBER_value

12944: (p_transaction_step_id => p_transaction_step_id
12945: ,p_name => 'P_DATE_END')
12946: --
12947: ,P_END_LIFE_REASON_ID =>
12948: hr_transaction_api.get_NUMBER_value
12949: (p_transaction_step_id => p_transaction_step_id
12950: ,p_name => 'P_END_LIFE_REASON_ID')
12951: --
12952: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 12953: hr_transaction_api.get_VARCHAR2_value

12949: (p_transaction_step_id => p_transaction_step_id
12950: ,p_name => 'P_END_LIFE_REASON_ID')
12951: --
12952: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
12953: hr_transaction_api.get_VARCHAR2_value
12954: (p_transaction_step_id => p_transaction_step_id
12955: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12956: --
12957: ,P_PERSONAL_FLAG =>

Line 12958: hr_transaction_api.get_VARCHAR2_value

12954: (p_transaction_step_id => p_transaction_step_id
12955: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12956: --
12957: ,P_PERSONAL_FLAG =>
12958: hr_transaction_api.get_VARCHAR2_value
12959: (p_transaction_step_id => p_transaction_step_id
12960: ,p_name => 'P_PERSONAL_FLAG')
12961: --
12962: ,P_SEQUENCE_NUMBER =>

Line 12963: hr_transaction_api.get_NUMBER_value

12959: (p_transaction_step_id => p_transaction_step_id
12960: ,p_name => 'P_PERSONAL_FLAG')
12961: --
12962: ,P_SEQUENCE_NUMBER =>
12963: hr_transaction_api.get_NUMBER_value
12964: (p_transaction_step_id => p_transaction_step_id
12965: ,p_name => 'P_SEQUENCE_NUMBER')
12966: --
12967: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 12968: hr_transaction_api.get_VARCHAR2_value

12964: (p_transaction_step_id => p_transaction_step_id
12965: ,p_name => 'P_SEQUENCE_NUMBER')
12966: --
12967: ,P_CONT_ATTRIBUTE_CATEGORY =>
12968: hr_transaction_api.get_VARCHAR2_value
12969: (p_transaction_step_id => p_transaction_step_id
12970: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12971: --
12972: ,P_CONT_ATTRIBUTE1 =>

Line 12973: hr_transaction_api.get_VARCHAR2_value

12969: (p_transaction_step_id => p_transaction_step_id
12970: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12971: --
12972: ,P_CONT_ATTRIBUTE1 =>
12973: hr_transaction_api.get_VARCHAR2_value
12974: (p_transaction_step_id => p_transaction_step_id
12975: ,p_name => 'P_CONT_ATTRIBUTE1')
12976: --
12977: ,P_CONT_ATTRIBUTE2 =>

Line 12978: hr_transaction_api.get_VARCHAR2_value

12974: (p_transaction_step_id => p_transaction_step_id
12975: ,p_name => 'P_CONT_ATTRIBUTE1')
12976: --
12977: ,P_CONT_ATTRIBUTE2 =>
12978: hr_transaction_api.get_VARCHAR2_value
12979: (p_transaction_step_id => p_transaction_step_id
12980: ,p_name => 'P_CONT_ATTRIBUTE2')
12981: --
12982: ,P_CONT_ATTRIBUTE3 =>

Line 12983: hr_transaction_api.get_VARCHAR2_value

12979: (p_transaction_step_id => p_transaction_step_id
12980: ,p_name => 'P_CONT_ATTRIBUTE2')
12981: --
12982: ,P_CONT_ATTRIBUTE3 =>
12983: hr_transaction_api.get_VARCHAR2_value
12984: (p_transaction_step_id => p_transaction_step_id
12985: ,p_name => 'P_CONT_ATTRIBUTE3')
12986: --
12987: ,P_CONT_ATTRIBUTE4 =>

Line 12988: hr_transaction_api.get_VARCHAR2_value

12984: (p_transaction_step_id => p_transaction_step_id
12985: ,p_name => 'P_CONT_ATTRIBUTE3')
12986: --
12987: ,P_CONT_ATTRIBUTE4 =>
12988: hr_transaction_api.get_VARCHAR2_value
12989: (p_transaction_step_id => p_transaction_step_id
12990: ,p_name => 'P_CONT_ATTRIBUTE4')
12991: --
12992: ,P_CONT_ATTRIBUTE5 =>

Line 12993: hr_transaction_api.get_VARCHAR2_value

12989: (p_transaction_step_id => p_transaction_step_id
12990: ,p_name => 'P_CONT_ATTRIBUTE4')
12991: --
12992: ,P_CONT_ATTRIBUTE5 =>
12993: hr_transaction_api.get_VARCHAR2_value
12994: (p_transaction_step_id => p_transaction_step_id
12995: ,p_name => 'P_CONT_ATTRIBUTE5')
12996: --
12997: ,P_CONT_ATTRIBUTE6 =>

Line 12998: hr_transaction_api.get_VARCHAR2_value

12994: (p_transaction_step_id => p_transaction_step_id
12995: ,p_name => 'P_CONT_ATTRIBUTE5')
12996: --
12997: ,P_CONT_ATTRIBUTE6 =>
12998: hr_transaction_api.get_VARCHAR2_value
12999: (p_transaction_step_id => p_transaction_step_id
13000: ,p_name => 'P_CONT_ATTRIBUTE6')
13001: --
13002: ,P_CONT_ATTRIBUTE7 =>

Line 13003: hr_transaction_api.get_VARCHAR2_value

12999: (p_transaction_step_id => p_transaction_step_id
13000: ,p_name => 'P_CONT_ATTRIBUTE6')
13001: --
13002: ,P_CONT_ATTRIBUTE7 =>
13003: hr_transaction_api.get_VARCHAR2_value
13004: (p_transaction_step_id => p_transaction_step_id
13005: ,p_name => 'P_CONT_ATTRIBUTE7')
13006: --
13007: ,P_CONT_ATTRIBUTE8 =>

Line 13008: hr_transaction_api.get_VARCHAR2_value

13004: (p_transaction_step_id => p_transaction_step_id
13005: ,p_name => 'P_CONT_ATTRIBUTE7')
13006: --
13007: ,P_CONT_ATTRIBUTE8 =>
13008: hr_transaction_api.get_VARCHAR2_value
13009: (p_transaction_step_id => p_transaction_step_id
13010: ,p_name => 'P_CONT_ATTRIBUTE8')
13011: --
13012: ,P_CONT_ATTRIBUTE9 =>

Line 13013: hr_transaction_api.get_VARCHAR2_value

13009: (p_transaction_step_id => p_transaction_step_id
13010: ,p_name => 'P_CONT_ATTRIBUTE8')
13011: --
13012: ,P_CONT_ATTRIBUTE9 =>
13013: hr_transaction_api.get_VARCHAR2_value
13014: (p_transaction_step_id => p_transaction_step_id
13015: ,p_name => 'P_CONT_ATTRIBUTE9')
13016: --
13017: ,P_CONT_ATTRIBUTE10 =>

Line 13018: hr_transaction_api.get_VARCHAR2_value

13014: (p_transaction_step_id => p_transaction_step_id
13015: ,p_name => 'P_CONT_ATTRIBUTE9')
13016: --
13017: ,P_CONT_ATTRIBUTE10 =>
13018: hr_transaction_api.get_VARCHAR2_value
13019: (p_transaction_step_id => p_transaction_step_id
13020: ,p_name => 'P_CONT_ATTRIBUTE10')
13021: --
13022: ,P_CONT_ATTRIBUTE11 =>

Line 13023: hr_transaction_api.get_VARCHAR2_value

13019: (p_transaction_step_id => p_transaction_step_id
13020: ,p_name => 'P_CONT_ATTRIBUTE10')
13021: --
13022: ,P_CONT_ATTRIBUTE11 =>
13023: hr_transaction_api.get_VARCHAR2_value
13024: (p_transaction_step_id => p_transaction_step_id
13025: ,p_name => 'P_CONT_ATTRIBUTE11')
13026: --
13027: ,P_CONT_ATTRIBUTE12 =>

Line 13028: hr_transaction_api.get_VARCHAR2_value

13024: (p_transaction_step_id => p_transaction_step_id
13025: ,p_name => 'P_CONT_ATTRIBUTE11')
13026: --
13027: ,P_CONT_ATTRIBUTE12 =>
13028: hr_transaction_api.get_VARCHAR2_value
13029: (p_transaction_step_id => p_transaction_step_id
13030: ,p_name => 'P_CONT_ATTRIBUTE12')
13031: --
13032: ,P_CONT_ATTRIBUTE13 =>

Line 13033: hr_transaction_api.get_VARCHAR2_value

13029: (p_transaction_step_id => p_transaction_step_id
13030: ,p_name => 'P_CONT_ATTRIBUTE12')
13031: --
13032: ,P_CONT_ATTRIBUTE13 =>
13033: hr_transaction_api.get_VARCHAR2_value
13034: (p_transaction_step_id => p_transaction_step_id
13035: ,p_name => 'P_CONT_ATTRIBUTE13')
13036: --
13037: ,P_CONT_ATTRIBUTE14 =>

Line 13038: hr_transaction_api.get_VARCHAR2_value

13034: (p_transaction_step_id => p_transaction_step_id
13035: ,p_name => 'P_CONT_ATTRIBUTE13')
13036: --
13037: ,P_CONT_ATTRIBUTE14 =>
13038: hr_transaction_api.get_VARCHAR2_value
13039: (p_transaction_step_id => p_transaction_step_id
13040: ,p_name => 'P_CONT_ATTRIBUTE14')
13041: --
13042: ,P_CONT_ATTRIBUTE15 =>

Line 13043: hr_transaction_api.get_VARCHAR2_value

13039: (p_transaction_step_id => p_transaction_step_id
13040: ,p_name => 'P_CONT_ATTRIBUTE14')
13041: --
13042: ,P_CONT_ATTRIBUTE15 =>
13043: hr_transaction_api.get_VARCHAR2_value
13044: (p_transaction_step_id => p_transaction_step_id
13045: ,p_name => 'P_CONT_ATTRIBUTE15')
13046: --
13047: ,P_CONT_ATTRIBUTE16 =>

Line 13048: hr_transaction_api.get_VARCHAR2_value

13044: (p_transaction_step_id => p_transaction_step_id
13045: ,p_name => 'P_CONT_ATTRIBUTE15')
13046: --
13047: ,P_CONT_ATTRIBUTE16 =>
13048: hr_transaction_api.get_VARCHAR2_value
13049: (p_transaction_step_id => p_transaction_step_id
13050: ,p_name => 'P_CONT_ATTRIBUTE16')
13051: --
13052: ,P_CONT_ATTRIBUTE17 =>

Line 13053: hr_transaction_api.get_VARCHAR2_value

13049: (p_transaction_step_id => p_transaction_step_id
13050: ,p_name => 'P_CONT_ATTRIBUTE16')
13051: --
13052: ,P_CONT_ATTRIBUTE17 =>
13053: hr_transaction_api.get_VARCHAR2_value
13054: (p_transaction_step_id => p_transaction_step_id
13055: ,p_name => 'P_CONT_ATTRIBUTE17')
13056: --
13057: ,P_CONT_ATTRIBUTE18 =>

Line 13058: hr_transaction_api.get_VARCHAR2_value

13054: (p_transaction_step_id => p_transaction_step_id
13055: ,p_name => 'P_CONT_ATTRIBUTE17')
13056: --
13057: ,P_CONT_ATTRIBUTE18 =>
13058: hr_transaction_api.get_VARCHAR2_value
13059: (p_transaction_step_id => p_transaction_step_id
13060: ,p_name => 'P_CONT_ATTRIBUTE18')
13061: --
13062: ,P_CONT_ATTRIBUTE19 =>

Line 13063: hr_transaction_api.get_VARCHAR2_value

13059: (p_transaction_step_id => p_transaction_step_id
13060: ,p_name => 'P_CONT_ATTRIBUTE18')
13061: --
13062: ,P_CONT_ATTRIBUTE19 =>
13063: hr_transaction_api.get_VARCHAR2_value
13064: (p_transaction_step_id => p_transaction_step_id
13065: ,p_name => 'P_CONT_ATTRIBUTE19')
13066: --
13067: ,P_CONT_ATTRIBUTE20 =>

Line 13068: hr_transaction_api.get_VARCHAR2_value

13064: (p_transaction_step_id => p_transaction_step_id
13065: ,p_name => 'P_CONT_ATTRIBUTE19')
13066: --
13067: ,P_CONT_ATTRIBUTE20 =>
13068: hr_transaction_api.get_VARCHAR2_value
13069: (p_transaction_step_id => p_transaction_step_id
13070: ,p_name => 'P_CONT_ATTRIBUTE20')
13071: --
13072: ,P_THIRD_PARTY_PAY_FLAG =>

Line 13073: hr_transaction_api.get_VARCHAR2_value

13069: (p_transaction_step_id => p_transaction_step_id
13070: ,p_name => 'P_CONT_ATTRIBUTE20')
13071: --
13072: ,P_THIRD_PARTY_PAY_FLAG =>
13073: hr_transaction_api.get_VARCHAR2_value
13074: (p_transaction_step_id => p_transaction_step_id
13075: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
13076: --
13077: ,P_BONDHOLDER_FLAG =>

Line 13078: hr_transaction_api.get_VARCHAR2_value

13074: (p_transaction_step_id => p_transaction_step_id
13075: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
13076: --
13077: ,P_BONDHOLDER_FLAG =>
13078: hr_transaction_api.get_VARCHAR2_value
13079: (p_transaction_step_id => p_transaction_step_id
13080: ,p_name => 'P_BONDHOLDER_FLAG')
13081: --
13082: ,P_DEPENDENT_FLAG =>

Line 13083: hr_transaction_api.get_VARCHAR2_value

13079: (p_transaction_step_id => p_transaction_step_id
13080: ,p_name => 'P_BONDHOLDER_FLAG')
13081: --
13082: ,P_DEPENDENT_FLAG =>
13083: hr_transaction_api.get_VARCHAR2_value
13084: (p_transaction_step_id => p_transaction_step_id
13085: ,p_name => 'P_DEPENDENT_FLAG')
13086: --
13087: ,P_BENEFICIARY_FLAG =>

Line 13088: hr_transaction_api.get_VARCHAR2_value

13084: (p_transaction_step_id => p_transaction_step_id
13085: ,p_name => 'P_DEPENDENT_FLAG')
13086: --
13087: ,P_BENEFICIARY_FLAG =>
13088: hr_transaction_api.get_VARCHAR2_value
13089: (p_transaction_step_id => p_transaction_step_id
13090: ,p_name => 'P_BENEFICIARY_FLAG')
13091: --
13092: ,P_LAST_NAME =>

Line 13093: hr_transaction_api.get_VARCHAR2_value

13089: (p_transaction_step_id => p_transaction_step_id
13090: ,p_name => 'P_BENEFICIARY_FLAG')
13091: --
13092: ,P_LAST_NAME =>
13093: hr_transaction_api.get_VARCHAR2_value
13094: (p_transaction_step_id => p_transaction_step_id
13095: ,p_name => 'P_LAST_NAME')
13096: --
13097: ,P_SEX =>

Line 13098: hr_transaction_api.get_VARCHAR2_value

13094: (p_transaction_step_id => p_transaction_step_id
13095: ,p_name => 'P_LAST_NAME')
13096: --
13097: ,P_SEX =>
13098: hr_transaction_api.get_VARCHAR2_value
13099: (p_transaction_step_id => p_transaction_step_id
13100: ,p_name => 'P_SEX')
13101: --
13102: ,P_PERSON_TYPE_ID =>

Line 13103: hr_transaction_api.get_NUMBER_value

13099: (p_transaction_step_id => p_transaction_step_id
13100: ,p_name => 'P_SEX')
13101: --
13102: ,P_PERSON_TYPE_ID =>
13103: hr_transaction_api.get_NUMBER_value
13104: (p_transaction_step_id => p_transaction_step_id
13105: ,p_name => 'P_PERSON_TYPE_ID')
13106: --
13107: ,P_PER_COMMENTS =>

Line 13108: hr_transaction_api.get_VARCHAR2_value

13104: (p_transaction_step_id => p_transaction_step_id
13105: ,p_name => 'P_PERSON_TYPE_ID')
13106: --
13107: ,P_PER_COMMENTS =>
13108: hr_transaction_api.get_VARCHAR2_value
13109: (p_transaction_step_id => p_transaction_step_id
13110: ,p_name => 'P_PER_COMMENTS')
13111: --
13112: ,P_DATE_OF_BIRTH =>

Line 13113: hr_transaction_api.get_DATE_value

13109: (p_transaction_step_id => p_transaction_step_id
13110: ,p_name => 'P_PER_COMMENTS')
13111: --
13112: ,P_DATE_OF_BIRTH =>
13113: hr_transaction_api.get_DATE_value
13114: (p_transaction_step_id => p_transaction_step_id
13115: ,p_name => 'P_DATE_OF_BIRTH')
13116: --
13117: ,P_EMAIL_ADDRESS =>

Line 13118: hr_transaction_api.get_VARCHAR2_value

13114: (p_transaction_step_id => p_transaction_step_id
13115: ,p_name => 'P_DATE_OF_BIRTH')
13116: --
13117: ,P_EMAIL_ADDRESS =>
13118: hr_transaction_api.get_VARCHAR2_value
13119: (p_transaction_step_id => p_transaction_step_id
13120: ,p_name => 'P_EMAIL_ADDRESS')
13121: --
13122: ,P_FIRST_NAME =>

Line 13123: hr_transaction_api.get_VARCHAR2_value

13119: (p_transaction_step_id => p_transaction_step_id
13120: ,p_name => 'P_EMAIL_ADDRESS')
13121: --
13122: ,P_FIRST_NAME =>
13123: hr_transaction_api.get_VARCHAR2_value
13124: (p_transaction_step_id => p_transaction_step_id
13125: ,p_name => 'P_FIRST_NAME')
13126: --
13127: ,P_KNOWN_AS =>

Line 13128: hr_transaction_api.get_VARCHAR2_value

13124: (p_transaction_step_id => p_transaction_step_id
13125: ,p_name => 'P_FIRST_NAME')
13126: --
13127: ,P_KNOWN_AS =>
13128: hr_transaction_api.get_VARCHAR2_value
13129: (p_transaction_step_id => p_transaction_step_id
13130: ,p_name => 'P_KNOWN_AS')
13131: --
13132: ,P_MARITAL_STATUS =>

Line 13133: hr_transaction_api.get_VARCHAR2_value

13129: (p_transaction_step_id => p_transaction_step_id
13130: ,p_name => 'P_KNOWN_AS')
13131: --
13132: ,P_MARITAL_STATUS =>
13133: hr_transaction_api.get_VARCHAR2_value
13134: (p_transaction_step_id => p_transaction_step_id
13135: ,p_name => 'P_MARITAL_STATUS')
13136: --
13137: ,P_MIDDLE_NAMES =>

Line 13138: hr_transaction_api.get_VARCHAR2_value

13134: (p_transaction_step_id => p_transaction_step_id
13135: ,p_name => 'P_MARITAL_STATUS')
13136: --
13137: ,P_MIDDLE_NAMES =>
13138: hr_transaction_api.get_VARCHAR2_value
13139: (p_transaction_step_id => p_transaction_step_id
13140: ,p_name => 'P_MIDDLE_NAMES')
13141: --
13142: ,P_NATIONALITY =>

Line 13143: hr_transaction_api.get_VARCHAR2_value

13139: (p_transaction_step_id => p_transaction_step_id
13140: ,p_name => 'P_MIDDLE_NAMES')
13141: --
13142: ,P_NATIONALITY =>
13143: hr_transaction_api.get_VARCHAR2_value
13144: (p_transaction_step_id => p_transaction_step_id
13145: ,p_name => 'P_NATIONALITY')
13146: --
13147: ,P_NATIONAL_IDENTIFIER =>

Line 13148: hr_transaction_api.get_VARCHAR2_value

13144: (p_transaction_step_id => p_transaction_step_id
13145: ,p_name => 'P_NATIONALITY')
13146: --
13147: ,P_NATIONAL_IDENTIFIER =>
13148: hr_transaction_api.get_VARCHAR2_value
13149: (p_transaction_step_id => p_transaction_step_id
13150: ,p_name => 'P_NATIONAL_IDENTIFIER')
13151: --
13152: ,P_PREVIOUS_LAST_NAME =>

Line 13153: hr_transaction_api.get_VARCHAR2_value

13149: (p_transaction_step_id => p_transaction_step_id
13150: ,p_name => 'P_NATIONAL_IDENTIFIER')
13151: --
13152: ,P_PREVIOUS_LAST_NAME =>
13153: hr_transaction_api.get_VARCHAR2_value
13154: (p_transaction_step_id => p_transaction_step_id
13155: ,p_name => 'P_PREVIOUS_LAST_NAME')
13156: --
13157: ,P_REGISTERED_DISABLED_FLAG =>

Line 13158: hr_transaction_api.get_VARCHAR2_value

13154: (p_transaction_step_id => p_transaction_step_id
13155: ,p_name => 'P_PREVIOUS_LAST_NAME')
13156: --
13157: ,P_REGISTERED_DISABLED_FLAG =>
13158: hr_transaction_api.get_VARCHAR2_value
13159: (p_transaction_step_id => p_transaction_step_id
13160: ,p_name => 'P_REGISTERED_DISABLED_FLAG')
13161: --
13162: ,P_TITLE =>

Line 13163: hr_transaction_api.get_VARCHAR2_value

13159: (p_transaction_step_id => p_transaction_step_id
13160: ,p_name => 'P_REGISTERED_DISABLED_FLAG')
13161: --
13162: ,P_TITLE =>
13163: hr_transaction_api.get_VARCHAR2_value
13164: (p_transaction_step_id => p_transaction_step_id
13165: ,p_name => 'P_TITLE')
13166: --
13167: ,P_WORK_TELEPHONE =>

Line 13168: hr_transaction_api.get_VARCHAR2_value

13164: (p_transaction_step_id => p_transaction_step_id
13165: ,p_name => 'P_TITLE')
13166: --
13167: ,P_WORK_TELEPHONE =>
13168: hr_transaction_api.get_VARCHAR2_value
13169: (p_transaction_step_id => p_transaction_step_id
13170: ,p_name => 'P_WORK_TELEPHONE')
13171: --
13172: ,P_ATTRIBUTE_CATEGORY =>

Line 13173: hr_transaction_api.get_VARCHAR2_value

13169: (p_transaction_step_id => p_transaction_step_id
13170: ,p_name => 'P_WORK_TELEPHONE')
13171: --
13172: ,P_ATTRIBUTE_CATEGORY =>
13173: hr_transaction_api.get_VARCHAR2_value
13174: (p_transaction_step_id => p_transaction_step_id
13175: ,p_name => 'P_ATTRIBUTE_CATEGORY')
13176: --
13177: ,P_ATTRIBUTE1 =>

Line 13178: hr_transaction_api.get_VARCHAR2_value

13174: (p_transaction_step_id => p_transaction_step_id
13175: ,p_name => 'P_ATTRIBUTE_CATEGORY')
13176: --
13177: ,P_ATTRIBUTE1 =>
13178: hr_transaction_api.get_VARCHAR2_value
13179: (p_transaction_step_id => p_transaction_step_id
13180: ,p_name => 'P_ATTRIBUTE1')
13181: --
13182: ,P_ATTRIBUTE2 =>

Line 13183: hr_transaction_api.get_VARCHAR2_value

13179: (p_transaction_step_id => p_transaction_step_id
13180: ,p_name => 'P_ATTRIBUTE1')
13181: --
13182: ,P_ATTRIBUTE2 =>
13183: hr_transaction_api.get_VARCHAR2_value
13184: (p_transaction_step_id => p_transaction_step_id
13185: ,p_name => 'P_ATTRIBUTE2')
13186: --
13187: ,P_ATTRIBUTE3 =>

Line 13188: hr_transaction_api.get_VARCHAR2_value

13184: (p_transaction_step_id => p_transaction_step_id
13185: ,p_name => 'P_ATTRIBUTE2')
13186: --
13187: ,P_ATTRIBUTE3 =>
13188: hr_transaction_api.get_VARCHAR2_value
13189: (p_transaction_step_id => p_transaction_step_id
13190: ,p_name => 'P_ATTRIBUTE3')
13191: --
13192: ,P_ATTRIBUTE4 =>

Line 13193: hr_transaction_api.get_VARCHAR2_value

13189: (p_transaction_step_id => p_transaction_step_id
13190: ,p_name => 'P_ATTRIBUTE3')
13191: --
13192: ,P_ATTRIBUTE4 =>
13193: hr_transaction_api.get_VARCHAR2_value
13194: (p_transaction_step_id => p_transaction_step_id
13195: ,p_name => 'P_ATTRIBUTE4')
13196: --
13197: ,P_ATTRIBUTE5 =>

Line 13198: hr_transaction_api.get_VARCHAR2_value

13194: (p_transaction_step_id => p_transaction_step_id
13195: ,p_name => 'P_ATTRIBUTE4')
13196: --
13197: ,P_ATTRIBUTE5 =>
13198: hr_transaction_api.get_VARCHAR2_value
13199: (p_transaction_step_id => p_transaction_step_id
13200: ,p_name => 'P_ATTRIBUTE5')
13201: --
13202: ,P_ATTRIBUTE6 =>

Line 13203: hr_transaction_api.get_VARCHAR2_value

13199: (p_transaction_step_id => p_transaction_step_id
13200: ,p_name => 'P_ATTRIBUTE5')
13201: --
13202: ,P_ATTRIBUTE6 =>
13203: hr_transaction_api.get_VARCHAR2_value
13204: (p_transaction_step_id => p_transaction_step_id
13205: ,p_name => 'P_ATTRIBUTE6')
13206: --
13207: ,P_ATTRIBUTE7 =>

Line 13208: hr_transaction_api.get_VARCHAR2_value

13204: (p_transaction_step_id => p_transaction_step_id
13205: ,p_name => 'P_ATTRIBUTE6')
13206: --
13207: ,P_ATTRIBUTE7 =>
13208: hr_transaction_api.get_VARCHAR2_value
13209: (p_transaction_step_id => p_transaction_step_id
13210: ,p_name => 'P_ATTRIBUTE7')
13211: --
13212: ,P_ATTRIBUTE8 =>

Line 13213: hr_transaction_api.get_VARCHAR2_value

13209: (p_transaction_step_id => p_transaction_step_id
13210: ,p_name => 'P_ATTRIBUTE7')
13211: --
13212: ,P_ATTRIBUTE8 =>
13213: hr_transaction_api.get_VARCHAR2_value
13214: (p_transaction_step_id => p_transaction_step_id
13215: ,p_name => 'P_ATTRIBUTE8')
13216: --
13217: ,P_ATTRIBUTE9 =>

Line 13218: hr_transaction_api.get_VARCHAR2_value

13214: (p_transaction_step_id => p_transaction_step_id
13215: ,p_name => 'P_ATTRIBUTE8')
13216: --
13217: ,P_ATTRIBUTE9 =>
13218: hr_transaction_api.get_VARCHAR2_value
13219: (p_transaction_step_id => p_transaction_step_id
13220: ,p_name => 'P_ATTRIBUTE9')
13221: --
13222: ,P_ATTRIBUTE10 =>

Line 13223: hr_transaction_api.get_VARCHAR2_value

13219: (p_transaction_step_id => p_transaction_step_id
13220: ,p_name => 'P_ATTRIBUTE9')
13221: --
13222: ,P_ATTRIBUTE10 =>
13223: hr_transaction_api.get_VARCHAR2_value
13224: (p_transaction_step_id => p_transaction_step_id
13225: ,p_name => 'P_ATTRIBUTE10')
13226: --
13227: ,P_ATTRIBUTE11 =>

Line 13228: hr_transaction_api.get_VARCHAR2_value

13224: (p_transaction_step_id => p_transaction_step_id
13225: ,p_name => 'P_ATTRIBUTE10')
13226: --
13227: ,P_ATTRIBUTE11 =>
13228: hr_transaction_api.get_VARCHAR2_value
13229: (p_transaction_step_id => p_transaction_step_id
13230: ,p_name => 'P_ATTRIBUTE11')
13231: --
13232: ,P_ATTRIBUTE12 =>

Line 13233: hr_transaction_api.get_VARCHAR2_value

13229: (p_transaction_step_id => p_transaction_step_id
13230: ,p_name => 'P_ATTRIBUTE11')
13231: --
13232: ,P_ATTRIBUTE12 =>
13233: hr_transaction_api.get_VARCHAR2_value
13234: (p_transaction_step_id => p_transaction_step_id
13235: ,p_name => 'P_ATTRIBUTE12')
13236: --
13237: ,P_ATTRIBUTE13 =>

Line 13238: hr_transaction_api.get_VARCHAR2_value

13234: (p_transaction_step_id => p_transaction_step_id
13235: ,p_name => 'P_ATTRIBUTE12')
13236: --
13237: ,P_ATTRIBUTE13 =>
13238: hr_transaction_api.get_VARCHAR2_value
13239: (p_transaction_step_id => p_transaction_step_id
13240: ,p_name => 'P_ATTRIBUTE13')
13241: --
13242: ,P_ATTRIBUTE14 =>

Line 13243: hr_transaction_api.get_VARCHAR2_value

13239: (p_transaction_step_id => p_transaction_step_id
13240: ,p_name => 'P_ATTRIBUTE13')
13241: --
13242: ,P_ATTRIBUTE14 =>
13243: hr_transaction_api.get_VARCHAR2_value
13244: (p_transaction_step_id => p_transaction_step_id
13245: ,p_name => 'P_ATTRIBUTE14')
13246: --
13247: ,P_ATTRIBUTE15 =>

Line 13248: hr_transaction_api.get_VARCHAR2_value

13244: (p_transaction_step_id => p_transaction_step_id
13245: ,p_name => 'P_ATTRIBUTE14')
13246: --
13247: ,P_ATTRIBUTE15 =>
13248: hr_transaction_api.get_VARCHAR2_value
13249: (p_transaction_step_id => p_transaction_step_id
13250: ,p_name => 'P_ATTRIBUTE15')
13251: --
13252: ,P_ATTRIBUTE16 =>

Line 13253: hr_transaction_api.get_VARCHAR2_value

13249: (p_transaction_step_id => p_transaction_step_id
13250: ,p_name => 'P_ATTRIBUTE15')
13251: --
13252: ,P_ATTRIBUTE16 =>
13253: hr_transaction_api.get_VARCHAR2_value
13254: (p_transaction_step_id => p_transaction_step_id
13255: ,p_name => 'P_ATTRIBUTE16')
13256: --
13257: ,P_ATTRIBUTE17 =>

Line 13258: hr_transaction_api.get_VARCHAR2_value

13254: (p_transaction_step_id => p_transaction_step_id
13255: ,p_name => 'P_ATTRIBUTE16')
13256: --
13257: ,P_ATTRIBUTE17 =>
13258: hr_transaction_api.get_VARCHAR2_value
13259: (p_transaction_step_id => p_transaction_step_id
13260: ,p_name => 'P_ATTRIBUTE17')
13261: --
13262: ,P_ATTRIBUTE18 =>

Line 13263: hr_transaction_api.get_VARCHAR2_value

13259: (p_transaction_step_id => p_transaction_step_id
13260: ,p_name => 'P_ATTRIBUTE17')
13261: --
13262: ,P_ATTRIBUTE18 =>
13263: hr_transaction_api.get_VARCHAR2_value
13264: (p_transaction_step_id => p_transaction_step_id
13265: ,p_name => 'P_ATTRIBUTE18')
13266: --
13267: ,P_ATTRIBUTE19 =>

Line 13268: hr_transaction_api.get_VARCHAR2_value

13264: (p_transaction_step_id => p_transaction_step_id
13265: ,p_name => 'P_ATTRIBUTE18')
13266: --
13267: ,P_ATTRIBUTE19 =>
13268: hr_transaction_api.get_VARCHAR2_value
13269: (p_transaction_step_id => p_transaction_step_id
13270: ,p_name => 'P_ATTRIBUTE19')
13271: --
13272: ,P_ATTRIBUTE20 =>

Line 13273: hr_transaction_api.get_VARCHAR2_value

13269: (p_transaction_step_id => p_transaction_step_id
13270: ,p_name => 'P_ATTRIBUTE19')
13271: --
13272: ,P_ATTRIBUTE20 =>
13273: hr_transaction_api.get_VARCHAR2_value
13274: (p_transaction_step_id => p_transaction_step_id
13275: ,p_name => 'P_ATTRIBUTE20')
13276: --
13277: ,P_ATTRIBUTE21 =>

Line 13278: hr_transaction_api.get_VARCHAR2_value

13274: (p_transaction_step_id => p_transaction_step_id
13275: ,p_name => 'P_ATTRIBUTE20')
13276: --
13277: ,P_ATTRIBUTE21 =>
13278: hr_transaction_api.get_VARCHAR2_value
13279: (p_transaction_step_id => p_transaction_step_id
13280: ,p_name => 'P_ATTRIBUTE21')
13281: --
13282: ,P_ATTRIBUTE22 =>

Line 13283: hr_transaction_api.get_VARCHAR2_value

13279: (p_transaction_step_id => p_transaction_step_id
13280: ,p_name => 'P_ATTRIBUTE21')
13281: --
13282: ,P_ATTRIBUTE22 =>
13283: hr_transaction_api.get_VARCHAR2_value
13284: (p_transaction_step_id => p_transaction_step_id
13285: ,p_name => 'P_ATTRIBUTE22')
13286: --
13287: ,P_ATTRIBUTE23 =>

Line 13288: hr_transaction_api.get_VARCHAR2_value

13284: (p_transaction_step_id => p_transaction_step_id
13285: ,p_name => 'P_ATTRIBUTE22')
13286: --
13287: ,P_ATTRIBUTE23 =>
13288: hr_transaction_api.get_VARCHAR2_value
13289: (p_transaction_step_id => p_transaction_step_id
13290: ,p_name => 'P_ATTRIBUTE23')
13291: --
13292: ,P_ATTRIBUTE24 =>

Line 13293: hr_transaction_api.get_VARCHAR2_value

13289: (p_transaction_step_id => p_transaction_step_id
13290: ,p_name => 'P_ATTRIBUTE23')
13291: --
13292: ,P_ATTRIBUTE24 =>
13293: hr_transaction_api.get_VARCHAR2_value
13294: (p_transaction_step_id => p_transaction_step_id
13295: ,p_name => 'P_ATTRIBUTE24')
13296: --
13297: ,P_ATTRIBUTE25 =>

Line 13298: hr_transaction_api.get_VARCHAR2_value

13294: (p_transaction_step_id => p_transaction_step_id
13295: ,p_name => 'P_ATTRIBUTE24')
13296: --
13297: ,P_ATTRIBUTE25 =>
13298: hr_transaction_api.get_VARCHAR2_value
13299: (p_transaction_step_id => p_transaction_step_id
13300: ,p_name => 'P_ATTRIBUTE25')
13301: --
13302: ,P_ATTRIBUTE26 =>

Line 13303: hr_transaction_api.get_VARCHAR2_value

13299: (p_transaction_step_id => p_transaction_step_id
13300: ,p_name => 'P_ATTRIBUTE25')
13301: --
13302: ,P_ATTRIBUTE26 =>
13303: hr_transaction_api.get_VARCHAR2_value
13304: (p_transaction_step_id => p_transaction_step_id
13305: ,p_name => 'P_ATTRIBUTE26')
13306: --
13307: ,P_ATTRIBUTE27 =>

Line 13308: hr_transaction_api.get_VARCHAR2_value

13304: (p_transaction_step_id => p_transaction_step_id
13305: ,p_name => 'P_ATTRIBUTE26')
13306: --
13307: ,P_ATTRIBUTE27 =>
13308: hr_transaction_api.get_VARCHAR2_value
13309: (p_transaction_step_id => p_transaction_step_id
13310: ,p_name => 'P_ATTRIBUTE27')
13311: --
13312: ,P_ATTRIBUTE28 =>

Line 13313: hr_transaction_api.get_VARCHAR2_value

13309: (p_transaction_step_id => p_transaction_step_id
13310: ,p_name => 'P_ATTRIBUTE27')
13311: --
13312: ,P_ATTRIBUTE28 =>
13313: hr_transaction_api.get_VARCHAR2_value
13314: (p_transaction_step_id => p_transaction_step_id
13315: ,p_name => 'P_ATTRIBUTE28')
13316: --
13317: ,P_ATTRIBUTE29 =>

Line 13318: hr_transaction_api.get_VARCHAR2_value

13314: (p_transaction_step_id => p_transaction_step_id
13315: ,p_name => 'P_ATTRIBUTE28')
13316: --
13317: ,P_ATTRIBUTE29 =>
13318: hr_transaction_api.get_VARCHAR2_value
13319: (p_transaction_step_id => p_transaction_step_id
13320: ,p_name => 'P_ATTRIBUTE29')
13321: --
13322: ,P_ATTRIBUTE30 =>

Line 13323: hr_transaction_api.get_VARCHAR2_value

13319: (p_transaction_step_id => p_transaction_step_id
13320: ,p_name => 'P_ATTRIBUTE29')
13321: --
13322: ,P_ATTRIBUTE30 =>
13323: hr_transaction_api.get_VARCHAR2_value
13324: (p_transaction_step_id => p_transaction_step_id
13325: ,p_name => 'P_ATTRIBUTE30')
13326: --
13327: ,P_PER_INFORMATION_CATEGORY =>

Line 13328: hr_transaction_api.get_VARCHAR2_value

13324: (p_transaction_step_id => p_transaction_step_id
13325: ,p_name => 'P_ATTRIBUTE30')
13326: --
13327: ,P_PER_INFORMATION_CATEGORY =>
13328: hr_transaction_api.get_VARCHAR2_value
13329: (p_transaction_step_id => p_transaction_step_id
13330: ,p_name => 'P_PER_INFORMATION_CATEGORY')
13331: --
13332: ,P_PER_INFORMATION1 =>

Line 13333: hr_transaction_api.get_VARCHAR2_value

13329: (p_transaction_step_id => p_transaction_step_id
13330: ,p_name => 'P_PER_INFORMATION_CATEGORY')
13331: --
13332: ,P_PER_INFORMATION1 =>
13333: hr_transaction_api.get_VARCHAR2_value
13334: (p_transaction_step_id => p_transaction_step_id
13335: ,p_name => 'P_PER_INFORMATION1')
13336: --
13337: ,P_PER_INFORMATION2 =>

Line 13338: hr_transaction_api.get_VARCHAR2_value

13334: (p_transaction_step_id => p_transaction_step_id
13335: ,p_name => 'P_PER_INFORMATION1')
13336: --
13337: ,P_PER_INFORMATION2 =>
13338: hr_transaction_api.get_VARCHAR2_value
13339: (p_transaction_step_id => p_transaction_step_id
13340: ,p_name => 'P_PER_INFORMATION2')
13341: --
13342: ,P_PER_INFORMATION3 =>

Line 13343: hr_transaction_api.get_VARCHAR2_value

13339: (p_transaction_step_id => p_transaction_step_id
13340: ,p_name => 'P_PER_INFORMATION2')
13341: --
13342: ,P_PER_INFORMATION3 =>
13343: hr_transaction_api.get_VARCHAR2_value
13344: (p_transaction_step_id => p_transaction_step_id
13345: ,p_name => 'P_PER_INFORMATION3')
13346: --
13347: ,P_PER_INFORMATION4 =>

Line 13348: hr_transaction_api.get_VARCHAR2_value

13344: (p_transaction_step_id => p_transaction_step_id
13345: ,p_name => 'P_PER_INFORMATION3')
13346: --
13347: ,P_PER_INFORMATION4 =>
13348: hr_transaction_api.get_VARCHAR2_value
13349: (p_transaction_step_id => p_transaction_step_id
13350: ,p_name => 'P_PER_INFORMATION4')
13351: --
13352: ,P_PER_INFORMATION5 =>

Line 13353: hr_transaction_api.get_VARCHAR2_value

13349: (p_transaction_step_id => p_transaction_step_id
13350: ,p_name => 'P_PER_INFORMATION4')
13351: --
13352: ,P_PER_INFORMATION5 =>
13353: hr_transaction_api.get_VARCHAR2_value
13354: (p_transaction_step_id => p_transaction_step_id
13355: ,p_name => 'P_PER_INFORMATION5')
13356: --
13357: ,P_PER_INFORMATION6 =>

Line 13358: hr_transaction_api.get_VARCHAR2_value

13354: (p_transaction_step_id => p_transaction_step_id
13355: ,p_name => 'P_PER_INFORMATION5')
13356: --
13357: ,P_PER_INFORMATION6 =>
13358: hr_transaction_api.get_VARCHAR2_value
13359: (p_transaction_step_id => p_transaction_step_id
13360: ,p_name => 'P_PER_INFORMATION6')
13361: --
13362: ,P_PER_INFORMATION7 =>

Line 13363: hr_transaction_api.get_VARCHAR2_value

13359: (p_transaction_step_id => p_transaction_step_id
13360: ,p_name => 'P_PER_INFORMATION6')
13361: --
13362: ,P_PER_INFORMATION7 =>
13363: hr_transaction_api.get_VARCHAR2_value
13364: (p_transaction_step_id => p_transaction_step_id
13365: ,p_name => 'P_PER_INFORMATION7')
13366: --
13367: ,P_PER_INFORMATION8 =>

Line 13368: hr_transaction_api.get_VARCHAR2_value

13364: (p_transaction_step_id => p_transaction_step_id
13365: ,p_name => 'P_PER_INFORMATION7')
13366: --
13367: ,P_PER_INFORMATION8 =>
13368: hr_transaction_api.get_VARCHAR2_value
13369: (p_transaction_step_id => p_transaction_step_id
13370: ,p_name => 'P_PER_INFORMATION8')
13371: --
13372: ,P_PER_INFORMATION9 =>

Line 13373: hr_transaction_api.get_VARCHAR2_value

13369: (p_transaction_step_id => p_transaction_step_id
13370: ,p_name => 'P_PER_INFORMATION8')
13371: --
13372: ,P_PER_INFORMATION9 =>
13373: hr_transaction_api.get_VARCHAR2_value
13374: (p_transaction_step_id => p_transaction_step_id
13375: ,p_name => 'P_PER_INFORMATION9')
13376: --
13377: ,P_PER_INFORMATION10 =>

Line 13378: hr_transaction_api.get_VARCHAR2_value

13374: (p_transaction_step_id => p_transaction_step_id
13375: ,p_name => 'P_PER_INFORMATION9')
13376: --
13377: ,P_PER_INFORMATION10 =>
13378: hr_transaction_api.get_VARCHAR2_value
13379: (p_transaction_step_id => p_transaction_step_id
13380: ,p_name => 'P_PER_INFORMATION10')
13381: --
13382: ,P_PER_INFORMATION11 =>

Line 13383: hr_transaction_api.get_VARCHAR2_value

13379: (p_transaction_step_id => p_transaction_step_id
13380: ,p_name => 'P_PER_INFORMATION10')
13381: --
13382: ,P_PER_INFORMATION11 =>
13383: hr_transaction_api.get_VARCHAR2_value
13384: (p_transaction_step_id => p_transaction_step_id
13385: ,p_name => 'P_PER_INFORMATION11')
13386: --
13387: ,P_PER_INFORMATION12 =>

Line 13388: hr_transaction_api.get_VARCHAR2_value

13384: (p_transaction_step_id => p_transaction_step_id
13385: ,p_name => 'P_PER_INFORMATION11')
13386: --
13387: ,P_PER_INFORMATION12 =>
13388: hr_transaction_api.get_VARCHAR2_value
13389: (p_transaction_step_id => p_transaction_step_id
13390: ,p_name => 'P_PER_INFORMATION12')
13391: --
13392: ,P_PER_INFORMATION13 =>

Line 13393: hr_transaction_api.get_VARCHAR2_value

13389: (p_transaction_step_id => p_transaction_step_id
13390: ,p_name => 'P_PER_INFORMATION12')
13391: --
13392: ,P_PER_INFORMATION13 =>
13393: hr_transaction_api.get_VARCHAR2_value
13394: (p_transaction_step_id => p_transaction_step_id
13395: ,p_name => 'P_PER_INFORMATION13')
13396: --
13397: ,P_PER_INFORMATION14 =>

Line 13398: hr_transaction_api.get_VARCHAR2_value

13394: (p_transaction_step_id => p_transaction_step_id
13395: ,p_name => 'P_PER_INFORMATION13')
13396: --
13397: ,P_PER_INFORMATION14 =>
13398: hr_transaction_api.get_VARCHAR2_value
13399: (p_transaction_step_id => p_transaction_step_id
13400: ,p_name => 'P_PER_INFORMATION14')
13401: --
13402: ,P_PER_INFORMATION15 =>

Line 13403: hr_transaction_api.get_VARCHAR2_value

13399: (p_transaction_step_id => p_transaction_step_id
13400: ,p_name => 'P_PER_INFORMATION14')
13401: --
13402: ,P_PER_INFORMATION15 =>
13403: hr_transaction_api.get_VARCHAR2_value
13404: (p_transaction_step_id => p_transaction_step_id
13405: ,p_name => 'P_PER_INFORMATION15')
13406: --
13407: ,P_PER_INFORMATION16 =>

Line 13408: hr_transaction_api.get_VARCHAR2_value

13404: (p_transaction_step_id => p_transaction_step_id
13405: ,p_name => 'P_PER_INFORMATION15')
13406: --
13407: ,P_PER_INFORMATION16 =>
13408: hr_transaction_api.get_VARCHAR2_value
13409: (p_transaction_step_id => p_transaction_step_id
13410: ,p_name => 'P_PER_INFORMATION16')
13411: --
13412: ,P_PER_INFORMATION17 =>

Line 13413: hr_transaction_api.get_VARCHAR2_value

13409: (p_transaction_step_id => p_transaction_step_id
13410: ,p_name => 'P_PER_INFORMATION16')
13411: --
13412: ,P_PER_INFORMATION17 =>
13413: hr_transaction_api.get_VARCHAR2_value
13414: (p_transaction_step_id => p_transaction_step_id
13415: ,p_name => 'P_PER_INFORMATION17')
13416: --
13417: ,P_PER_INFORMATION18 =>

Line 13418: hr_transaction_api.get_VARCHAR2_value

13414: (p_transaction_step_id => p_transaction_step_id
13415: ,p_name => 'P_PER_INFORMATION17')
13416: --
13417: ,P_PER_INFORMATION18 =>
13418: hr_transaction_api.get_VARCHAR2_value
13419: (p_transaction_step_id => p_transaction_step_id
13420: ,p_name => 'P_PER_INFORMATION18')
13421: --
13422: ,P_PER_INFORMATION19 =>

Line 13423: hr_transaction_api.get_VARCHAR2_value

13419: (p_transaction_step_id => p_transaction_step_id
13420: ,p_name => 'P_PER_INFORMATION18')
13421: --
13422: ,P_PER_INFORMATION19 =>
13423: hr_transaction_api.get_VARCHAR2_value
13424: (p_transaction_step_id => p_transaction_step_id
13425: ,p_name => 'P_PER_INFORMATION19')
13426: --
13427: ,P_PER_INFORMATION20 =>

Line 13428: hr_transaction_api.get_VARCHAR2_value

13424: (p_transaction_step_id => p_transaction_step_id
13425: ,p_name => 'P_PER_INFORMATION19')
13426: --
13427: ,P_PER_INFORMATION20 =>
13428: hr_transaction_api.get_VARCHAR2_value
13429: (p_transaction_step_id => p_transaction_step_id
13430: ,p_name => 'P_PER_INFORMATION20')
13431: --
13432: ,P_PER_INFORMATION21 =>

Line 13433: hr_transaction_api.get_VARCHAR2_value

13429: (p_transaction_step_id => p_transaction_step_id
13430: ,p_name => 'P_PER_INFORMATION20')
13431: --
13432: ,P_PER_INFORMATION21 =>
13433: hr_transaction_api.get_VARCHAR2_value
13434: (p_transaction_step_id => p_transaction_step_id
13435: ,p_name => 'P_PER_INFORMATION21')
13436: --
13437: ,P_PER_INFORMATION22 =>

Line 13438: hr_transaction_api.get_VARCHAR2_value

13434: (p_transaction_step_id => p_transaction_step_id
13435: ,p_name => 'P_PER_INFORMATION21')
13436: --
13437: ,P_PER_INFORMATION22 =>
13438: hr_transaction_api.get_VARCHAR2_value
13439: (p_transaction_step_id => p_transaction_step_id
13440: ,p_name => 'P_PER_INFORMATION22')
13441: --
13442: ,P_PER_INFORMATION23 =>

Line 13443: hr_transaction_api.get_VARCHAR2_value

13439: (p_transaction_step_id => p_transaction_step_id
13440: ,p_name => 'P_PER_INFORMATION22')
13441: --
13442: ,P_PER_INFORMATION23 =>
13443: hr_transaction_api.get_VARCHAR2_value
13444: (p_transaction_step_id => p_transaction_step_id
13445: ,p_name => 'P_PER_INFORMATION23')
13446: --
13447: ,P_PER_INFORMATION24 =>

Line 13448: hr_transaction_api.get_VARCHAR2_value

13444: (p_transaction_step_id => p_transaction_step_id
13445: ,p_name => 'P_PER_INFORMATION23')
13446: --
13447: ,P_PER_INFORMATION24 =>
13448: hr_transaction_api.get_VARCHAR2_value
13449: (p_transaction_step_id => p_transaction_step_id
13450: ,p_name => 'P_PER_INFORMATION24')
13451: --
13452: ,P_PER_INFORMATION25 =>

Line 13453: hr_transaction_api.get_VARCHAR2_value

13449: (p_transaction_step_id => p_transaction_step_id
13450: ,p_name => 'P_PER_INFORMATION24')
13451: --
13452: ,P_PER_INFORMATION25 =>
13453: hr_transaction_api.get_VARCHAR2_value
13454: (p_transaction_step_id => p_transaction_step_id
13455: ,p_name => 'P_PER_INFORMATION25')
13456: --
13457: ,P_PER_INFORMATION26 =>

Line 13458: hr_transaction_api.get_VARCHAR2_value

13454: (p_transaction_step_id => p_transaction_step_id
13455: ,p_name => 'P_PER_INFORMATION25')
13456: --
13457: ,P_PER_INFORMATION26 =>
13458: hr_transaction_api.get_VARCHAR2_value
13459: (p_transaction_step_id => p_transaction_step_id
13460: ,p_name => 'P_PER_INFORMATION26')
13461: --
13462: ,P_PER_INFORMATION27 =>

Line 13463: hr_transaction_api.get_VARCHAR2_value

13459: (p_transaction_step_id => p_transaction_step_id
13460: ,p_name => 'P_PER_INFORMATION26')
13461: --
13462: ,P_PER_INFORMATION27 =>
13463: hr_transaction_api.get_VARCHAR2_value
13464: (p_transaction_step_id => p_transaction_step_id
13465: ,p_name => 'P_PER_INFORMATION27')
13466: --
13467: ,P_PER_INFORMATION28 =>

Line 13468: hr_transaction_api.get_VARCHAR2_value

13464: (p_transaction_step_id => p_transaction_step_id
13465: ,p_name => 'P_PER_INFORMATION27')
13466: --
13467: ,P_PER_INFORMATION28 =>
13468: hr_transaction_api.get_VARCHAR2_value
13469: (p_transaction_step_id => p_transaction_step_id
13470: ,p_name => 'P_PER_INFORMATION28')
13471: --
13472: ,P_PER_INFORMATION29 =>

Line 13473: hr_transaction_api.get_VARCHAR2_value

13469: (p_transaction_step_id => p_transaction_step_id
13470: ,p_name => 'P_PER_INFORMATION28')
13471: --
13472: ,P_PER_INFORMATION29 =>
13473: hr_transaction_api.get_VARCHAR2_value
13474: (p_transaction_step_id => p_transaction_step_id
13475: ,p_name => 'P_PER_INFORMATION29')
13476: --
13477: ,P_PER_INFORMATION30 =>

Line 13478: hr_transaction_api.get_VARCHAR2_value

13474: (p_transaction_step_id => p_transaction_step_id
13475: ,p_name => 'P_PER_INFORMATION29')
13476: --
13477: ,P_PER_INFORMATION30 =>
13478: hr_transaction_api.get_VARCHAR2_value
13479: (p_transaction_step_id => p_transaction_step_id
13480: ,p_name => 'P_PER_INFORMATION30')
13481: --
13482: ,P_CORRESPONDENCE_LANGUAGE =>

Line 13483: hr_transaction_api.get_VARCHAR2_value

13479: (p_transaction_step_id => p_transaction_step_id
13480: ,p_name => 'P_PER_INFORMATION30')
13481: --
13482: ,P_CORRESPONDENCE_LANGUAGE =>
13483: hr_transaction_api.get_VARCHAR2_value
13484: (p_transaction_step_id => p_transaction_step_id
13485: ,p_name => 'P_CORRESPONDENCE_LANGUAGE')
13486: --
13487: ,P_HONORS =>

Line 13488: hr_transaction_api.get_VARCHAR2_value

13484: (p_transaction_step_id => p_transaction_step_id
13485: ,p_name => 'P_CORRESPONDENCE_LANGUAGE')
13486: --
13487: ,P_HONORS =>
13488: hr_transaction_api.get_VARCHAR2_value
13489: (p_transaction_step_id => p_transaction_step_id
13490: ,p_name => 'P_HONORS')
13491: --
13492: ,P_PRE_NAME_ADJUNCT =>

Line 13493: hr_transaction_api.get_VARCHAR2_value

13489: (p_transaction_step_id => p_transaction_step_id
13490: ,p_name => 'P_HONORS')
13491: --
13492: ,P_PRE_NAME_ADJUNCT =>
13493: hr_transaction_api.get_VARCHAR2_value
13494: (p_transaction_step_id => p_transaction_step_id
13495: ,p_name => 'P_PRE_NAME_ADJUNCT')
13496: --
13497: ,P_SUFFIX =>

Line 13498: hr_transaction_api.get_VARCHAR2_value

13494: (p_transaction_step_id => p_transaction_step_id
13495: ,p_name => 'P_PRE_NAME_ADJUNCT')
13496: --
13497: ,P_SUFFIX =>
13498: hr_transaction_api.get_VARCHAR2_value
13499: (p_transaction_step_id => p_transaction_step_id
13500: ,p_name => 'P_SUFFIX')
13501: --
13502: ,P_CREATE_MIRROR_FLAG =>

Line 13503: hr_transaction_api.get_VARCHAR2_value

13499: (p_transaction_step_id => p_transaction_step_id
13500: ,p_name => 'P_SUFFIX')
13501: --
13502: ,P_CREATE_MIRROR_FLAG =>
13503: hr_transaction_api.get_VARCHAR2_value
13504: (p_transaction_step_id => p_transaction_step_id
13505: ,p_name => 'P_CREATE_MIRROR_FLAG')
13506:
13507: --

Line 13509: hr_transaction_api.get_VARCHAR2_value

13505: ,p_name => 'P_CREATE_MIRROR_FLAG')
13506:
13507: --
13508: ,P_MIRROR_TYPE =>
13509: hr_transaction_api.get_VARCHAR2_value
13510: (p_transaction_step_id => p_transaction_step_id
13511: ,p_name => 'P_MIRROR_TYPE')
13512:
13513: --

Line 13515: hr_transaction_api.get_VARCHAR2_value

13511: ,p_name => 'P_MIRROR_TYPE')
13512:
13513: --
13514: ,P_MIRROR_CONT_ATTRIBUTE_CAT =>
13515: hr_transaction_api.get_VARCHAR2_value
13516: (p_transaction_step_id => p_transaction_step_id
13517: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
13518: --
13519: ,P_MIRROR_CONT_ATTRIBUTE1 =>

Line 13520: hr_transaction_api.get_VARCHAR2_value

13516: (p_transaction_step_id => p_transaction_step_id
13517: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
13518: --
13519: ,P_MIRROR_CONT_ATTRIBUTE1 =>
13520: hr_transaction_api.get_VARCHAR2_value
13521: (p_transaction_step_id => p_transaction_step_id
13522: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
13523: --
13524: ,P_MIRROR_CONT_ATTRIBUTE2 =>

Line 13525: hr_transaction_api.get_VARCHAR2_value

13521: (p_transaction_step_id => p_transaction_step_id
13522: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
13523: --
13524: ,P_MIRROR_CONT_ATTRIBUTE2 =>
13525: hr_transaction_api.get_VARCHAR2_value
13526: (p_transaction_step_id => p_transaction_step_id
13527: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
13528: --
13529: ,P_MIRROR_CONT_ATTRIBUTE3 =>

Line 13530: hr_transaction_api.get_VARCHAR2_value

13526: (p_transaction_step_id => p_transaction_step_id
13527: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
13528: --
13529: ,P_MIRROR_CONT_ATTRIBUTE3 =>
13530: hr_transaction_api.get_VARCHAR2_value
13531: (p_transaction_step_id => p_transaction_step_id
13532: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
13533: --
13534: ,P_MIRROR_CONT_ATTRIBUTE4 =>

Line 13535: hr_transaction_api.get_VARCHAR2_value

13531: (p_transaction_step_id => p_transaction_step_id
13532: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
13533: --
13534: ,P_MIRROR_CONT_ATTRIBUTE4 =>
13535: hr_transaction_api.get_VARCHAR2_value
13536: (p_transaction_step_id => p_transaction_step_id
13537: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
13538: --
13539: ,P_MIRROR_CONT_ATTRIBUTE5 =>

Line 13540: hr_transaction_api.get_VARCHAR2_value

13536: (p_transaction_step_id => p_transaction_step_id
13537: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
13538: --
13539: ,P_MIRROR_CONT_ATTRIBUTE5 =>
13540: hr_transaction_api.get_VARCHAR2_value
13541: (p_transaction_step_id => p_transaction_step_id
13542: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
13543: --
13544: ,P_MIRROR_CONT_ATTRIBUTE6 =>

Line 13545: hr_transaction_api.get_VARCHAR2_value

13541: (p_transaction_step_id => p_transaction_step_id
13542: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
13543: --
13544: ,P_MIRROR_CONT_ATTRIBUTE6 =>
13545: hr_transaction_api.get_VARCHAR2_value
13546: (p_transaction_step_id => p_transaction_step_id
13547: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
13548: --
13549: ,P_MIRROR_CONT_ATTRIBUTE7 =>

Line 13550: hr_transaction_api.get_VARCHAR2_value

13546: (p_transaction_step_id => p_transaction_step_id
13547: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
13548: --
13549: ,P_MIRROR_CONT_ATTRIBUTE7 =>
13550: hr_transaction_api.get_VARCHAR2_value
13551: (p_transaction_step_id => p_transaction_step_id
13552: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
13553: --
13554: ,P_MIRROR_CONT_ATTRIBUTE8 =>

Line 13555: hr_transaction_api.get_VARCHAR2_value

13551: (p_transaction_step_id => p_transaction_step_id
13552: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
13553: --
13554: ,P_MIRROR_CONT_ATTRIBUTE8 =>
13555: hr_transaction_api.get_VARCHAR2_value
13556: (p_transaction_step_id => p_transaction_step_id
13557: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
13558: --
13559: ,P_MIRROR_CONT_ATTRIBUTE9 =>

Line 13560: hr_transaction_api.get_VARCHAR2_value

13556: (p_transaction_step_id => p_transaction_step_id
13557: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
13558: --
13559: ,P_MIRROR_CONT_ATTRIBUTE9 =>
13560: hr_transaction_api.get_VARCHAR2_value
13561: (p_transaction_step_id => p_transaction_step_id
13562: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
13563: --
13564: ,P_MIRROR_CONT_ATTRIBUTE10 =>

Line 13565: hr_transaction_api.get_VARCHAR2_value

13561: (p_transaction_step_id => p_transaction_step_id
13562: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
13563: --
13564: ,P_MIRROR_CONT_ATTRIBUTE10 =>
13565: hr_transaction_api.get_VARCHAR2_value
13566: (p_transaction_step_id => p_transaction_step_id
13567: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
13568: --
13569: ,P_MIRROR_CONT_ATTRIBUTE11 =>

Line 13570: hr_transaction_api.get_VARCHAR2_value

13566: (p_transaction_step_id => p_transaction_step_id
13567: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
13568: --
13569: ,P_MIRROR_CONT_ATTRIBUTE11 =>
13570: hr_transaction_api.get_VARCHAR2_value
13571: (p_transaction_step_id => p_transaction_step_id
13572: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
13573: --
13574: ,P_MIRROR_CONT_ATTRIBUTE12 =>

Line 13575: hr_transaction_api.get_VARCHAR2_value

13571: (p_transaction_step_id => p_transaction_step_id
13572: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
13573: --
13574: ,P_MIRROR_CONT_ATTRIBUTE12 =>
13575: hr_transaction_api.get_VARCHAR2_value
13576: (p_transaction_step_id => p_transaction_step_id
13577: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
13578: --
13579: ,P_MIRROR_CONT_ATTRIBUTE13 =>

Line 13580: hr_transaction_api.get_VARCHAR2_value

13576: (p_transaction_step_id => p_transaction_step_id
13577: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
13578: --
13579: ,P_MIRROR_CONT_ATTRIBUTE13 =>
13580: hr_transaction_api.get_VARCHAR2_value
13581: (p_transaction_step_id => p_transaction_step_id
13582: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
13583: --
13584: ,P_MIRROR_CONT_ATTRIBUTE14 =>

Line 13585: hr_transaction_api.get_VARCHAR2_value

13581: (p_transaction_step_id => p_transaction_step_id
13582: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
13583: --
13584: ,P_MIRROR_CONT_ATTRIBUTE14 =>
13585: hr_transaction_api.get_VARCHAR2_value
13586: (p_transaction_step_id => p_transaction_step_id
13587: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
13588: --
13589: ,P_MIRROR_CONT_ATTRIBUTE15 =>

Line 13590: hr_transaction_api.get_VARCHAR2_value

13586: (p_transaction_step_id => p_transaction_step_id
13587: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
13588: --
13589: ,P_MIRROR_CONT_ATTRIBUTE15 =>
13590: hr_transaction_api.get_VARCHAR2_value
13591: (p_transaction_step_id => p_transaction_step_id
13592: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
13593: --
13594: ,P_MIRROR_CONT_ATTRIBUTE16 =>

Line 13595: hr_transaction_api.get_VARCHAR2_value

13591: (p_transaction_step_id => p_transaction_step_id
13592: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
13593: --
13594: ,P_MIRROR_CONT_ATTRIBUTE16 =>
13595: hr_transaction_api.get_VARCHAR2_value
13596: (p_transaction_step_id => p_transaction_step_id
13597: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
13598: --
13599: ,P_MIRROR_CONT_ATTRIBUTE17 =>

Line 13600: hr_transaction_api.get_VARCHAR2_value

13596: (p_transaction_step_id => p_transaction_step_id
13597: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
13598: --
13599: ,P_MIRROR_CONT_ATTRIBUTE17 =>
13600: hr_transaction_api.get_VARCHAR2_value
13601: (p_transaction_step_id => p_transaction_step_id
13602: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
13603: --
13604: ,P_MIRROR_CONT_ATTRIBUTE18 =>

Line 13605: hr_transaction_api.get_VARCHAR2_value

13601: (p_transaction_step_id => p_transaction_step_id
13602: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
13603: --
13604: ,P_MIRROR_CONT_ATTRIBUTE18 =>
13605: hr_transaction_api.get_VARCHAR2_value
13606: (p_transaction_step_id => p_transaction_step_id
13607: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
13608: --
13609: ,P_MIRROR_CONT_ATTRIBUTE19 =>

Line 13610: hr_transaction_api.get_VARCHAR2_value

13606: (p_transaction_step_id => p_transaction_step_id
13607: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
13608: --
13609: ,P_MIRROR_CONT_ATTRIBUTE19 =>
13610: hr_transaction_api.get_VARCHAR2_value
13611: (p_transaction_step_id => p_transaction_step_id
13612: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
13613: --
13614: ,P_MIRROR_CONT_ATTRIBUTE20 =>

Line 13615: hr_transaction_api.get_VARCHAR2_value

13611: (p_transaction_step_id => p_transaction_step_id
13612: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
13613: --
13614: ,P_MIRROR_CONT_ATTRIBUTE20 =>
13615: hr_transaction_api.get_VARCHAR2_value
13616: (p_transaction_step_id => p_transaction_step_id
13617: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE20')
13618: --
13619: ,P_CONTACT_RELATIONSHIP_ID => l_contact_relationship_id1

Line 13640: hr_transaction_api.get_VARCHAR2_value

13636: --
13637: ,P_ORIG_HIRE_WARNING => l_con_orig_hire_warning1
13638: --
13639: ,P_CONT_INFORMATION_CATEGORY =>
13640: hr_transaction_api.get_VARCHAR2_value
13641: (p_transaction_step_id => p_transaction_step_id
13642: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
13643: --
13644: ,P_CONT_INFORMATION1 =>

Line 13645: hr_transaction_api.get_VARCHAR2_value

13641: (p_transaction_step_id => p_transaction_step_id
13642: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
13643: --
13644: ,P_CONT_INFORMATION1 =>
13645: hr_transaction_api.get_VARCHAR2_value
13646: (p_transaction_step_id => p_transaction_step_id
13647: ,p_name => 'P_CONT_INFORMATION1')
13648: --
13649: ,P_CONT_INFORMATION2 =>

Line 13650: hr_transaction_api.get_VARCHAR2_value

13646: (p_transaction_step_id => p_transaction_step_id
13647: ,p_name => 'P_CONT_INFORMATION1')
13648: --
13649: ,P_CONT_INFORMATION2 =>
13650: hr_transaction_api.get_VARCHAR2_value
13651: (p_transaction_step_id => p_transaction_step_id
13652: ,p_name => 'P_CONT_INFORMATION2')
13653: --
13654: ,P_CONT_INFORMATION3 =>

Line 13655: hr_transaction_api.get_VARCHAR2_value

13651: (p_transaction_step_id => p_transaction_step_id
13652: ,p_name => 'P_CONT_INFORMATION2')
13653: --
13654: ,P_CONT_INFORMATION3 =>
13655: hr_transaction_api.get_VARCHAR2_value
13656: (p_transaction_step_id => p_transaction_step_id
13657: ,p_name => 'P_CONT_INFORMATION3')
13658: --
13659: ,P_CONT_INFORMATION4 =>

Line 13660: hr_transaction_api.get_VARCHAR2_value

13656: (p_transaction_step_id => p_transaction_step_id
13657: ,p_name => 'P_CONT_INFORMATION3')
13658: --
13659: ,P_CONT_INFORMATION4 =>
13660: hr_transaction_api.get_VARCHAR2_value
13661: (p_transaction_step_id => p_transaction_step_id
13662: ,p_name => 'P_CONT_INFORMATION4')
13663: --
13664: ,P_CONT_INFORMATION5 =>

Line 13665: hr_transaction_api.get_VARCHAR2_value

13661: (p_transaction_step_id => p_transaction_step_id
13662: ,p_name => 'P_CONT_INFORMATION4')
13663: --
13664: ,P_CONT_INFORMATION5 =>
13665: hr_transaction_api.get_VARCHAR2_value
13666: (p_transaction_step_id => p_transaction_step_id
13667: ,p_name => 'P_CONT_INFORMATION5')
13668: --
13669: ,P_CONT_INFORMATION6 =>

Line 13670: hr_transaction_api.get_VARCHAR2_value

13666: (p_transaction_step_id => p_transaction_step_id
13667: ,p_name => 'P_CONT_INFORMATION5')
13668: --
13669: ,P_CONT_INFORMATION6 =>
13670: hr_transaction_api.get_VARCHAR2_value
13671: (p_transaction_step_id => p_transaction_step_id
13672: ,p_name => 'P_CONT_INORMATION6')
13673: --
13674: ,P_CONT_INFORMATION7 =>

Line 13675: hr_transaction_api.get_VARCHAR2_value

13671: (p_transaction_step_id => p_transaction_step_id
13672: ,p_name => 'P_CONT_INORMATION6')
13673: --
13674: ,P_CONT_INFORMATION7 =>
13675: hr_transaction_api.get_VARCHAR2_value
13676: (p_transaction_step_id => p_transaction_step_id
13677: ,p_name => 'P_CONT_INFORMATION7')
13678: --
13679: ,P_CONT_INFORMATION8 =>

Line 13680: hr_transaction_api.get_VARCHAR2_value

13676: (p_transaction_step_id => p_transaction_step_id
13677: ,p_name => 'P_CONT_INFORMATION7')
13678: --
13679: ,P_CONT_INFORMATION8 =>
13680: hr_transaction_api.get_VARCHAR2_value
13681: (p_transaction_step_id => p_transaction_step_id
13682: ,p_name => 'P_CONT_INFORMATION8')
13683: --
13684: ,P_CONT_INFORMATION9 =>

Line 13685: hr_transaction_api.get_VARCHAR2_value

13681: (p_transaction_step_id => p_transaction_step_id
13682: ,p_name => 'P_CONT_INFORMATION8')
13683: --
13684: ,P_CONT_INFORMATION9 =>
13685: hr_transaction_api.get_VARCHAR2_value
13686: (p_transaction_step_id => p_transaction_step_id
13687: ,p_name => 'P_CONT_INFORMATION9')
13688: --
13689: ,P_CONT_INFORMATION10 =>

Line 13690: hr_transaction_api.get_VARCHAR2_value

13686: (p_transaction_step_id => p_transaction_step_id
13687: ,p_name => 'P_CONT_INFORMATION9')
13688: --
13689: ,P_CONT_INFORMATION10 =>
13690: hr_transaction_api.get_VARCHAR2_value
13691: (p_transaction_step_id => p_transaction_step_id
13692: ,p_name => 'P_CONT_INFORMATION10')
13693: --
13694: ,P_CONT_INFORMATION11 =>

Line 13695: hr_transaction_api.get_VARCHAR2_value

13691: (p_transaction_step_id => p_transaction_step_id
13692: ,p_name => 'P_CONT_INFORMATION10')
13693: --
13694: ,P_CONT_INFORMATION11 =>
13695: hr_transaction_api.get_VARCHAR2_value
13696: (p_transaction_step_id => p_transaction_step_id
13697: ,p_name => 'P_CONT_INFORMATION11')
13698: --
13699: ,P_CONT_INFORMATION12 =>

Line 13700: hr_transaction_api.get_VARCHAR2_value

13696: (p_transaction_step_id => p_transaction_step_id
13697: ,p_name => 'P_CONT_INFORMATION11')
13698: --
13699: ,P_CONT_INFORMATION12 =>
13700: hr_transaction_api.get_VARCHAR2_value
13701: (p_transaction_step_id => p_transaction_step_id
13702: ,p_name => 'P_CONT_INFORMATION12')
13703: --
13704: ,P_CONT_INFORMATION13 =>

Line 13705: hr_transaction_api.get_VARCHAR2_value

13701: (p_transaction_step_id => p_transaction_step_id
13702: ,p_name => 'P_CONT_INFORMATION12')
13703: --
13704: ,P_CONT_INFORMATION13 =>
13705: hr_transaction_api.get_VARCHAR2_value
13706: (p_transaction_step_id => p_transaction_step_id
13707: ,p_name => 'P_CONT_INFORMATION13')
13708: --
13709: ,P_CONT_INFORMATION14 =>

Line 13710: hr_transaction_api.get_VARCHAR2_value

13706: (p_transaction_step_id => p_transaction_step_id
13707: ,p_name => 'P_CONT_INFORMATION13')
13708: --
13709: ,P_CONT_INFORMATION14 =>
13710: hr_transaction_api.get_VARCHAR2_value
13711: (p_transaction_step_id => p_transaction_step_id
13712: ,p_name => 'P_CONT_INFORMATION14')
13713: --
13714: ,P_CONT_INFORMATION15 =>

Line 13715: hr_transaction_api.get_VARCHAR2_value

13711: (p_transaction_step_id => p_transaction_step_id
13712: ,p_name => 'P_CONT_INFORMATION14')
13713: --
13714: ,P_CONT_INFORMATION15 =>
13715: hr_transaction_api.get_VARCHAR2_value
13716: (p_transaction_step_id => p_transaction_step_id
13717: ,p_name => 'P_CONT_INFORMATION15')
13718: --
13719: ,P_CONT_INFORMATION16 =>

Line 13720: hr_transaction_api.get_VARCHAR2_value

13716: (p_transaction_step_id => p_transaction_step_id
13717: ,p_name => 'P_CONT_INFORMATION15')
13718: --
13719: ,P_CONT_INFORMATION16 =>
13720: hr_transaction_api.get_VARCHAR2_value
13721: (p_transaction_step_id => p_transaction_step_id
13722: ,p_name => 'P_CONT_INFORMATION16')
13723: --
13724: ,P_CONT_INFORMATION17 =>

Line 13725: hr_transaction_api.get_VARCHAR2_value

13721: (p_transaction_step_id => p_transaction_step_id
13722: ,p_name => 'P_CONT_INFORMATION16')
13723: --
13724: ,P_CONT_INFORMATION17 =>
13725: hr_transaction_api.get_VARCHAR2_value
13726: (p_transaction_step_id => p_transaction_step_id
13727: ,p_name => 'P_CONT_INFORMATION17')
13728: --
13729: ,P_CONT_INFORMATION18 =>

Line 13730: hr_transaction_api.get_VARCHAR2_value

13726: (p_transaction_step_id => p_transaction_step_id
13727: ,p_name => 'P_CONT_INFORMATION17')
13728: --
13729: ,P_CONT_INFORMATION18 =>
13730: hr_transaction_api.get_VARCHAR2_value
13731: (p_transaction_step_id => p_transaction_step_id
13732: ,p_name => 'P_CONT_INFORMATION18')
13733: --
13734: ,P_CONT_INFORMATION19 =>

Line 13735: hr_transaction_api.get_VARCHAR2_value

13731: (p_transaction_step_id => p_transaction_step_id
13732: ,p_name => 'P_CONT_INFORMATION18')
13733: --
13734: ,P_CONT_INFORMATION19 =>
13735: hr_transaction_api.get_VARCHAR2_value
13736: (p_transaction_step_id => p_transaction_step_id
13737: ,p_name => 'P_CONT_INFORMATION19')
13738: --
13739: ,P_CONT_INFORMATION20 =>

Line 13740: hr_transaction_api.get_VARCHAR2_value

13736: (p_transaction_step_id => p_transaction_step_id
13737: ,p_name => 'P_CONT_INFORMATION19')
13738: --
13739: ,P_CONT_INFORMATION20 =>
13740: hr_transaction_api.get_VARCHAR2_value
13741: (p_transaction_step_id => p_transaction_step_id
13742: ,p_name => 'P_CONT_INFORMATION20')
13743: );
13744:

Line 13755: hr_transaction_api.get_NUMBER_value

13751:
13752: if (l_contact_operation = 'EMRG_OVRW_UPD' and (l_primary_contact_flag = 'Y' or
13753: l_primary_contact_flag = 'N')) then
13754: open get_emrg_relid_ovn(
13755: hr_transaction_api.get_NUMBER_value
13756: (p_transaction_step_id => p_transaction_step_id
13757: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13758: ,hr_transaction_api.get_number_value
13759: (p_transaction_step_id => p_transaction_step_id

Line 13758: ,hr_transaction_api.get_number_value

13754: open get_emrg_relid_ovn(
13755: hr_transaction_api.get_NUMBER_value
13756: (p_transaction_step_id => p_transaction_step_id
13757: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13758: ,hr_transaction_api.get_number_value
13759: (p_transaction_step_id => p_transaction_step_id
13760: ,p_name => 'P_CONTACT_PERSON_ID')
13761: ,hr_transaction_api.get_number_value
13762: (p_transaction_step_id => p_transaction_step_id

Line 13761: ,hr_transaction_api.get_number_value

13757: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13758: ,hr_transaction_api.get_number_value
13759: (p_transaction_step_id => p_transaction_step_id
13760: ,p_name => 'P_CONTACT_PERSON_ID')
13761: ,hr_transaction_api.get_number_value
13762: (p_transaction_step_id => p_transaction_step_id
13763: ,p_name => 'P_PERSON_ID'));
13764: -- Bug 3469145 : updating the primary cont flag if it has changed.
13765: -- Bug 3504216 : passing date_start as sysdate

Line 13801: hr_transaction_api.get_DATE_value

13797: P_VALIDATE => p_validate
13798: --
13799: ,P_EFFECTIVE_DATE => l_effective_date
13800: /* SFL changes
13801: hr_transaction_api.get_DATE_value
13802: (p_transaction_step_id => p_transaction_step_id
13803: ,p_name => 'p_cont_EFFECTIVE_DATE')
13804: */
13805: --

Line 13807: hr_transaction_api.get_NUMBER_value

13803: ,p_name => 'p_cont_EFFECTIVE_DATE')
13804: */
13805: --
13806: ,P_CONTACT_RELATIONSHIP_ID =>
13807: hr_transaction_api.get_NUMBER_value
13808: (p_transaction_step_id => p_transaction_step_id
13809: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13810: --
13811: ,P_CONTACT_TYPE =>

Line 13812: hr_transaction_api.get_VARCHAR2_value

13808: (p_transaction_step_id => p_transaction_step_id
13809: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13810: --
13811: ,P_CONTACT_TYPE =>
13812: hr_transaction_api.get_VARCHAR2_value
13813: (p_transaction_step_id => p_transaction_step_id
13814: ,p_name => 'P_CONTACT_TYPE')
13815: --
13816:

Line 13818: hr_transaction_api.get_VARCHAR2_value

13814: ,p_name => 'P_CONTACT_TYPE')
13815: --
13816:
13817: ,P_COMMENTS =>
13818: hr_transaction_api.get_VARCHAR2_value
13819: (p_transaction_step_id => p_transaction_step_id
13820: ,p_name => 'P_CTR_COMMENTS')
13821: --
13822: -- Bug 3617667 : Not passign Primary Cont flag.Its only availaible in Emerg region.

Line 13826: hr_transaction_api.get_VARCHAR2_value

13822: -- Bug 3617667 : Not passign Primary Cont flag.Its only availaible in Emerg region.
13823: -- ,P_PRIMARY_CONTACT_FLAG => l_primary_contact_flag
13824: --
13825: ,P_THIRD_PARTY_PAY_FLAG =>
13826: hr_transaction_api.get_VARCHAR2_value
13827: (p_transaction_step_id => p_transaction_step_id
13828: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
13829: --
13830: ,P_BONDHOLDER_FLAG =>

Line 13831: hr_transaction_api.get_VARCHAR2_value

13827: (p_transaction_step_id => p_transaction_step_id
13828: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
13829: --
13830: ,P_BONDHOLDER_FLAG =>
13831: hr_transaction_api.get_VARCHAR2_value
13832: (p_transaction_step_id => p_transaction_step_id
13833: ,p_name => 'P_BONDHOLDER_FLAG')
13834: --
13835: ,P_DATE_START =>

Line 13836: hr_transaction_api.get_DATE_value

13832: (p_transaction_step_id => p_transaction_step_id
13833: ,p_name => 'P_BONDHOLDER_FLAG')
13834: --
13835: ,P_DATE_START =>
13836: hr_transaction_api.get_DATE_value
13837: (p_transaction_step_id => p_transaction_step_id
13838: ,p_name => 'P_DATE_START')
13839: --
13840: ,P_START_LIFE_REASON_ID =>

Line 13841: hr_transaction_api.get_NUMBER_value

13837: (p_transaction_step_id => p_transaction_step_id
13838: ,p_name => 'P_DATE_START')
13839: --
13840: ,P_START_LIFE_REASON_ID =>
13841: hr_transaction_api.get_NUMBER_value
13842: (p_transaction_step_id => p_transaction_step_id
13843: ,p_name => 'P_START_LIFE_REASON_ID')
13844: --
13845: ,P_DATE_END =>

Line 13846: hr_transaction_api.get_DATE_value

13842: (p_transaction_step_id => p_transaction_step_id
13843: ,p_name => 'P_START_LIFE_REASON_ID')
13844: --
13845: ,P_DATE_END =>
13846: hr_transaction_api.get_DATE_value
13847: (p_transaction_step_id => p_transaction_step_id
13848: ,p_name => 'P_DATE_END')
13849: --
13850: ,P_END_LIFE_REASON_ID =>

Line 13851: hr_transaction_api.get_NUMBER_value

13847: (p_transaction_step_id => p_transaction_step_id
13848: ,p_name => 'P_DATE_END')
13849: --
13850: ,P_END_LIFE_REASON_ID =>
13851: hr_transaction_api.get_NUMBER_value
13852: (p_transaction_step_id => p_transaction_step_id
13853: ,p_name => 'P_END_LIFE_REASON_ID')
13854: --
13855: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 13856: hr_transaction_api.get_VARCHAR2_value

13852: (p_transaction_step_id => p_transaction_step_id
13853: ,p_name => 'P_END_LIFE_REASON_ID')
13854: --
13855: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
13856: hr_transaction_api.get_VARCHAR2_value
13857: (p_transaction_step_id => p_transaction_step_id
13858: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
13859: --
13860: ,P_PERSONAL_FLAG =>

Line 13861: hr_transaction_api.get_VARCHAR2_value

13857: (p_transaction_step_id => p_transaction_step_id
13858: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
13859: --
13860: ,P_PERSONAL_FLAG =>
13861: hr_transaction_api.get_VARCHAR2_value
13862: (p_transaction_step_id => p_transaction_step_id
13863: ,p_name => 'P_PERSONAL_FLAG')
13864: --
13865: /* ,P_SEQUENCE_NUMBER =>

Line 13866: hr_transaction_api.get_NUMBER_value

13862: (p_transaction_step_id => p_transaction_step_id
13863: ,p_name => 'P_PERSONAL_FLAG')
13864: --
13865: /* ,P_SEQUENCE_NUMBER =>
13866: hr_transaction_api.get_NUMBER_value
13867: (p_transaction_step_id => p_transaction_step_id
13868: ,p_name => 'P_SEQUENCE_NUMBER') */
13869:
13870: --

Line 13872: hr_transaction_api.get_VARCHAR2_value

13868: ,p_name => 'P_SEQUENCE_NUMBER') */
13869:
13870: --
13871: ,P_DEPENDENT_FLAG =>
13872: hr_transaction_api.get_VARCHAR2_value
13873: (p_transaction_step_id => p_transaction_step_id
13874: ,p_name => 'P_DEPENDENT_FLAG')
13875: --
13876: ,P_BENEFICIARY_FLAG =>

Line 13877: hr_transaction_api.get_VARCHAR2_value

13873: (p_transaction_step_id => p_transaction_step_id
13874: ,p_name => 'P_DEPENDENT_FLAG')
13875: --
13876: ,P_BENEFICIARY_FLAG =>
13877: hr_transaction_api.get_VARCHAR2_value
13878: (p_transaction_step_id => p_transaction_step_id
13879: ,p_name => 'P_BENEFICIARY_FLAG')
13880: --
13881: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 13882: hr_transaction_api.get_VARCHAR2_value

13878: (p_transaction_step_id => p_transaction_step_id
13879: ,p_name => 'P_BENEFICIARY_FLAG')
13880: --
13881: ,P_CONT_ATTRIBUTE_CATEGORY =>
13882: hr_transaction_api.get_VARCHAR2_value
13883: (p_transaction_step_id => p_transaction_step_id
13884: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
13885: --
13886: ,P_CONT_ATTRIBUTE1 =>

Line 13887: hr_transaction_api.get_VARCHAR2_value

13883: (p_transaction_step_id => p_transaction_step_id
13884: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
13885: --
13886: ,P_CONT_ATTRIBUTE1 =>
13887: hr_transaction_api.get_VARCHAR2_value
13888: (p_transaction_step_id => p_transaction_step_id
13889: ,p_name => 'P_CONT_ATTRIBUTE1')
13890: --
13891: ,P_CONT_ATTRIBUTE2 =>

Line 13892: hr_transaction_api.get_VARCHAR2_value

13888: (p_transaction_step_id => p_transaction_step_id
13889: ,p_name => 'P_CONT_ATTRIBUTE1')
13890: --
13891: ,P_CONT_ATTRIBUTE2 =>
13892: hr_transaction_api.get_VARCHAR2_value
13893: (p_transaction_step_id => p_transaction_step_id
13894: ,p_name => 'P_CONT_ATTRIBUTE2')
13895: --
13896: ,P_CONT_ATTRIBUTE3 =>

Line 13897: hr_transaction_api.get_VARCHAR2_value

13893: (p_transaction_step_id => p_transaction_step_id
13894: ,p_name => 'P_CONT_ATTRIBUTE2')
13895: --
13896: ,P_CONT_ATTRIBUTE3 =>
13897: hr_transaction_api.get_VARCHAR2_value
13898: (p_transaction_step_id => p_transaction_step_id
13899: ,p_name => 'P_CONT_ATTRIBUTE3')
13900: --
13901: ,P_CONT_ATTRIBUTE4 =>

Line 13902: hr_transaction_api.get_VARCHAR2_value

13898: (p_transaction_step_id => p_transaction_step_id
13899: ,p_name => 'P_CONT_ATTRIBUTE3')
13900: --
13901: ,P_CONT_ATTRIBUTE4 =>
13902: hr_transaction_api.get_VARCHAR2_value
13903: (p_transaction_step_id => p_transaction_step_id
13904: ,p_name => 'P_CONT_ATTRIBUTE4')
13905: --
13906: ,P_CONT_ATTRIBUTE5 =>

Line 13907: hr_transaction_api.get_VARCHAR2_value

13903: (p_transaction_step_id => p_transaction_step_id
13904: ,p_name => 'P_CONT_ATTRIBUTE4')
13905: --
13906: ,P_CONT_ATTRIBUTE5 =>
13907: hr_transaction_api.get_VARCHAR2_value
13908: (p_transaction_step_id => p_transaction_step_id
13909: ,p_name => 'P_CONT_ATTRIBUTE5')
13910: --
13911: ,P_CONT_ATTRIBUTE6 =>

Line 13912: hr_transaction_api.get_VARCHAR2_value

13908: (p_transaction_step_id => p_transaction_step_id
13909: ,p_name => 'P_CONT_ATTRIBUTE5')
13910: --
13911: ,P_CONT_ATTRIBUTE6 =>
13912: hr_transaction_api.get_VARCHAR2_value
13913: (p_transaction_step_id => p_transaction_step_id
13914: ,p_name => 'P_CONT_ATTRIBUTE6')
13915: --
13916: ,P_CONT_ATTRIBUTE7 =>

Line 13917: hr_transaction_api.get_VARCHAR2_value

13913: (p_transaction_step_id => p_transaction_step_id
13914: ,p_name => 'P_CONT_ATTRIBUTE6')
13915: --
13916: ,P_CONT_ATTRIBUTE7 =>
13917: hr_transaction_api.get_VARCHAR2_value
13918: (p_transaction_step_id => p_transaction_step_id
13919: ,p_name => 'P_CONT_ATTRIBUTE7')
13920: --
13921: ,P_CONT_ATTRIBUTE8 =>

Line 13922: hr_transaction_api.get_VARCHAR2_value

13918: (p_transaction_step_id => p_transaction_step_id
13919: ,p_name => 'P_CONT_ATTRIBUTE7')
13920: --
13921: ,P_CONT_ATTRIBUTE8 =>
13922: hr_transaction_api.get_VARCHAR2_value
13923: (p_transaction_step_id => p_transaction_step_id
13924: ,p_name => 'P_CONT_ATTRIBUTE8')
13925: --
13926: ,P_CONT_ATTRIBUTE9 =>

Line 13927: hr_transaction_api.get_VARCHAR2_value

13923: (p_transaction_step_id => p_transaction_step_id
13924: ,p_name => 'P_CONT_ATTRIBUTE8')
13925: --
13926: ,P_CONT_ATTRIBUTE9 =>
13927: hr_transaction_api.get_VARCHAR2_value
13928: (p_transaction_step_id => p_transaction_step_id
13929: ,p_name => 'P_CONT_ATTRIBUTE9')
13930: --
13931: ,P_CONT_ATTRIBUTE10 =>

Line 13932: hr_transaction_api.get_VARCHAR2_value

13928: (p_transaction_step_id => p_transaction_step_id
13929: ,p_name => 'P_CONT_ATTRIBUTE9')
13930: --
13931: ,P_CONT_ATTRIBUTE10 =>
13932: hr_transaction_api.get_VARCHAR2_value
13933: (p_transaction_step_id => p_transaction_step_id
13934: ,p_name => 'P_CONT_ATTRIBUTE10')
13935: --
13936: ,P_CONT_ATTRIBUTE11 =>

Line 13937: hr_transaction_api.get_VARCHAR2_value

13933: (p_transaction_step_id => p_transaction_step_id
13934: ,p_name => 'P_CONT_ATTRIBUTE10')
13935: --
13936: ,P_CONT_ATTRIBUTE11 =>
13937: hr_transaction_api.get_VARCHAR2_value
13938: (p_transaction_step_id => p_transaction_step_id
13939: ,p_name => 'P_CONT_ATTRIBUTE11')
13940: --
13941: ,P_CONT_ATTRIBUTE12 =>

Line 13942: hr_transaction_api.get_VARCHAR2_value

13938: (p_transaction_step_id => p_transaction_step_id
13939: ,p_name => 'P_CONT_ATTRIBUTE11')
13940: --
13941: ,P_CONT_ATTRIBUTE12 =>
13942: hr_transaction_api.get_VARCHAR2_value
13943: (p_transaction_step_id => p_transaction_step_id
13944: ,p_name => 'P_CONT_ATTRIBUTE12')
13945: --
13946: ,P_CONT_ATTRIBUTE13 =>

Line 13947: hr_transaction_api.get_VARCHAR2_value

13943: (p_transaction_step_id => p_transaction_step_id
13944: ,p_name => 'P_CONT_ATTRIBUTE12')
13945: --
13946: ,P_CONT_ATTRIBUTE13 =>
13947: hr_transaction_api.get_VARCHAR2_value
13948: (p_transaction_step_id => p_transaction_step_id
13949: ,p_name => 'P_CONT_ATTRIBUTE13')
13950: --
13951: ,P_CONT_ATTRIBUTE14 =>

Line 13952: hr_transaction_api.get_VARCHAR2_value

13948: (p_transaction_step_id => p_transaction_step_id
13949: ,p_name => 'P_CONT_ATTRIBUTE13')
13950: --
13951: ,P_CONT_ATTRIBUTE14 =>
13952: hr_transaction_api.get_VARCHAR2_value
13953: (p_transaction_step_id => p_transaction_step_id
13954: ,p_name => 'P_CONT_ATTRIBUTE14')
13955: --
13956: ,P_CONT_ATTRIBUTE15 =>

Line 13957: hr_transaction_api.get_VARCHAR2_value

13953: (p_transaction_step_id => p_transaction_step_id
13954: ,p_name => 'P_CONT_ATTRIBUTE14')
13955: --
13956: ,P_CONT_ATTRIBUTE15 =>
13957: hr_transaction_api.get_VARCHAR2_value
13958: (p_transaction_step_id => p_transaction_step_id
13959: ,p_name => 'P_CONT_ATTRIBUTE15')
13960: --
13961: ,P_CONT_ATTRIBUTE16 =>

Line 13962: hr_transaction_api.get_VARCHAR2_value

13958: (p_transaction_step_id => p_transaction_step_id
13959: ,p_name => 'P_CONT_ATTRIBUTE15')
13960: --
13961: ,P_CONT_ATTRIBUTE16 =>
13962: hr_transaction_api.get_VARCHAR2_value
13963: (p_transaction_step_id => p_transaction_step_id
13964: ,p_name => 'P_CONT_ATTRIBUTE16')
13965: --
13966: ,P_CONT_ATTRIBUTE17 =>

Line 13967: hr_transaction_api.get_VARCHAR2_value

13963: (p_transaction_step_id => p_transaction_step_id
13964: ,p_name => 'P_CONT_ATTRIBUTE16')
13965: --
13966: ,P_CONT_ATTRIBUTE17 =>
13967: hr_transaction_api.get_VARCHAR2_value
13968: (p_transaction_step_id => p_transaction_step_id
13969: ,p_name => 'P_CONT_ATTRIBUTE17')
13970: --
13971: ,P_CONT_ATTRIBUTE18 =>

Line 13972: hr_transaction_api.get_VARCHAR2_value

13968: (p_transaction_step_id => p_transaction_step_id
13969: ,p_name => 'P_CONT_ATTRIBUTE17')
13970: --
13971: ,P_CONT_ATTRIBUTE18 =>
13972: hr_transaction_api.get_VARCHAR2_value
13973: (p_transaction_step_id => p_transaction_step_id
13974: ,p_name => 'P_CONT_ATTRIBUTE18')
13975: --
13976: ,P_CONT_ATTRIBUTE19 =>

Line 13977: hr_transaction_api.get_VARCHAR2_value

13973: (p_transaction_step_id => p_transaction_step_id
13974: ,p_name => 'P_CONT_ATTRIBUTE18')
13975: --
13976: ,P_CONT_ATTRIBUTE19 =>
13977: hr_transaction_api.get_VARCHAR2_value
13978: (p_transaction_step_id => p_transaction_step_id
13979: ,p_name => 'P_CONT_ATTRIBUTE19')
13980: --
13981: ,P_CONT_ATTRIBUTE20 =>

Line 13982: hr_transaction_api.get_VARCHAR2_value

13978: (p_transaction_step_id => p_transaction_step_id
13979: ,p_name => 'P_CONT_ATTRIBUTE19')
13980: --
13981: ,P_CONT_ATTRIBUTE20 =>
13982: hr_transaction_api.get_VARCHAR2_value
13983: (p_transaction_step_id => p_transaction_step_id
13984: ,p_name => 'P_CONT_ATTRIBUTE20')
13985: --
13986: ,P_CONT_INFORMATION_CATEGORY =>

Line 13987: hr_transaction_api.get_VARCHAR2_value

13983: (p_transaction_step_id => p_transaction_step_id
13984: ,p_name => 'P_CONT_ATTRIBUTE20')
13985: --
13986: ,P_CONT_INFORMATION_CATEGORY =>
13987: hr_transaction_api.get_VARCHAR2_value
13988: (p_transaction_step_id => p_transaction_step_id
13989: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
13990: --
13991: ,P_CONT_INFORMATION1 =>

Line 13992: hr_transaction_api.get_VARCHAR2_value

13988: (p_transaction_step_id => p_transaction_step_id
13989: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
13990: --
13991: ,P_CONT_INFORMATION1 =>
13992: hr_transaction_api.get_VARCHAR2_value
13993: (p_transaction_step_id => p_transaction_step_id
13994: ,p_name => 'P_CONT_INFORMATION1')
13995: --
13996: ,P_CONT_INFORMATION2 =>

Line 13997: hr_transaction_api.get_VARCHAR2_value

13993: (p_transaction_step_id => p_transaction_step_id
13994: ,p_name => 'P_CONT_INFORMATION1')
13995: --
13996: ,P_CONT_INFORMATION2 =>
13997: hr_transaction_api.get_VARCHAR2_value
13998: (p_transaction_step_id => p_transaction_step_id
13999: ,p_name => 'P_CONT_INFORMATION2')
14000: --
14001: ,P_CONT_INFORMATION3 =>

Line 14002: hr_transaction_api.get_VARCHAR2_value

13998: (p_transaction_step_id => p_transaction_step_id
13999: ,p_name => 'P_CONT_INFORMATION2')
14000: --
14001: ,P_CONT_INFORMATION3 =>
14002: hr_transaction_api.get_VARCHAR2_value
14003: (p_transaction_step_id => p_transaction_step_id
14004: ,p_name => 'P_CONT_INFORMATION3')
14005: --
14006: ,P_CONT_INFORMATION4 =>

Line 14007: hr_transaction_api.get_VARCHAR2_value

14003: (p_transaction_step_id => p_transaction_step_id
14004: ,p_name => 'P_CONT_INFORMATION3')
14005: --
14006: ,P_CONT_INFORMATION4 =>
14007: hr_transaction_api.get_VARCHAR2_value
14008: (p_transaction_step_id => p_transaction_step_id
14009: ,p_name => 'P_CONT_INFORMATION4')
14010: --
14011: ,P_CONT_INFORMATION5 =>

Line 14012: hr_transaction_api.get_VARCHAR2_value

14008: (p_transaction_step_id => p_transaction_step_id
14009: ,p_name => 'P_CONT_INFORMATION4')
14010: --
14011: ,P_CONT_INFORMATION5 =>
14012: hr_transaction_api.get_VARCHAR2_value
14013: (p_transaction_step_id => p_transaction_step_id
14014: ,p_name => 'P_CONT_INFORMATION5')
14015: --
14016: ,P_CONT_INFORMATION6 =>

Line 14017: hr_transaction_api.get_VARCHAR2_value

14013: (p_transaction_step_id => p_transaction_step_id
14014: ,p_name => 'P_CONT_INFORMATION5')
14015: --
14016: ,P_CONT_INFORMATION6 =>
14017: hr_transaction_api.get_VARCHAR2_value
14018: (p_transaction_step_id => p_transaction_step_id
14019: ,p_name => 'P_CONT_INFORMATION6')
14020: --
14021: ,P_CONT_INFORMATION7 =>

Line 14022: hr_transaction_api.get_VARCHAR2_value

14018: (p_transaction_step_id => p_transaction_step_id
14019: ,p_name => 'P_CONT_INFORMATION6')
14020: --
14021: ,P_CONT_INFORMATION7 =>
14022: hr_transaction_api.get_VARCHAR2_value
14023: (p_transaction_step_id => p_transaction_step_id
14024: ,p_name => 'P_CONT_INFORMATION7')
14025: --
14026: ,P_CONT_INFORMATION8 =>

Line 14027: hr_transaction_api.get_VARCHAR2_value

14023: (p_transaction_step_id => p_transaction_step_id
14024: ,p_name => 'P_CONT_INFORMATION7')
14025: --
14026: ,P_CONT_INFORMATION8 =>
14027: hr_transaction_api.get_VARCHAR2_value
14028: (p_transaction_step_id => p_transaction_step_id
14029: ,p_name => 'P_CONT_INFORMATION8')
14030: --
14031: ,P_CONT_INFORMATION9 =>

Line 14032: hr_transaction_api.get_VARCHAR2_value

14028: (p_transaction_step_id => p_transaction_step_id
14029: ,p_name => 'P_CONT_INFORMATION8')
14030: --
14031: ,P_CONT_INFORMATION9 =>
14032: hr_transaction_api.get_VARCHAR2_value
14033: (p_transaction_step_id => p_transaction_step_id
14034: ,p_name => 'P_CONT_INFORMATION9')
14035: --
14036: ,P_CONT_INFORMATION10 =>

Line 14037: hr_transaction_api.get_VARCHAR2_value

14033: (p_transaction_step_id => p_transaction_step_id
14034: ,p_name => 'P_CONT_INFORMATION9')
14035: --
14036: ,P_CONT_INFORMATION10 =>
14037: hr_transaction_api.get_VARCHAR2_value
14038: (p_transaction_step_id => p_transaction_step_id
14039: ,p_name => 'P_CONT_INFORMATION10')
14040: --
14041: ,P_CONT_INFORMATION11 =>

Line 14042: hr_transaction_api.get_VARCHAR2_value

14038: (p_transaction_step_id => p_transaction_step_id
14039: ,p_name => 'P_CONT_INFORMATION10')
14040: --
14041: ,P_CONT_INFORMATION11 =>
14042: hr_transaction_api.get_VARCHAR2_value
14043: (p_transaction_step_id => p_transaction_step_id
14044: ,p_name => 'P_CONT_INFORMATION11')
14045: --
14046: ,P_CONT_INFORMATION12 =>

Line 14047: hr_transaction_api.get_VARCHAR2_value

14043: (p_transaction_step_id => p_transaction_step_id
14044: ,p_name => 'P_CONT_INFORMATION11')
14045: --
14046: ,P_CONT_INFORMATION12 =>
14047: hr_transaction_api.get_VARCHAR2_value
14048: (p_transaction_step_id => p_transaction_step_id
14049: ,p_name => 'P_CONT_INFORMATION12')
14050: --
14051: ,P_CONT_INFORMATION13 =>

Line 14052: hr_transaction_api.get_VARCHAR2_value

14048: (p_transaction_step_id => p_transaction_step_id
14049: ,p_name => 'P_CONT_INFORMATION12')
14050: --
14051: ,P_CONT_INFORMATION13 =>
14052: hr_transaction_api.get_VARCHAR2_value
14053: (p_transaction_step_id => p_transaction_step_id
14054: ,p_name => 'P_CONT_INFORMATION13')
14055: --
14056: ,P_CONT_INFORMATION14 =>

Line 14057: hr_transaction_api.get_VARCHAR2_value

14053: (p_transaction_step_id => p_transaction_step_id
14054: ,p_name => 'P_CONT_INFORMATION13')
14055: --
14056: ,P_CONT_INFORMATION14 =>
14057: hr_transaction_api.get_VARCHAR2_value
14058: (p_transaction_step_id => p_transaction_step_id
14059: ,p_name => 'P_CONT_INFORMATION14')
14060: --
14061: ,P_CONT_INFORMATION15 =>

Line 14062: hr_transaction_api.get_VARCHAR2_value

14058: (p_transaction_step_id => p_transaction_step_id
14059: ,p_name => 'P_CONT_INFORMATION14')
14060: --
14061: ,P_CONT_INFORMATION15 =>
14062: hr_transaction_api.get_VARCHAR2_value
14063: (p_transaction_step_id => p_transaction_step_id
14064: ,p_name => 'P_CONT_INFORMATION15')
14065: --
14066: ,P_CONT_INFORMATION16 =>

Line 14067: hr_transaction_api.get_VARCHAR2_value

14063: (p_transaction_step_id => p_transaction_step_id
14064: ,p_name => 'P_CONT_INFORMATION15')
14065: --
14066: ,P_CONT_INFORMATION16 =>
14067: hr_transaction_api.get_VARCHAR2_value
14068: (p_transaction_step_id => p_transaction_step_id
14069: ,p_name => 'P_CONT_INFORMATION16')
14070: --
14071: ,P_CONT_INFORMATION17 =>

Line 14072: hr_transaction_api.get_VARCHAR2_value

14068: (p_transaction_step_id => p_transaction_step_id
14069: ,p_name => 'P_CONT_INFORMATION16')
14070: --
14071: ,P_CONT_INFORMATION17 =>
14072: hr_transaction_api.get_VARCHAR2_value
14073: (p_transaction_step_id => p_transaction_step_id
14074: ,p_name => 'P_CONT_INFORMATION17')
14075: --
14076: ,P_CONT_INFORMATION18 =>

Line 14077: hr_transaction_api.get_VARCHAR2_value

14073: (p_transaction_step_id => p_transaction_step_id
14074: ,p_name => 'P_CONT_INFORMATION17')
14075: --
14076: ,P_CONT_INFORMATION18 =>
14077: hr_transaction_api.get_VARCHAR2_value
14078: (p_transaction_step_id => p_transaction_step_id
14079: ,p_name => 'P_CONT_INFORMATION18')
14080: --
14081: ,P_CONT_INFORMATION19 =>

Line 14082: hr_transaction_api.get_VARCHAR2_value

14078: (p_transaction_step_id => p_transaction_step_id
14079: ,p_name => 'P_CONT_INFORMATION18')
14080: --
14081: ,P_CONT_INFORMATION19 =>
14082: hr_transaction_api.get_VARCHAR2_value
14083: (p_transaction_step_id => p_transaction_step_id
14084: ,p_name => 'P_CONT_INFORMATION19')
14085: --
14086: ,P_CONT_INFORMATION20 =>

Line 14087: hr_transaction_api.get_VARCHAR2_value

14083: (p_transaction_step_id => p_transaction_step_id
14084: ,p_name => 'P_CONT_INFORMATION19')
14085: --
14086: ,P_CONT_INFORMATION20 =>
14087: hr_transaction_api.get_VARCHAR2_value
14088: (p_transaction_step_id => p_transaction_step_id
14089: ,p_name => 'P_CONT_INFORMATION20')
14090: --
14091: ,P_OBJECT_VERSION_NUMBER => l_ovn

Line 14098: hr_transaction_api.get_VARCHAR2_value

14094: end if;
14095: ELSE
14096: --
14097: l_contact_type :=
14098: hr_transaction_api.get_VARCHAR2_value
14099: (p_transaction_step_id => p_transaction_step_id
14100: ,p_name => 'P_CONTACT_TYPE') ;
14101:
14102: --

Line 14104: hr_transaction_api.get_VARCHAR2_value

14100: ,p_name => 'P_CONTACT_TYPE') ;
14101:
14102: --
14103: l_personal_flag :=
14104: hr_transaction_api.get_VARCHAR2_value
14105: (p_transaction_step_id => p_transaction_step_id
14106: ,p_name => 'P_PERSONAL_FLAG') ;
14107: --
14108: if l_contact_operation = 'EMER_CR_NEW_REL' then

Line 14123: hr_transaction_api.get_number_value

14119: if l_contact_operation in ( 'EMER_CR_NEW_REL', 'DPDNT_CR_NEW_REL') then
14120: --
14121:
14122: open get_other_relid_ovn(
14123: hr_transaction_api.get_number_value
14124: (p_transaction_step_id => p_transaction_step_id
14125: ,p_name => 'P_CONTACT_PERSON_ID')
14126: ,hr_transaction_api.get_number_value
14127: (p_transaction_step_id => p_transaction_step_id

Line 14126: ,hr_transaction_api.get_number_value

14122: open get_other_relid_ovn(
14123: hr_transaction_api.get_number_value
14124: (p_transaction_step_id => p_transaction_step_id
14125: ,p_name => 'P_CONTACT_PERSON_ID')
14126: ,hr_transaction_api.get_number_value
14127: (p_transaction_step_id => p_transaction_step_id
14128: ,p_name => 'P_PERSON_ID'));
14129: fetch get_other_relid_ovn into l_other_relid, l_other_ovn;
14130: if get_other_relid_ovn%found then

Line 14140: hr_transaction_api.get_VARCHAR2_value

14136:
14137: ,P_CONTACT_RELATIONSHIP_ID => l_other_relid
14138: --
14139: ,P_CONTACT_TYPE =>
14140: hr_transaction_api.get_VARCHAR2_value
14141: (p_transaction_step_id => p_transaction_step_id
14142: ,p_name => 'P_CONTACT_TYPE')
14143: --
14144: ,P_COMMENTS =>

Line 14145: hr_transaction_api.get_VARCHAR2_value

14141: (p_transaction_step_id => p_transaction_step_id
14142: ,p_name => 'P_CONTACT_TYPE')
14143: --
14144: ,P_COMMENTS =>
14145: hr_transaction_api.get_VARCHAR2_value
14146: (p_transaction_step_id => p_transaction_step_id
14147: ,p_name => 'P_CTR_COMMENTS')
14148:
14149: ,P_THIRD_PARTY_PAY_FLAG =>

Line 14150: hr_transaction_api.get_VARCHAR2_value

14146: (p_transaction_step_id => p_transaction_step_id
14147: ,p_name => 'P_CTR_COMMENTS')
14148:
14149: ,P_THIRD_PARTY_PAY_FLAG =>
14150: hr_transaction_api.get_VARCHAR2_value
14151: (p_transaction_step_id => p_transaction_step_id
14152: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
14153: --
14154: ,P_BONDHOLDER_FLAG =>

Line 14155: hr_transaction_api.get_VARCHAR2_value

14151: (p_transaction_step_id => p_transaction_step_id
14152: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
14153: --
14154: ,P_BONDHOLDER_FLAG =>
14155: hr_transaction_api.get_VARCHAR2_value
14156: (p_transaction_step_id => p_transaction_step_id
14157: ,p_name => 'P_BONDHOLDER_FLAG')
14158: --
14159: ,P_DATE_START =>

Line 14160: hr_transaction_api.get_DATE_value

14156: (p_transaction_step_id => p_transaction_step_id
14157: ,p_name => 'P_BONDHOLDER_FLAG')
14158: --
14159: ,P_DATE_START =>
14160: hr_transaction_api.get_DATE_value
14161: (p_transaction_step_id => p_transaction_step_id
14162: ,p_name => 'P_DATE_START')
14163: --
14164: -- bug 4775133 ,P_START_LIFE_REASON_ID =>

Line 14165: -- hr_transaction_api.get_NUMBER_value

14161: (p_transaction_step_id => p_transaction_step_id
14162: ,p_name => 'P_DATE_START')
14163: --
14164: -- bug 4775133 ,P_START_LIFE_REASON_ID =>
14165: -- hr_transaction_api.get_NUMBER_value
14166: -- (p_transaction_step_id => p_transaction_step_id
14167: -- ,p_name => 'P_START_LIFE_REASON_ID')
14168: --
14169: ,P_DATE_END =>

Line 14170: hr_transaction_api.get_DATE_value

14166: -- (p_transaction_step_id => p_transaction_step_id
14167: -- ,p_name => 'P_START_LIFE_REASON_ID')
14168: --
14169: ,P_DATE_END =>
14170: hr_transaction_api.get_DATE_value
14171: (p_transaction_step_id => p_transaction_step_id
14172: ,p_name => 'P_DATE_END')
14173: --
14174: ,P_END_LIFE_REASON_ID =>

Line 14175: hr_transaction_api.get_NUMBER_value

14171: (p_transaction_step_id => p_transaction_step_id
14172: ,p_name => 'P_DATE_END')
14173: --
14174: ,P_END_LIFE_REASON_ID =>
14175: hr_transaction_api.get_NUMBER_value
14176: (p_transaction_step_id => p_transaction_step_id
14177: ,p_name => 'P_END_LIFE_REASON_ID')
14178: --
14179: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 14180: hr_transaction_api.get_VARCHAR2_value

14176: (p_transaction_step_id => p_transaction_step_id
14177: ,p_name => 'P_END_LIFE_REASON_ID')
14178: --
14179: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
14180: hr_transaction_api.get_VARCHAR2_value
14181: (p_transaction_step_id => p_transaction_step_id
14182: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
14183: --
14184: ,P_PERSONAL_FLAG => 'Y'

Line 14187: hr_transaction_api.get_VARCHAR2_value

14183: --
14184: ,P_PERSONAL_FLAG => 'Y'
14185: --
14186: ,P_DEPENDENT_FLAG =>
14187: hr_transaction_api.get_VARCHAR2_value
14188: (p_transaction_step_id => p_transaction_step_id
14189: ,p_name => 'P_DEPENDENT_FLAG')
14190: --
14191: ,P_BENEFICIARY_FLAG =>

Line 14192: hr_transaction_api.get_VARCHAR2_value

14188: (p_transaction_step_id => p_transaction_step_id
14189: ,p_name => 'P_DEPENDENT_FLAG')
14190: --
14191: ,P_BENEFICIARY_FLAG =>
14192: hr_transaction_api.get_VARCHAR2_value
14193: (p_transaction_step_id => p_transaction_step_id
14194: ,p_name => 'P_BENEFICIARY_FLAG')
14195: --
14196: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 14197: hr_transaction_api.get_VARCHAR2_value

14193: (p_transaction_step_id => p_transaction_step_id
14194: ,p_name => 'P_BENEFICIARY_FLAG')
14195: --
14196: ,P_CONT_ATTRIBUTE_CATEGORY =>
14197: hr_transaction_api.get_VARCHAR2_value
14198: (p_transaction_step_id => p_transaction_step_id
14199: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
14200: --
14201: ,P_CONT_ATTRIBUTE1 =>

Line 14202: hr_transaction_api.get_VARCHAR2_value

14198: (p_transaction_step_id => p_transaction_step_id
14199: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
14200: --
14201: ,P_CONT_ATTRIBUTE1 =>
14202: hr_transaction_api.get_VARCHAR2_value
14203: (p_transaction_step_id => p_transaction_step_id
14204: ,p_name => 'P_CONT_ATTRIBUTE1')
14205: --
14206: ,P_CONT_ATTRIBUTE2 =>

Line 14207: hr_transaction_api.get_VARCHAR2_value

14203: (p_transaction_step_id => p_transaction_step_id
14204: ,p_name => 'P_CONT_ATTRIBUTE1')
14205: --
14206: ,P_CONT_ATTRIBUTE2 =>
14207: hr_transaction_api.get_VARCHAR2_value
14208: (p_transaction_step_id => p_transaction_step_id
14209: ,p_name => 'P_CONT_ATTRIBUTE2')
14210: --
14211: ,P_CONT_ATTRIBUTE3 =>

Line 14212: hr_transaction_api.get_VARCHAR2_value

14208: (p_transaction_step_id => p_transaction_step_id
14209: ,p_name => 'P_CONT_ATTRIBUTE2')
14210: --
14211: ,P_CONT_ATTRIBUTE3 =>
14212: hr_transaction_api.get_VARCHAR2_value
14213: (p_transaction_step_id => p_transaction_step_id
14214: ,p_name => 'P_CONT_ATTRIBUTE3')
14215: --
14216: ,P_CONT_ATTRIBUTE4 =>

Line 14217: hr_transaction_api.get_VARCHAR2_value

14213: (p_transaction_step_id => p_transaction_step_id
14214: ,p_name => 'P_CONT_ATTRIBUTE3')
14215: --
14216: ,P_CONT_ATTRIBUTE4 =>
14217: hr_transaction_api.get_VARCHAR2_value
14218: (p_transaction_step_id => p_transaction_step_id
14219: ,p_name => 'P_CONT_ATTRIBUTE4')
14220: --
14221: ,P_CONT_ATTRIBUTE5 =>

Line 14222: hr_transaction_api.get_VARCHAR2_value

14218: (p_transaction_step_id => p_transaction_step_id
14219: ,p_name => 'P_CONT_ATTRIBUTE4')
14220: --
14221: ,P_CONT_ATTRIBUTE5 =>
14222: hr_transaction_api.get_VARCHAR2_value
14223: (p_transaction_step_id => p_transaction_step_id
14224: ,p_name => 'P_CONT_ATTRIBUTE5')
14225: --
14226: ,P_CONT_ATTRIBUTE6 =>

Line 14227: hr_transaction_api.get_VARCHAR2_value

14223: (p_transaction_step_id => p_transaction_step_id
14224: ,p_name => 'P_CONT_ATTRIBUTE5')
14225: --
14226: ,P_CONT_ATTRIBUTE6 =>
14227: hr_transaction_api.get_VARCHAR2_value
14228: (p_transaction_step_id => p_transaction_step_id
14229: ,p_name => 'P_CONT_ATTRIBUTE6')
14230: --
14231: ,P_CONT_ATTRIBUTE7 =>

Line 14232: hr_transaction_api.get_VARCHAR2_value

14228: (p_transaction_step_id => p_transaction_step_id
14229: ,p_name => 'P_CONT_ATTRIBUTE6')
14230: --
14231: ,P_CONT_ATTRIBUTE7 =>
14232: hr_transaction_api.get_VARCHAR2_value
14233: (p_transaction_step_id => p_transaction_step_id
14234: ,p_name => 'P_CONT_ATTRIBUTE7')
14235: --
14236: ,P_CONT_ATTRIBUTE8 =>

Line 14237: hr_transaction_api.get_VARCHAR2_value

14233: (p_transaction_step_id => p_transaction_step_id
14234: ,p_name => 'P_CONT_ATTRIBUTE7')
14235: --
14236: ,P_CONT_ATTRIBUTE8 =>
14237: hr_transaction_api.get_VARCHAR2_value
14238: (p_transaction_step_id => p_transaction_step_id
14239: ,p_name => 'P_CONT_ATTRIBUTE8')
14240: --
14241: ,P_CONT_ATTRIBUTE9 =>

Line 14242: hr_transaction_api.get_VARCHAR2_value

14238: (p_transaction_step_id => p_transaction_step_id
14239: ,p_name => 'P_CONT_ATTRIBUTE8')
14240: --
14241: ,P_CONT_ATTRIBUTE9 =>
14242: hr_transaction_api.get_VARCHAR2_value
14243: (p_transaction_step_id => p_transaction_step_id
14244: ,p_name => 'P_CONT_ATTRIBUTE9')
14245: --
14246: ,P_CONT_ATTRIBUTE10 =>

Line 14247: hr_transaction_api.get_VARCHAR2_value

14243: (p_transaction_step_id => p_transaction_step_id
14244: ,p_name => 'P_CONT_ATTRIBUTE9')
14245: --
14246: ,P_CONT_ATTRIBUTE10 =>
14247: hr_transaction_api.get_VARCHAR2_value
14248: (p_transaction_step_id => p_transaction_step_id
14249: ,p_name => 'P_CONT_ATTRIBUTE10')
14250: --
14251: ,P_CONT_ATTRIBUTE11 =>

Line 14252: hr_transaction_api.get_VARCHAR2_value

14248: (p_transaction_step_id => p_transaction_step_id
14249: ,p_name => 'P_CONT_ATTRIBUTE10')
14250: --
14251: ,P_CONT_ATTRIBUTE11 =>
14252: hr_transaction_api.get_VARCHAR2_value
14253: (p_transaction_step_id => p_transaction_step_id
14254: ,p_name => 'P_CONT_ATTRIBUTE11')
14255: --
14256: ,P_CONT_ATTRIBUTE12 =>

Line 14257: hr_transaction_api.get_VARCHAR2_value

14253: (p_transaction_step_id => p_transaction_step_id
14254: ,p_name => 'P_CONT_ATTRIBUTE11')
14255: --
14256: ,P_CONT_ATTRIBUTE12 =>
14257: hr_transaction_api.get_VARCHAR2_value
14258: (p_transaction_step_id => p_transaction_step_id
14259: ,p_name => 'P_CONT_ATTRIBUTE12')
14260: --
14261: ,P_CONT_ATTRIBUTE13 =>

Line 14262: hr_transaction_api.get_VARCHAR2_value

14258: (p_transaction_step_id => p_transaction_step_id
14259: ,p_name => 'P_CONT_ATTRIBUTE12')
14260: --
14261: ,P_CONT_ATTRIBUTE13 =>
14262: hr_transaction_api.get_VARCHAR2_value
14263: (p_transaction_step_id => p_transaction_step_id
14264: ,p_name => 'P_CONT_ATTRIBUTE13')
14265: --
14266: ,P_CONT_ATTRIBUTE14 =>

Line 14267: hr_transaction_api.get_VARCHAR2_value

14263: (p_transaction_step_id => p_transaction_step_id
14264: ,p_name => 'P_CONT_ATTRIBUTE13')
14265: --
14266: ,P_CONT_ATTRIBUTE14 =>
14267: hr_transaction_api.get_VARCHAR2_value
14268: (p_transaction_step_id => p_transaction_step_id
14269: ,p_name => 'P_CONT_ATTRIBUTE14')
14270: --
14271: ,P_CONT_ATTRIBUTE15 =>

Line 14272: hr_transaction_api.get_VARCHAR2_value

14268: (p_transaction_step_id => p_transaction_step_id
14269: ,p_name => 'P_CONT_ATTRIBUTE14')
14270: --
14271: ,P_CONT_ATTRIBUTE15 =>
14272: hr_transaction_api.get_VARCHAR2_value
14273: (p_transaction_step_id => p_transaction_step_id
14274: ,p_name => 'P_CONT_ATTRIBUTE15')
14275: --
14276: ,P_CONT_ATTRIBUTE16 =>

Line 14277: hr_transaction_api.get_VARCHAR2_value

14273: (p_transaction_step_id => p_transaction_step_id
14274: ,p_name => 'P_CONT_ATTRIBUTE15')
14275: --
14276: ,P_CONT_ATTRIBUTE16 =>
14277: hr_transaction_api.get_VARCHAR2_value
14278: (p_transaction_step_id => p_transaction_step_id
14279: ,p_name => 'P_CONT_ATTRIBUTE16')
14280: --
14281: ,P_CONT_ATTRIBUTE17 =>

Line 14282: hr_transaction_api.get_VARCHAR2_value

14278: (p_transaction_step_id => p_transaction_step_id
14279: ,p_name => 'P_CONT_ATTRIBUTE16')
14280: --
14281: ,P_CONT_ATTRIBUTE17 =>
14282: hr_transaction_api.get_VARCHAR2_value
14283: (p_transaction_step_id => p_transaction_step_id
14284: ,p_name => 'P_CONT_ATTRIBUTE17')
14285: --
14286: ,P_CONT_ATTRIBUTE18 =>

Line 14287: hr_transaction_api.get_VARCHAR2_value

14283: (p_transaction_step_id => p_transaction_step_id
14284: ,p_name => 'P_CONT_ATTRIBUTE17')
14285: --
14286: ,P_CONT_ATTRIBUTE18 =>
14287: hr_transaction_api.get_VARCHAR2_value
14288: (p_transaction_step_id => p_transaction_step_id
14289: ,p_name => 'P_CONT_ATTRIBUTE18')
14290: --
14291: ,P_CONT_ATTRIBUTE19 =>

Line 14292: hr_transaction_api.get_VARCHAR2_value

14288: (p_transaction_step_id => p_transaction_step_id
14289: ,p_name => 'P_CONT_ATTRIBUTE18')
14290: --
14291: ,P_CONT_ATTRIBUTE19 =>
14292: hr_transaction_api.get_VARCHAR2_value
14293: (p_transaction_step_id => p_transaction_step_id
14294: ,p_name => 'P_CONT_ATTRIBUTE19')
14295: --
14296: ,P_CONT_ATTRIBUTE20 =>

Line 14297: hr_transaction_api.get_VARCHAR2_value

14293: (p_transaction_step_id => p_transaction_step_id
14294: ,p_name => 'P_CONT_ATTRIBUTE19')
14295: --
14296: ,P_CONT_ATTRIBUTE20 =>
14297: hr_transaction_api.get_VARCHAR2_value
14298: (p_transaction_step_id => p_transaction_step_id
14299: ,p_name => 'P_CONT_ATTRIBUTE20')
14300: --
14301: ,P_CONT_INFORMATION_CATEGORY =>

Line 14302: hr_transaction_api.get_VARCHAR2_value

14298: (p_transaction_step_id => p_transaction_step_id
14299: ,p_name => 'P_CONT_ATTRIBUTE20')
14300: --
14301: ,P_CONT_INFORMATION_CATEGORY =>
14302: hr_transaction_api.get_VARCHAR2_value
14303: (p_transaction_step_id => p_transaction_step_id
14304: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
14305: --
14306: ,P_CONT_INFORMATION1 =>

Line 14307: hr_transaction_api.get_VARCHAR2_value

14303: (p_transaction_step_id => p_transaction_step_id
14304: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
14305: --
14306: ,P_CONT_INFORMATION1 =>
14307: hr_transaction_api.get_VARCHAR2_value
14308: (p_transaction_step_id => p_transaction_step_id
14309: ,p_name => 'P_CONT_INFORMATION1')
14310: --
14311: ,P_CONT_INFORMATION2 =>

Line 14312: hr_transaction_api.get_VARCHAR2_value

14308: (p_transaction_step_id => p_transaction_step_id
14309: ,p_name => 'P_CONT_INFORMATION1')
14310: --
14311: ,P_CONT_INFORMATION2 =>
14312: hr_transaction_api.get_VARCHAR2_value
14313: (p_transaction_step_id => p_transaction_step_id
14314: ,p_name => 'P_CONT_INFORMATION2')
14315: --
14316: ,P_CONT_INFORMATION3 =>

Line 14317: hr_transaction_api.get_VARCHAR2_value

14313: (p_transaction_step_id => p_transaction_step_id
14314: ,p_name => 'P_CONT_INFORMATION2')
14315: --
14316: ,P_CONT_INFORMATION3 =>
14317: hr_transaction_api.get_VARCHAR2_value
14318: (p_transaction_step_id => p_transaction_step_id
14319: ,p_name => 'P_CONT_INFORMATION3')
14320: --
14321: ,P_CONT_INFORMATION4 =>

Line 14322: hr_transaction_api.get_VARCHAR2_value

14318: (p_transaction_step_id => p_transaction_step_id
14319: ,p_name => 'P_CONT_INFORMATION3')
14320: --
14321: ,P_CONT_INFORMATION4 =>
14322: hr_transaction_api.get_VARCHAR2_value
14323: (p_transaction_step_id => p_transaction_step_id
14324: ,p_name => 'P_CONT_INFORMATION4')
14325: --
14326: ,P_CONT_INFORMATION5 =>

Line 14327: hr_transaction_api.get_VARCHAR2_value

14323: (p_transaction_step_id => p_transaction_step_id
14324: ,p_name => 'P_CONT_INFORMATION4')
14325: --
14326: ,P_CONT_INFORMATION5 =>
14327: hr_transaction_api.get_VARCHAR2_value
14328: (p_transaction_step_id => p_transaction_step_id
14329: ,p_name => 'P_CONT_INFORMATION5')
14330: --
14331: ,P_CONT_INFORMATION6 =>

Line 14332: hr_transaction_api.get_VARCHAR2_value

14328: (p_transaction_step_id => p_transaction_step_id
14329: ,p_name => 'P_CONT_INFORMATION5')
14330: --
14331: ,P_CONT_INFORMATION6 =>
14332: hr_transaction_api.get_VARCHAR2_value
14333: (p_transaction_step_id => p_transaction_step_id
14334: ,p_name => 'P_CONT_INFORMATION6')
14335: --
14336: ,P_CONT_INFORMATION7 =>

Line 14337: hr_transaction_api.get_VARCHAR2_value

14333: (p_transaction_step_id => p_transaction_step_id
14334: ,p_name => 'P_CONT_INFORMATION6')
14335: --
14336: ,P_CONT_INFORMATION7 =>
14337: hr_transaction_api.get_VARCHAR2_value
14338: (p_transaction_step_id => p_transaction_step_id
14339: ,p_name => 'P_CONT_INFORMATION7')
14340: --
14341: ,P_CONT_INFORMATION8 =>

Line 14342: hr_transaction_api.get_VARCHAR2_value

14338: (p_transaction_step_id => p_transaction_step_id
14339: ,p_name => 'P_CONT_INFORMATION7')
14340: --
14341: ,P_CONT_INFORMATION8 =>
14342: hr_transaction_api.get_VARCHAR2_value
14343: (p_transaction_step_id => p_transaction_step_id
14344: ,p_name => 'P_CONT_INFORMATION8')
14345: --
14346: ,P_CONT_INFORMATION9 =>

Line 14347: hr_transaction_api.get_VARCHAR2_value

14343: (p_transaction_step_id => p_transaction_step_id
14344: ,p_name => 'P_CONT_INFORMATION8')
14345: --
14346: ,P_CONT_INFORMATION9 =>
14347: hr_transaction_api.get_VARCHAR2_value
14348: (p_transaction_step_id => p_transaction_step_id
14349: ,p_name => 'P_CONT_INFORMATION9')
14350: --
14351: ,P_CONT_INFORMATION10 =>

Line 14352: hr_transaction_api.get_VARCHAR2_value

14348: (p_transaction_step_id => p_transaction_step_id
14349: ,p_name => 'P_CONT_INFORMATION9')
14350: --
14351: ,P_CONT_INFORMATION10 =>
14352: hr_transaction_api.get_VARCHAR2_value
14353: (p_transaction_step_id => p_transaction_step_id
14354: ,p_name => 'P_CONT_INFORMATION10')
14355: --
14356: ,P_CONT_INFORMATION11 =>

Line 14357: hr_transaction_api.get_VARCHAR2_value

14353: (p_transaction_step_id => p_transaction_step_id
14354: ,p_name => 'P_CONT_INFORMATION10')
14355: --
14356: ,P_CONT_INFORMATION11 =>
14357: hr_transaction_api.get_VARCHAR2_value
14358: (p_transaction_step_id => p_transaction_step_id
14359: ,p_name => 'P_CONT_INFORMATION11')
14360: --
14361: ,P_CONT_INFORMATION12 =>

Line 14362: hr_transaction_api.get_VARCHAR2_value

14358: (p_transaction_step_id => p_transaction_step_id
14359: ,p_name => 'P_CONT_INFORMATION11')
14360: --
14361: ,P_CONT_INFORMATION12 =>
14362: hr_transaction_api.get_VARCHAR2_value
14363: (p_transaction_step_id => p_transaction_step_id
14364: ,p_name => 'P_CONT_INFORMATION12')
14365: --
14366: ,P_CONT_INFORMATION13 =>

Line 14367: hr_transaction_api.get_VARCHAR2_value

14363: (p_transaction_step_id => p_transaction_step_id
14364: ,p_name => 'P_CONT_INFORMATION12')
14365: --
14366: ,P_CONT_INFORMATION13 =>
14367: hr_transaction_api.get_VARCHAR2_value
14368: (p_transaction_step_id => p_transaction_step_id
14369: ,p_name => 'P_CONT_INFORMATION13')
14370: --
14371: ,P_CONT_INFORMATION14 =>

Line 14372: hr_transaction_api.get_VARCHAR2_value

14368: (p_transaction_step_id => p_transaction_step_id
14369: ,p_name => 'P_CONT_INFORMATION13')
14370: --
14371: ,P_CONT_INFORMATION14 =>
14372: hr_transaction_api.get_VARCHAR2_value
14373: (p_transaction_step_id => p_transaction_step_id
14374: ,p_name => 'P_CONT_INFORMATION14')
14375: --
14376: ,P_CONT_INFORMATION15 =>

Line 14377: hr_transaction_api.get_VARCHAR2_value

14373: (p_transaction_step_id => p_transaction_step_id
14374: ,p_name => 'P_CONT_INFORMATION14')
14375: --
14376: ,P_CONT_INFORMATION15 =>
14377: hr_transaction_api.get_VARCHAR2_value
14378: (p_transaction_step_id => p_transaction_step_id
14379: ,p_name => 'P_CONT_INFORMATION15')
14380: --
14381: ,P_CONT_INFORMATION16 =>

Line 14382: hr_transaction_api.get_VARCHAR2_value

14378: (p_transaction_step_id => p_transaction_step_id
14379: ,p_name => 'P_CONT_INFORMATION15')
14380: --
14381: ,P_CONT_INFORMATION16 =>
14382: hr_transaction_api.get_VARCHAR2_value
14383: (p_transaction_step_id => p_transaction_step_id
14384: ,p_name => 'P_CONT_INFORMATION16')
14385: --
14386: ,P_CONT_INFORMATION17 =>

Line 14387: hr_transaction_api.get_VARCHAR2_value

14383: (p_transaction_step_id => p_transaction_step_id
14384: ,p_name => 'P_CONT_INFORMATION16')
14385: --
14386: ,P_CONT_INFORMATION17 =>
14387: hr_transaction_api.get_VARCHAR2_value
14388: (p_transaction_step_id => p_transaction_step_id
14389: ,p_name => 'P_CONT_INFORMATION17')
14390: --
14391: ,P_CONT_INFORMATION18 =>

Line 14392: hr_transaction_api.get_VARCHAR2_value

14388: (p_transaction_step_id => p_transaction_step_id
14389: ,p_name => 'P_CONT_INFORMATION17')
14390: --
14391: ,P_CONT_INFORMATION18 =>
14392: hr_transaction_api.get_VARCHAR2_value
14393: (p_transaction_step_id => p_transaction_step_id
14394: ,p_name => 'P_CONT_INFORMATION18')
14395: --
14396: ,P_CONT_INFORMATION19 =>

Line 14397: hr_transaction_api.get_VARCHAR2_value

14393: (p_transaction_step_id => p_transaction_step_id
14394: ,p_name => 'P_CONT_INFORMATION18')
14395: --
14396: ,P_CONT_INFORMATION19 =>
14397: hr_transaction_api.get_VARCHAR2_value
14398: (p_transaction_step_id => p_transaction_step_id
14399: ,p_name => 'P_CONT_INFORMATION19')
14400: --
14401: ,P_CONT_INFORMATION20 =>

Line 14402: hr_transaction_api.get_VARCHAR2_value

14398: (p_transaction_step_id => p_transaction_step_id
14399: ,p_name => 'P_CONT_INFORMATION19')
14400: --
14401: ,P_CONT_INFORMATION20 =>
14402: hr_transaction_api.get_VARCHAR2_value
14403: (p_transaction_step_id => p_transaction_step_id
14404: ,p_name => 'P_CONT_INFORMATION20')
14405: --
14406: ,P_OBJECT_VERSION_NUMBER => l_other_ovn

Line 14413: z_primary_contact_flag := hr_transaction_api.get_VARCHAR2_value

14409: end if;
14410: close get_other_relid_ovn;
14411:
14412: -- 9564383 starts
14413: z_primary_contact_flag := hr_transaction_api.get_VARCHAR2_value
14414: (p_transaction_step_id => p_transaction_step_id
14415: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
14416: z_date_start := hr_transaction_api.get_DATE_value
14417: (p_transaction_step_id => p_transaction_step_id

Line 14416: z_date_start := hr_transaction_api.get_DATE_value

14412: -- 9564383 starts
14413: z_primary_contact_flag := hr_transaction_api.get_VARCHAR2_value
14414: (p_transaction_step_id => p_transaction_step_id
14415: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
14416: z_date_start := hr_transaction_api.get_DATE_value
14417: (p_transaction_step_id => p_transaction_step_id
14418: ,p_name => 'P_DATE_START');
14419: z_date_end := hr_transaction_api.get_DATE_value
14420: (p_transaction_step_id => p_transaction_step_id

Line 14419: z_date_end := hr_transaction_api.get_DATE_value

14415: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
14416: z_date_start := hr_transaction_api.get_DATE_value
14417: (p_transaction_step_id => p_transaction_step_id
14418: ,p_name => 'P_DATE_START');
14419: z_date_end := hr_transaction_api.get_DATE_value
14420: (p_transaction_step_id => p_transaction_step_id
14421: ,p_name => 'P_DATE_END');
14422: z_person_id := hr_transaction_api.get_number_value
14423: (p_transaction_step_id => p_transaction_step_id

Line 14422: z_person_id := hr_transaction_api.get_number_value

14418: ,p_name => 'P_DATE_START');
14419: z_date_end := hr_transaction_api.get_DATE_value
14420: (p_transaction_step_id => p_transaction_step_id
14421: ,p_name => 'P_DATE_END');
14422: z_person_id := hr_transaction_api.get_number_value
14423: (p_transaction_step_id => p_transaction_step_id
14424: ,p_name =>upper('p_person_id'));
14425: if (z_primary_contact_flag = 'Y') then
14426: open csr_chk_primary_cnt;

Line 14440: hr_transaction_api.get_DATE_value

14436: P_VALIDATE => p_validate
14437: --
14438: ,P_START_DATE => l_effective_date
14439: /*
14440: hr_transaction_api.get_DATE_value
14441: (p_transaction_step_id => p_transaction_step_id
14442: ,p_name => 'P_CONT_EFFECTIVE_DATE')
14443: */
14444: --

Line 14446: hr_transaction_api.get_NUMBER_value

14442: ,p_name => 'P_CONT_EFFECTIVE_DATE')
14443: */
14444: --
14445: ,P_BUSINESS_GROUP_ID =>
14446: hr_transaction_api.get_NUMBER_value
14447: (p_transaction_step_id => p_transaction_step_id
14448: ,p_name => 'P_BUSINESS_GROUP_ID')
14449: --
14450: ,P_PERSON_ID =>

Line 14451: hr_transaction_api.get_number_value

14447: (p_transaction_step_id => p_transaction_step_id
14448: ,p_name => 'P_BUSINESS_GROUP_ID')
14449: --
14450: ,P_PERSON_ID =>
14451: hr_transaction_api.get_number_value
14452: (p_transaction_step_id => p_transaction_step_id
14453: ,p_name =>upper('p_person_id'))
14454: --
14455: ,P_CONTACT_PERSON_ID =>

Line 14456: hr_transaction_api.get_number_value

14452: (p_transaction_step_id => p_transaction_step_id
14453: ,p_name =>upper('p_person_id'))
14454: --
14455: ,P_CONTACT_PERSON_ID =>
14456: hr_transaction_api.get_number_value
14457: (p_transaction_step_id => p_transaction_step_id
14458: ,p_name =>upper('p_cont_person_id'))
14459: --
14460: ,P_CONTACT_TYPE => l_contact_type

Line 14463: hr_transaction_api.get_VARCHAR2_value

14459: --
14460: ,P_CONTACT_TYPE => l_contact_type
14461: --
14462: ,P_CTR_COMMENTS =>
14463: hr_transaction_api.get_VARCHAR2_value
14464: (p_transaction_step_id => p_transaction_step_id
14465: ,p_name => 'P_CTR_COMMENTS')
14466: --
14467: ,P_PRIMARY_CONTACT_FLAG =>

Line 14468: hr_transaction_api.get_VARCHAR2_value

14464: (p_transaction_step_id => p_transaction_step_id
14465: ,p_name => 'P_CTR_COMMENTS')
14466: --
14467: ,P_PRIMARY_CONTACT_FLAG =>
14468: hr_transaction_api.get_VARCHAR2_value
14469: (p_transaction_step_id => p_transaction_step_id
14470: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
14471: --
14472: ,P_DATE_START => z_date_start

Line 14475: hr_transaction_api.get_NUMBER_value

14471: --
14472: ,P_DATE_START => z_date_start
14473: --
14474: ,P_START_LIFE_REASON_ID =>
14475: hr_transaction_api.get_NUMBER_value
14476: (p_transaction_step_id => p_transaction_step_id
14477: ,p_name => 'P_START_LIFE_REASON_ID')
14478: --
14479: ,P_DATE_END =>

Line 14480: hr_transaction_api.get_DATE_value

14476: (p_transaction_step_id => p_transaction_step_id
14477: ,p_name => 'P_START_LIFE_REASON_ID')
14478: --
14479: ,P_DATE_END =>
14480: hr_transaction_api.get_DATE_value
14481: (p_transaction_step_id => p_transaction_step_id
14482: ,p_name => 'P_DATE_END')
14483: --
14484: ,P_END_LIFE_REASON_ID =>

Line 14485: hr_transaction_api.get_NUMBER_value

14481: (p_transaction_step_id => p_transaction_step_id
14482: ,p_name => 'P_DATE_END')
14483: --
14484: ,P_END_LIFE_REASON_ID =>
14485: hr_transaction_api.get_NUMBER_value
14486: (p_transaction_step_id => p_transaction_step_id
14487: ,p_name => 'P_END_LIFE_REASON_ID')
14488: --
14489: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 14490: hr_transaction_api.get_VARCHAR2_value

14486: (p_transaction_step_id => p_transaction_step_id
14487: ,p_name => 'P_END_LIFE_REASON_ID')
14488: --
14489: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
14490: hr_transaction_api.get_VARCHAR2_value
14491: (p_transaction_step_id => p_transaction_step_id
14492: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
14493: --
14494: ,P_PERSONAL_FLAG => l_personal_flag

Line 14497: hr_transaction_api.get_NUMBER_value

14493: --
14494: ,P_PERSONAL_FLAG => l_personal_flag
14495: --
14496: ,P_SEQUENCE_NUMBER =>
14497: hr_transaction_api.get_NUMBER_value
14498: (p_transaction_step_id => p_transaction_step_id
14499: ,p_name => 'P_SEQUENCE_NUMBER')
14500: --
14501: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 14502: hr_transaction_api.get_VARCHAR2_value

14498: (p_transaction_step_id => p_transaction_step_id
14499: ,p_name => 'P_SEQUENCE_NUMBER')
14500: --
14501: ,P_CONT_ATTRIBUTE_CATEGORY =>
14502: hr_transaction_api.get_VARCHAR2_value
14503: (p_transaction_step_id => p_transaction_step_id
14504: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
14505: --
14506: ,P_CONT_ATTRIBUTE1 =>

Line 14507: hr_transaction_api.get_VARCHAR2_value

14503: (p_transaction_step_id => p_transaction_step_id
14504: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
14505: --
14506: ,P_CONT_ATTRIBUTE1 =>
14507: hr_transaction_api.get_VARCHAR2_value
14508: (p_transaction_step_id => p_transaction_step_id
14509: ,p_name => 'P_CONT_ATTRIBUTE1')
14510: --
14511: ,P_CONT_ATTRIBUTE2 =>

Line 14512: hr_transaction_api.get_VARCHAR2_value

14508: (p_transaction_step_id => p_transaction_step_id
14509: ,p_name => 'P_CONT_ATTRIBUTE1')
14510: --
14511: ,P_CONT_ATTRIBUTE2 =>
14512: hr_transaction_api.get_VARCHAR2_value
14513: (p_transaction_step_id => p_transaction_step_id
14514: ,p_name => 'P_CONT_ATTRIBUTE2')
14515: --
14516: ,P_CONT_ATTRIBUTE3 =>

Line 14517: hr_transaction_api.get_VARCHAR2_value

14513: (p_transaction_step_id => p_transaction_step_id
14514: ,p_name => 'P_CONT_ATTRIBUTE2')
14515: --
14516: ,P_CONT_ATTRIBUTE3 =>
14517: hr_transaction_api.get_VARCHAR2_value
14518: (p_transaction_step_id => p_transaction_step_id
14519: ,p_name => 'P_CONT_ATTRIBUTE3')
14520: --
14521: ,P_CONT_ATTRIBUTE4 =>

Line 14522: hr_transaction_api.get_VARCHAR2_value

14518: (p_transaction_step_id => p_transaction_step_id
14519: ,p_name => 'P_CONT_ATTRIBUTE3')
14520: --
14521: ,P_CONT_ATTRIBUTE4 =>
14522: hr_transaction_api.get_VARCHAR2_value
14523: (p_transaction_step_id => p_transaction_step_id
14524: ,p_name => 'P_CONT_ATTRIBUTE4')
14525: --
14526: ,P_CONT_ATTRIBUTE5 =>

Line 14527: hr_transaction_api.get_VARCHAR2_value

14523: (p_transaction_step_id => p_transaction_step_id
14524: ,p_name => 'P_CONT_ATTRIBUTE4')
14525: --
14526: ,P_CONT_ATTRIBUTE5 =>
14527: hr_transaction_api.get_VARCHAR2_value
14528: (p_transaction_step_id => p_transaction_step_id
14529: ,p_name => 'P_CONT_ATTRIBUTE5')
14530: --
14531: ,P_CONT_ATTRIBUTE6 =>

Line 14532: hr_transaction_api.get_VARCHAR2_value

14528: (p_transaction_step_id => p_transaction_step_id
14529: ,p_name => 'P_CONT_ATTRIBUTE5')
14530: --
14531: ,P_CONT_ATTRIBUTE6 =>
14532: hr_transaction_api.get_VARCHAR2_value
14533: (p_transaction_step_id => p_transaction_step_id
14534: ,p_name => 'P_CONT_ATTRIBUTE6')
14535: --
14536: ,P_CONT_ATTRIBUTE7 =>

Line 14537: hr_transaction_api.get_VARCHAR2_value

14533: (p_transaction_step_id => p_transaction_step_id
14534: ,p_name => 'P_CONT_ATTRIBUTE6')
14535: --
14536: ,P_CONT_ATTRIBUTE7 =>
14537: hr_transaction_api.get_VARCHAR2_value
14538: (p_transaction_step_id => p_transaction_step_id
14539: ,p_name => 'P_CONT_ATTRIBUTE7')
14540: --
14541: ,P_CONT_ATTRIBUTE8 =>

Line 14542: hr_transaction_api.get_VARCHAR2_value

14538: (p_transaction_step_id => p_transaction_step_id
14539: ,p_name => 'P_CONT_ATTRIBUTE7')
14540: --
14541: ,P_CONT_ATTRIBUTE8 =>
14542: hr_transaction_api.get_VARCHAR2_value
14543: (p_transaction_step_id => p_transaction_step_id
14544: ,p_name => 'P_CONT_ATTRIBUTE8')
14545: --
14546: ,P_CONT_ATTRIBUTE9 =>

Line 14547: hr_transaction_api.get_VARCHAR2_value

14543: (p_transaction_step_id => p_transaction_step_id
14544: ,p_name => 'P_CONT_ATTRIBUTE8')
14545: --
14546: ,P_CONT_ATTRIBUTE9 =>
14547: hr_transaction_api.get_VARCHAR2_value
14548: (p_transaction_step_id => p_transaction_step_id
14549: ,p_name => 'P_CONT_ATTRIBUTE9')
14550: --
14551: ,P_CONT_ATTRIBUTE10 =>

Line 14552: hr_transaction_api.get_VARCHAR2_value

14548: (p_transaction_step_id => p_transaction_step_id
14549: ,p_name => 'P_CONT_ATTRIBUTE9')
14550: --
14551: ,P_CONT_ATTRIBUTE10 =>
14552: hr_transaction_api.get_VARCHAR2_value
14553: (p_transaction_step_id => p_transaction_step_id
14554: ,p_name => 'P_CONT_ATTRIBUTE10')
14555: --
14556: ,P_CONT_ATTRIBUTE11 =>

Line 14557: hr_transaction_api.get_VARCHAR2_value

14553: (p_transaction_step_id => p_transaction_step_id
14554: ,p_name => 'P_CONT_ATTRIBUTE10')
14555: --
14556: ,P_CONT_ATTRIBUTE11 =>
14557: hr_transaction_api.get_VARCHAR2_value
14558: (p_transaction_step_id => p_transaction_step_id
14559: ,p_name => 'P_CONT_ATTRIBUTE11')
14560: --
14561: ,P_CONT_ATTRIBUTE12 =>

Line 14562: hr_transaction_api.get_VARCHAR2_value

14558: (p_transaction_step_id => p_transaction_step_id
14559: ,p_name => 'P_CONT_ATTRIBUTE11')
14560: --
14561: ,P_CONT_ATTRIBUTE12 =>
14562: hr_transaction_api.get_VARCHAR2_value
14563: (p_transaction_step_id => p_transaction_step_id
14564: ,p_name => 'P_CONT_ATTRIBUTE12')
14565: --
14566: ,P_CONT_ATTRIBUTE13 =>

Line 14567: hr_transaction_api.get_VARCHAR2_value

14563: (p_transaction_step_id => p_transaction_step_id
14564: ,p_name => 'P_CONT_ATTRIBUTE12')
14565: --
14566: ,P_CONT_ATTRIBUTE13 =>
14567: hr_transaction_api.get_VARCHAR2_value
14568: (p_transaction_step_id => p_transaction_step_id
14569: ,p_name => 'P_CONT_ATTRIBUTE13')
14570: --
14571: ,P_CONT_ATTRIBUTE14 =>

Line 14572: hr_transaction_api.get_VARCHAR2_value

14568: (p_transaction_step_id => p_transaction_step_id
14569: ,p_name => 'P_CONT_ATTRIBUTE13')
14570: --
14571: ,P_CONT_ATTRIBUTE14 =>
14572: hr_transaction_api.get_VARCHAR2_value
14573: (p_transaction_step_id => p_transaction_step_id
14574: ,p_name => 'P_CONT_ATTRIBUTE14')
14575: --
14576: ,P_CONT_ATTRIBUTE15 =>

Line 14577: hr_transaction_api.get_VARCHAR2_value

14573: (p_transaction_step_id => p_transaction_step_id
14574: ,p_name => 'P_CONT_ATTRIBUTE14')
14575: --
14576: ,P_CONT_ATTRIBUTE15 =>
14577: hr_transaction_api.get_VARCHAR2_value
14578: (p_transaction_step_id => p_transaction_step_id
14579: ,p_name => 'P_CONT_ATTRIBUTE15')
14580: --
14581: ,P_CONT_ATTRIBUTE16 =>

Line 14582: hr_transaction_api.get_VARCHAR2_value

14578: (p_transaction_step_id => p_transaction_step_id
14579: ,p_name => 'P_CONT_ATTRIBUTE15')
14580: --
14581: ,P_CONT_ATTRIBUTE16 =>
14582: hr_transaction_api.get_VARCHAR2_value
14583: (p_transaction_step_id => p_transaction_step_id
14584: ,p_name => 'P_CONT_ATTRIBUTE16')
14585: --
14586: ,P_CONT_ATTRIBUTE17 =>

Line 14587: hr_transaction_api.get_VARCHAR2_value

14583: (p_transaction_step_id => p_transaction_step_id
14584: ,p_name => 'P_CONT_ATTRIBUTE16')
14585: --
14586: ,P_CONT_ATTRIBUTE17 =>
14587: hr_transaction_api.get_VARCHAR2_value
14588: (p_transaction_step_id => p_transaction_step_id
14589: ,p_name => 'P_CONT_ATTRIBUTE17')
14590: --
14591: ,P_CONT_ATTRIBUTE18 =>

Line 14592: hr_transaction_api.get_VARCHAR2_value

14588: (p_transaction_step_id => p_transaction_step_id
14589: ,p_name => 'P_CONT_ATTRIBUTE17')
14590: --
14591: ,P_CONT_ATTRIBUTE18 =>
14592: hr_transaction_api.get_VARCHAR2_value
14593: (p_transaction_step_id => p_transaction_step_id
14594: ,p_name => 'P_CONT_ATTRIBUTE18')
14595: --
14596: ,P_CONT_ATTRIBUTE19 =>

Line 14597: hr_transaction_api.get_VARCHAR2_value

14593: (p_transaction_step_id => p_transaction_step_id
14594: ,p_name => 'P_CONT_ATTRIBUTE18')
14595: --
14596: ,P_CONT_ATTRIBUTE19 =>
14597: hr_transaction_api.get_VARCHAR2_value
14598: (p_transaction_step_id => p_transaction_step_id
14599: ,p_name => 'P_CONT_ATTRIBUTE19')
14600: --
14601: ,P_CONT_ATTRIBUTE20 =>

Line 14602: hr_transaction_api.get_VARCHAR2_value

14598: (p_transaction_step_id => p_transaction_step_id
14599: ,p_name => 'P_CONT_ATTRIBUTE19')
14600: --
14601: ,P_CONT_ATTRIBUTE20 =>
14602: hr_transaction_api.get_VARCHAR2_value
14603: (p_transaction_step_id => p_transaction_step_id
14604: ,p_name => 'P_CONT_ATTRIBUTE20')
14605: --
14606: ,P_THIRD_PARTY_PAY_FLAG =>

Line 14607: hr_transaction_api.get_VARCHAR2_value

14603: (p_transaction_step_id => p_transaction_step_id
14604: ,p_name => 'P_CONT_ATTRIBUTE20')
14605: --
14606: ,P_THIRD_PARTY_PAY_FLAG =>
14607: hr_transaction_api.get_VARCHAR2_value
14608: (p_transaction_step_id => p_transaction_step_id
14609: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
14610: --
14611: ,P_BONDHOLDER_FLAG =>

Line 14612: hr_transaction_api.get_VARCHAR2_value

14608: (p_transaction_step_id => p_transaction_step_id
14609: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
14610: --
14611: ,P_BONDHOLDER_FLAG =>
14612: hr_transaction_api.get_VARCHAR2_value
14613: (p_transaction_step_id => p_transaction_step_id
14614: ,p_name => 'P_BONDHOLDER_FLAG')
14615: --
14616: ,P_DEPENDENT_FLAG =>

Line 14617: hr_transaction_api.get_VARCHAR2_value

14613: (p_transaction_step_id => p_transaction_step_id
14614: ,p_name => 'P_BONDHOLDER_FLAG')
14615: --
14616: ,P_DEPENDENT_FLAG =>
14617: hr_transaction_api.get_VARCHAR2_value
14618: (p_transaction_step_id => p_transaction_step_id
14619: ,p_name => 'P_DEPENDENT_FLAG')
14620: --
14621: ,P_BENEFICIARY_FLAG =>

Line 14622: hr_transaction_api.get_VARCHAR2_value

14618: (p_transaction_step_id => p_transaction_step_id
14619: ,p_name => 'P_DEPENDENT_FLAG')
14620: --
14621: ,P_BENEFICIARY_FLAG =>
14622: hr_transaction_api.get_VARCHAR2_value
14623: (p_transaction_step_id => p_transaction_step_id
14624: ,p_name => 'P_BENEFICIARY_FLAG')
14625: --
14626: ,P_CREATE_MIRROR_FLAG => 'N' -- Change later get from txn tables.

Line 14631: hr_transaction_api.get_VARCHAR2_value

14627: --
14628: ,P_MIRROR_TYPE => null
14629: --
14630: ,P_MIRROR_CONT_ATTRIBUTE_CAT =>
14631: hr_transaction_api.get_VARCHAR2_value
14632: (p_transaction_step_id => p_transaction_step_id
14633: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
14634: --
14635: ,P_MIRROR_CONT_ATTRIBUTE1 =>

Line 14636: hr_transaction_api.get_VARCHAR2_value

14632: (p_transaction_step_id => p_transaction_step_id
14633: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
14634: --
14635: ,P_MIRROR_CONT_ATTRIBUTE1 =>
14636: hr_transaction_api.get_VARCHAR2_value
14637: (p_transaction_step_id => p_transaction_step_id
14638: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
14639: --
14640: ,P_MIRROR_CONT_ATTRIBUTE2 =>

Line 14641: hr_transaction_api.get_VARCHAR2_value

14637: (p_transaction_step_id => p_transaction_step_id
14638: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
14639: --
14640: ,P_MIRROR_CONT_ATTRIBUTE2 =>
14641: hr_transaction_api.get_VARCHAR2_value
14642: (p_transaction_step_id => p_transaction_step_id
14643: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
14644: --
14645: ,P_MIRROR_CONT_ATTRIBUTE3 =>

Line 14646: hr_transaction_api.get_VARCHAR2_value

14642: (p_transaction_step_id => p_transaction_step_id
14643: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
14644: --
14645: ,P_MIRROR_CONT_ATTRIBUTE3 =>
14646: hr_transaction_api.get_VARCHAR2_value
14647: (p_transaction_step_id => p_transaction_step_id
14648: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
14649: --
14650: ,P_MIRROR_CONT_ATTRIBUTE4 =>

Line 14651: hr_transaction_api.get_VARCHAR2_value

14647: (p_transaction_step_id => p_transaction_step_id
14648: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
14649: --
14650: ,P_MIRROR_CONT_ATTRIBUTE4 =>
14651: hr_transaction_api.get_VARCHAR2_value
14652: (p_transaction_step_id => p_transaction_step_id
14653: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
14654: --
14655: ,P_MIRROR_CONT_ATTRIBUTE5 =>

Line 14656: hr_transaction_api.get_VARCHAR2_value

14652: (p_transaction_step_id => p_transaction_step_id
14653: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
14654: --
14655: ,P_MIRROR_CONT_ATTRIBUTE5 =>
14656: hr_transaction_api.get_VARCHAR2_value
14657: (p_transaction_step_id => p_transaction_step_id
14658: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
14659: --
14660: ,P_MIRROR_CONT_ATTRIBUTE6 =>

Line 14661: hr_transaction_api.get_VARCHAR2_value

14657: (p_transaction_step_id => p_transaction_step_id
14658: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
14659: --
14660: ,P_MIRROR_CONT_ATTRIBUTE6 =>
14661: hr_transaction_api.get_VARCHAR2_value
14662: (p_transaction_step_id => p_transaction_step_id
14663: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
14664: --
14665: ,P_MIRROR_CONT_ATTRIBUTE7 =>

Line 14666: hr_transaction_api.get_VARCHAR2_value

14662: (p_transaction_step_id => p_transaction_step_id
14663: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
14664: --
14665: ,P_MIRROR_CONT_ATTRIBUTE7 =>
14666: hr_transaction_api.get_VARCHAR2_value
14667: (p_transaction_step_id => p_transaction_step_id
14668: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
14669: --
14670: ,P_MIRROR_CONT_ATTRIBUTE8 =>

Line 14671: hr_transaction_api.get_VARCHAR2_value

14667: (p_transaction_step_id => p_transaction_step_id
14668: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
14669: --
14670: ,P_MIRROR_CONT_ATTRIBUTE8 =>
14671: hr_transaction_api.get_VARCHAR2_value
14672: (p_transaction_step_id => p_transaction_step_id
14673: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
14674: --
14675: ,P_MIRROR_CONT_ATTRIBUTE9 =>

Line 14676: hr_transaction_api.get_VARCHAR2_value

14672: (p_transaction_step_id => p_transaction_step_id
14673: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
14674: --
14675: ,P_MIRROR_CONT_ATTRIBUTE9 =>
14676: hr_transaction_api.get_VARCHAR2_value
14677: (p_transaction_step_id => p_transaction_step_id
14678: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
14679: --
14680: ,P_MIRROR_CONT_ATTRIBUTE10 =>

Line 14681: hr_transaction_api.get_VARCHAR2_value

14677: (p_transaction_step_id => p_transaction_step_id
14678: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
14679: --
14680: ,P_MIRROR_CONT_ATTRIBUTE10 =>
14681: hr_transaction_api.get_VARCHAR2_value
14682: (p_transaction_step_id => p_transaction_step_id
14683: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
14684: --
14685: ,P_MIRROR_CONT_ATTRIBUTE11 =>

Line 14686: hr_transaction_api.get_VARCHAR2_value

14682: (p_transaction_step_id => p_transaction_step_id
14683: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
14684: --
14685: ,P_MIRROR_CONT_ATTRIBUTE11 =>
14686: hr_transaction_api.get_VARCHAR2_value
14687: (p_transaction_step_id => p_transaction_step_id
14688: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
14689: --
14690: ,P_MIRROR_CONT_ATTRIBUTE12 =>

Line 14691: hr_transaction_api.get_VARCHAR2_value

14687: (p_transaction_step_id => p_transaction_step_id
14688: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
14689: --
14690: ,P_MIRROR_CONT_ATTRIBUTE12 =>
14691: hr_transaction_api.get_VARCHAR2_value
14692: (p_transaction_step_id => p_transaction_step_id
14693: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
14694: --
14695: ,P_MIRROR_CONT_ATTRIBUTE13 =>

Line 14696: hr_transaction_api.get_VARCHAR2_value

14692: (p_transaction_step_id => p_transaction_step_id
14693: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
14694: --
14695: ,P_MIRROR_CONT_ATTRIBUTE13 =>
14696: hr_transaction_api.get_VARCHAR2_value
14697: (p_transaction_step_id => p_transaction_step_id
14698: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
14699: --
14700: ,P_MIRROR_CONT_ATTRIBUTE14 =>

Line 14701: hr_transaction_api.get_VARCHAR2_value

14697: (p_transaction_step_id => p_transaction_step_id
14698: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
14699: --
14700: ,P_MIRROR_CONT_ATTRIBUTE14 =>
14701: hr_transaction_api.get_VARCHAR2_value
14702: (p_transaction_step_id => p_transaction_step_id
14703: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
14704: --
14705: ,P_MIRROR_CONT_ATTRIBUTE15 =>

Line 14706: hr_transaction_api.get_VARCHAR2_value

14702: (p_transaction_step_id => p_transaction_step_id
14703: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
14704: --
14705: ,P_MIRROR_CONT_ATTRIBUTE15 =>
14706: hr_transaction_api.get_VARCHAR2_value
14707: (p_transaction_step_id => p_transaction_step_id
14708: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
14709: --
14710: ,P_MIRROR_CONT_ATTRIBUTE16 =>

Line 14711: hr_transaction_api.get_VARCHAR2_value

14707: (p_transaction_step_id => p_transaction_step_id
14708: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
14709: --
14710: ,P_MIRROR_CONT_ATTRIBUTE16 =>
14711: hr_transaction_api.get_VARCHAR2_value
14712: (p_transaction_step_id => p_transaction_step_id
14713: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
14714: --
14715: ,P_MIRROR_CONT_ATTRIBUTE17 =>

Line 14716: hr_transaction_api.get_VARCHAR2_value

14712: (p_transaction_step_id => p_transaction_step_id
14713: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
14714: --
14715: ,P_MIRROR_CONT_ATTRIBUTE17 =>
14716: hr_transaction_api.get_VARCHAR2_value
14717: (p_transaction_step_id => p_transaction_step_id
14718: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
14719: --
14720: ,P_MIRROR_CONT_ATTRIBUTE18 =>

Line 14721: hr_transaction_api.get_VARCHAR2_value

14717: (p_transaction_step_id => p_transaction_step_id
14718: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
14719: --
14720: ,P_MIRROR_CONT_ATTRIBUTE18 =>
14721: hr_transaction_api.get_VARCHAR2_value
14722: (p_transaction_step_id => p_transaction_step_id
14723: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
14724: --
14725: ,P_MIRROR_CONT_ATTRIBUTE19 =>

Line 14726: hr_transaction_api.get_VARCHAR2_value

14722: (p_transaction_step_id => p_transaction_step_id
14723: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
14724: --
14725: ,P_MIRROR_CONT_ATTRIBUTE19 =>
14726: hr_transaction_api.get_VARCHAR2_value
14727: (p_transaction_step_id => p_transaction_step_id
14728: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
14729: --
14730: ,P_MIRROR_CONT_ATTRIBUTE20 =>

Line 14731: hr_transaction_api.get_VARCHAR2_value

14727: (p_transaction_step_id => p_transaction_step_id
14728: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
14729: --
14730: ,P_MIRROR_CONT_ATTRIBUTE20 =>
14731: hr_transaction_api.get_VARCHAR2_value
14732: (p_transaction_step_id => p_transaction_step_id
14733: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE20')
14734: --
14735:

Line 14757: hr_transaction_api.get_VARCHAR2_value

14753: --
14754: ,P_ORIG_HIRE_WARNING => L_CON_ORIG_HIRE_WARNING1
14755: --
14756: ,P_CONT_INFORMATION_CATEGORY =>
14757: hr_transaction_api.get_VARCHAR2_value
14758: (p_transaction_step_id => p_transaction_step_id
14759: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
14760: --
14761: ,P_CONT_INFORMATION1 =>

Line 14762: hr_transaction_api.get_VARCHAR2_value

14758: (p_transaction_step_id => p_transaction_step_id
14759: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
14760: --
14761: ,P_CONT_INFORMATION1 =>
14762: hr_transaction_api.get_VARCHAR2_value
14763: (p_transaction_step_id => p_transaction_step_id
14764: ,p_name => 'P_CONT_INFORMATION1')
14765: --
14766: ,P_CONT_INFORMATION2 =>

Line 14767: hr_transaction_api.get_VARCHAR2_value

14763: (p_transaction_step_id => p_transaction_step_id
14764: ,p_name => 'P_CONT_INFORMATION1')
14765: --
14766: ,P_CONT_INFORMATION2 =>
14767: hr_transaction_api.get_VARCHAR2_value
14768: (p_transaction_step_id => p_transaction_step_id
14769: ,p_name => 'P_CONT_INFORMATION2')
14770: --
14771: ,P_CONT_INFORMATION3 =>

Line 14772: hr_transaction_api.get_VARCHAR2_value

14768: (p_transaction_step_id => p_transaction_step_id
14769: ,p_name => 'P_CONT_INFORMATION2')
14770: --
14771: ,P_CONT_INFORMATION3 =>
14772: hr_transaction_api.get_VARCHAR2_value
14773: (p_transaction_step_id => p_transaction_step_id
14774: ,p_name => 'P_CONT_INFORMATION3')
14775: --
14776: ,P_CONT_INFORMATION4 =>

Line 14777: hr_transaction_api.get_VARCHAR2_value

14773: (p_transaction_step_id => p_transaction_step_id
14774: ,p_name => 'P_CONT_INFORMATION3')
14775: --
14776: ,P_CONT_INFORMATION4 =>
14777: hr_transaction_api.get_VARCHAR2_value
14778: (p_transaction_step_id => p_transaction_step_id
14779: ,p_name => 'P_CONT_INFORMATION4')
14780: --
14781: ,P_CONT_INFORMATION5 =>

Line 14782: hr_transaction_api.get_VARCHAR2_value

14778: (p_transaction_step_id => p_transaction_step_id
14779: ,p_name => 'P_CONT_INFORMATION4')
14780: --
14781: ,P_CONT_INFORMATION5 =>
14782: hr_transaction_api.get_VARCHAR2_value
14783: (p_transaction_step_id => p_transaction_step_id
14784: ,p_name => 'P_CONT_INFORMATION5')
14785: --
14786: ,P_CONT_INFORMATION6 =>

Line 14787: hr_transaction_api.get_VARCHAR2_value

14783: (p_transaction_step_id => p_transaction_step_id
14784: ,p_name => 'P_CONT_INFORMATION5')
14785: --
14786: ,P_CONT_INFORMATION6 =>
14787: hr_transaction_api.get_VARCHAR2_value
14788: (p_transaction_step_id => p_transaction_step_id
14789: ,p_name => 'P_CONT_INFORMATION6')
14790: --
14791: ,P_CONT_INFORMATION7 =>

Line 14792: hr_transaction_api.get_VARCHAR2_value

14788: (p_transaction_step_id => p_transaction_step_id
14789: ,p_name => 'P_CONT_INFORMATION6')
14790: --
14791: ,P_CONT_INFORMATION7 =>
14792: hr_transaction_api.get_VARCHAR2_value
14793: (p_transaction_step_id => p_transaction_step_id
14794: ,p_name => 'P_CONT_INFORMATION7')
14795: --
14796: ,P_CONT_INFORMATION8 =>

Line 14797: hr_transaction_api.get_VARCHAR2_value

14793: (p_transaction_step_id => p_transaction_step_id
14794: ,p_name => 'P_CONT_INFORMATION7')
14795: --
14796: ,P_CONT_INFORMATION8 =>
14797: hr_transaction_api.get_VARCHAR2_value
14798: (p_transaction_step_id => p_transaction_step_id
14799: ,p_name => 'P_CONT_INFORMATION8')
14800: --
14801: ,P_CONT_INFORMATION9 =>

Line 14802: hr_transaction_api.get_VARCHAR2_value

14798: (p_transaction_step_id => p_transaction_step_id
14799: ,p_name => 'P_CONT_INFORMATION8')
14800: --
14801: ,P_CONT_INFORMATION9 =>
14802: hr_transaction_api.get_VARCHAR2_value
14803: (p_transaction_step_id => p_transaction_step_id
14804: ,p_name => 'P_CONT_INFORMATION9')
14805: --
14806: ,P_CONT_INFORMATION10 =>

Line 14807: hr_transaction_api.get_VARCHAR2_value

14803: (p_transaction_step_id => p_transaction_step_id
14804: ,p_name => 'P_CONT_INFORMATION9')
14805: --
14806: ,P_CONT_INFORMATION10 =>
14807: hr_transaction_api.get_VARCHAR2_value
14808: (p_transaction_step_id => p_transaction_step_id
14809: ,p_name => 'P_CONT_INFORMATION10')
14810: --
14811: ,P_CONT_INFORMATION11 =>

Line 14812: hr_transaction_api.get_VARCHAR2_value

14808: (p_transaction_step_id => p_transaction_step_id
14809: ,p_name => 'P_CONT_INFORMATION10')
14810: --
14811: ,P_CONT_INFORMATION11 =>
14812: hr_transaction_api.get_VARCHAR2_value
14813: (p_transaction_step_id => p_transaction_step_id
14814: ,p_name => 'P_CONT_INFORMATION11')
14815: --
14816: ,P_CONT_INFORMATION12 =>

Line 14817: hr_transaction_api.get_VARCHAR2_value

14813: (p_transaction_step_id => p_transaction_step_id
14814: ,p_name => 'P_CONT_INFORMATION11')
14815: --
14816: ,P_CONT_INFORMATION12 =>
14817: hr_transaction_api.get_VARCHAR2_value
14818: (p_transaction_step_id => p_transaction_step_id
14819: ,p_name => 'P_CONT_INFORMATION12')
14820: --
14821: ,P_CONT_INFORMATION13 =>

Line 14822: hr_transaction_api.get_VARCHAR2_value

14818: (p_transaction_step_id => p_transaction_step_id
14819: ,p_name => 'P_CONT_INFORMATION12')
14820: --
14821: ,P_CONT_INFORMATION13 =>
14822: hr_transaction_api.get_VARCHAR2_value
14823: (p_transaction_step_id => p_transaction_step_id
14824: ,p_name => 'P_CONT_INFORMATION13')
14825: --
14826: ,P_CONT_INFORMATION14 =>

Line 14827: hr_transaction_api.get_VARCHAR2_value

14823: (p_transaction_step_id => p_transaction_step_id
14824: ,p_name => 'P_CONT_INFORMATION13')
14825: --
14826: ,P_CONT_INFORMATION14 =>
14827: hr_transaction_api.get_VARCHAR2_value
14828: (p_transaction_step_id => p_transaction_step_id
14829: ,p_name => 'P_CONT_INFORMATION14')
14830: --
14831: ,P_CONT_INFORMATION15 =>

Line 14832: hr_transaction_api.get_VARCHAR2_value

14828: (p_transaction_step_id => p_transaction_step_id
14829: ,p_name => 'P_CONT_INFORMATION14')
14830: --
14831: ,P_CONT_INFORMATION15 =>
14832: hr_transaction_api.get_VARCHAR2_value
14833: (p_transaction_step_id => p_transaction_step_id
14834: ,p_name => 'P_CONT_INFORMATION15')
14835: --
14836: ,P_CONT_INFORMATION16 =>

Line 14837: hr_transaction_api.get_VARCHAR2_value

14833: (p_transaction_step_id => p_transaction_step_id
14834: ,p_name => 'P_CONT_INFORMATION15')
14835: --
14836: ,P_CONT_INFORMATION16 =>
14837: hr_transaction_api.get_VARCHAR2_value
14838: (p_transaction_step_id => p_transaction_step_id
14839: ,p_name => 'P_CONT_INFORMATION16')
14840: --
14841: ,P_CONT_INFORMATION17 =>

Line 14842: hr_transaction_api.get_VARCHAR2_value

14838: (p_transaction_step_id => p_transaction_step_id
14839: ,p_name => 'P_CONT_INFORMATION16')
14840: --
14841: ,P_CONT_INFORMATION17 =>
14842: hr_transaction_api.get_VARCHAR2_value
14843: (p_transaction_step_id => p_transaction_step_id
14844: ,p_name => 'P_CONT_INFORMATION17')
14845: --
14846: ,P_CONT_INFORMATION18 =>

Line 14847: hr_transaction_api.get_VARCHAR2_value

14843: (p_transaction_step_id => p_transaction_step_id
14844: ,p_name => 'P_CONT_INFORMATION17')
14845: --
14846: ,P_CONT_INFORMATION18 =>
14847: hr_transaction_api.get_VARCHAR2_value
14848: (p_transaction_step_id => p_transaction_step_id
14849: ,p_name => 'P_CONT_INFORMATION18')
14850: --
14851: ,P_CONT_INFORMATION19 =>

Line 14852: hr_transaction_api.get_VARCHAR2_value

14848: (p_transaction_step_id => p_transaction_step_id
14849: ,p_name => 'P_CONT_INFORMATION18')
14850: --
14851: ,P_CONT_INFORMATION19 =>
14852: hr_transaction_api.get_VARCHAR2_value
14853: (p_transaction_step_id => p_transaction_step_id
14854: ,p_name => 'P_CONT_INFORMATION19')
14855: --
14856: ,P_CONT_INFORMATION20 =>

Line 14857: hr_transaction_api.get_VARCHAR2_value

14853: (p_transaction_step_id => p_transaction_step_id
14854: ,p_name => 'P_CONT_INFORMATION19')
14855: --
14856: ,P_CONT_INFORMATION20 =>
14857: hr_transaction_api.get_VARCHAR2_value
14858: (p_transaction_step_id => p_transaction_step_id
14859: ,p_name => 'P_CONT_INFORMATION20')
14860: );
14861: --

Line 15192: hr_transaction_api.get_transaction_step_info

15188: -- if a transaction step does exist then the transaction_step_id and
15189: -- object_version_number are set (i.e. not null).
15190: -- --------------------------------------------------------------------------
15191: hr_utility.set_location('Call :get_transaction_step_info'||l_proc, 20);
15192: hr_transaction_api.get_transaction_step_info
15193: (p_item_type => p_item_type
15194: ,p_item_key => p_item_key
15195: ,p_activity_id => p_activity_id
15196: ,p_transaction_step_id => l_transaction_step_id

Line 15590: l_effective_date := hr_transaction_api.get_DATE_value

15586: --
15587: if not p_validate then
15588: --
15589: hr_utility.set_location(' not p_validate:'||l_proc, 20);
15590: l_effective_date := hr_transaction_api.get_DATE_value
15591: (p_transaction_step_id => p_transaction_step_id
15592: ,p_name => 'P_EFFECTIVE_DATE');
15593: --
15594: end if;

Line 15599: l_contact_relationship_id := hr_transaction_api.get_number_value

15595: --
15596: -- Get the contact_relationship_id first. If it is null, that means
15597: -- this is error and raise the error. -- add the error name 99999.
15598: --
15599: l_contact_relationship_id := hr_transaction_api.get_number_value
15600: (p_transaction_step_id => p_transaction_step_id
15601: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
15602: --
15603: l_ovn := hr_transaction_api.get_number_value

Line 15603: l_ovn := hr_transaction_api.get_number_value

15599: l_contact_relationship_id := hr_transaction_api.get_number_value
15600: (p_transaction_step_id => p_transaction_step_id
15601: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
15602: --
15603: l_ovn := hr_transaction_api.get_number_value
15604: (p_transaction_step_id => p_transaction_step_id
15605: ,p_name => 'P_OBJECT_VERSION_NUMBER');
15606: --
15607: l_other_rel_ovn := hr_transaction_api.get_NUMBER_value

Line 15607: l_other_rel_ovn := hr_transaction_api.get_NUMBER_value

15603: l_ovn := hr_transaction_api.get_number_value
15604: (p_transaction_step_id => p_transaction_step_id
15605: ,p_name => 'P_OBJECT_VERSION_NUMBER');
15606: --
15607: l_other_rel_ovn := hr_transaction_api.get_NUMBER_value
15608: (p_transaction_step_id => p_transaction_step_id
15609: ,p_name => 'P_OTHER_REL_OBJ_VER_NO') ;
15610: --
15611: IF l_contact_relationship_id IS NOT NULL

Line 15620: hr_transaction_api.get_DATE_value

15616: p_validate => p_validate
15617: --
15618: ,P_EFFECTIVE_DATE =>l_effective_date
15619: /*
15620: hr_transaction_api.get_DATE_value
15621: (p_transaction_step_id => p_transaction_step_id
15622: ,p_name => 'P_EFFECTIVE_DATE')
15623: */
15624: --

Line 15628: /* ,p_attribute_update_mode => hr_transaction_api.get_varchar2_value

15624: --
15625: ,p_object_version_number => l_ovn
15626: --
15627: -- 9999 What value to pass on.
15628: /* ,p_attribute_update_mode => hr_transaction_api.get_varchar2_value
15629: (p_transaction_step_id => p_transaction_step_id
15630: ,p_name => 'P_ATTRIBUTE_UPDATE_MODE')
15631: */
15632: --

Line 15634: hr_transaction_api.get_NUMBER_value

15630: ,p_name => 'P_ATTRIBUTE_UPDATE_MODE')
15631: */
15632: --
15633: ,P_CONTACT_RELATIONSHIP_ID =>
15634: hr_transaction_api.get_NUMBER_value
15635: (p_transaction_step_id => p_transaction_step_id
15636: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
15637: --
15638: /*

Line 15640: hr_transaction_api.get_VARCHAR2_value

15636: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
15637: --
15638: /*
15639: ,P_CONTACT_TYPE =>
15640: hr_transaction_api.get_VARCHAR2_value
15641: (p_transaction_step_id => p_transaction_step_id
15642: ,p_name => 'P_CONTACT_TYPE')
15643: --
15644: ,P_COMMENTS =>

Line 15645: hr_transaction_api.get_varchar2_value

15641: (p_transaction_step_id => p_transaction_step_id
15642: ,p_name => 'P_CONTACT_TYPE')
15643: --
15644: ,P_COMMENTS =>
15645: hr_transaction_api.get_varchar2_value
15646: (p_transaction_step_id => p_transaction_step_id
15647: ,p_name => 'P_COMMENTS')
15648: --
15649: ,P_PRIMARY_CONTACT_FLAG =>

Line 15650: hr_transaction_api.get_VARCHAR2_value

15646: (p_transaction_step_id => p_transaction_step_id
15647: ,p_name => 'P_COMMENTS')
15648: --
15649: ,P_PRIMARY_CONTACT_FLAG =>
15650: hr_transaction_api.get_VARCHAR2_value
15651: (p_transaction_step_id => p_transaction_step_id
15652: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
15653: --
15654: ,P_THIRD_PARTY_PAY_FLAG =>

Line 15655: hr_transaction_api.get_VARCHAR2_value

15651: (p_transaction_step_id => p_transaction_step_id
15652: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
15653: --
15654: ,P_THIRD_PARTY_PAY_FLAG =>
15655: hr_transaction_api.get_VARCHAR2_value
15656: (p_transaction_step_id => p_transaction_step_id
15657: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
15658: --
15659: ,p_bondholder_flag =>

Line 15660: hr_transaction_api.get_varchar2_value

15656: (p_transaction_step_id => p_transaction_step_id
15657: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
15658: --
15659: ,p_bondholder_flag =>
15660: hr_transaction_api.get_varchar2_value
15661: (p_transaction_step_id => p_transaction_step_id
15662: ,p_name => 'p_bondholder_flag')
15663: --
15664: ,p_date_start =>

Line 15665: hr_transaction_api.get_date_value

15661: (p_transaction_step_id => p_transaction_step_id
15662: ,p_name => 'p_bondholder_flag')
15663: --
15664: ,p_date_start =>
15665: hr_transaction_api.get_date_value
15666: (p_transaction_step_id => p_transaction_step_id
15667: ,p_name => 'p_date_start')
15668: --
15669: ,p_start_life_reason_id =>

Line 15670: hr_transaction_api.get_number_value

15666: (p_transaction_step_id => p_transaction_step_id
15667: ,p_name => 'p_date_start')
15668: --
15669: ,p_start_life_reason_id =>
15670: hr_transaction_api.get_number_value
15671: (p_transaction_step_id => p_transaction_step_id
15672: ,p_name => 'p_start_life_reason_id')
15673: --
15674: */

Line 15676: hr_transaction_api.get_date_value

15672: ,p_name => 'p_start_life_reason_id')
15673: --
15674: */
15675: ,p_date_end =>
15676: hr_transaction_api.get_date_value
15677: (p_transaction_step_id => p_transaction_step_id
15678: ,p_name => 'p_date_end')
15679: --
15680: --bug# 2080032

Line 15682: hr_transaction_api.get_number_value

15678: ,p_name => 'p_date_end')
15679: --
15680: --bug# 2080032
15681: ,p_end_life_reason_id =>
15682: hr_transaction_api.get_number_value
15683: (p_transaction_step_id => p_transaction_step_id
15684: ,p_name => 'p_end_life_reason_id')
15685: --
15686: /*

Line 15688: hr_transaction_api.get_varchar2_value

15684: ,p_name => 'p_end_life_reason_id')
15685: --
15686: /*
15687: ,p_rltd_per_rsds_w_dsgntr_flag =>
15688: hr_transaction_api.get_varchar2_value
15689: (p_transaction_step_id => p_transaction_step_id
15690: ,p_name => 'p_rltd_per_rsds_w_dsgntr_flag')
15691: --
15692: ,p_personal_flag =>

Line 15693: hr_transaction_api.get_varchar2_value

15689: (p_transaction_step_id => p_transaction_step_id
15690: ,p_name => 'p_rltd_per_rsds_w_dsgntr_flag')
15691: --
15692: ,p_personal_flag =>
15693: hr_transaction_api.get_varchar2_value
15694: (p_transaction_step_id => p_transaction_step_id
15695: ,p_name => 'p_personal_flag')
15696: --
15697: ,p_sequence_number =>

Line 15698: hr_transaction_api.get_number_value

15694: (p_transaction_step_id => p_transaction_step_id
15695: ,p_name => 'p_personal_flag')
15696: --
15697: ,p_sequence_number =>
15698: hr_transaction_api.get_number_value
15699: (p_transaction_step_id => p_transaction_step_id
15700: ,p_name => 'p_sequence_number')
15701: --
15702: ,p_dependent_flag =>

Line 15703: hr_transaction_api.get_varchar2_value

15699: (p_transaction_step_id => p_transaction_step_id
15700: ,p_name => 'p_sequence_number')
15701: --
15702: ,p_dependent_flag =>
15703: hr_transaction_api.get_varchar2_value
15704: (p_transaction_step_id => p_transaction_step_id
15705: ,p_name => 'p_dependent_flag')
15706: --
15707: ,p_beneficiary_flag =>

Line 15708: hr_transaction_api.get_varchar2_value

15704: (p_transaction_step_id => p_transaction_step_id
15705: ,p_name => 'p_dependent_flag')
15706: --
15707: ,p_beneficiary_flag =>
15708: hr_transaction_api.get_varchar2_value
15709: (p_transaction_step_id => p_transaction_step_id
15710: ,p_name => 'p_beneficiary_flag')
15711: --
15712: ,p_cont_attribute_category =>

Line 15713: hr_transaction_api.get_varchar2_value

15709: (p_transaction_step_id => p_transaction_step_id
15710: ,p_name => 'p_beneficiary_flag')
15711: --
15712: ,p_cont_attribute_category =>
15713: hr_transaction_api.get_varchar2_value
15714: (p_transaction_step_id => p_transaction_step_id
15715: ,p_name => 'p_cont_attribute_category')
15716: --
15717: ,p_cont_attribute1 =>

Line 15718: hr_transaction_api.get_varchar2_value

15714: (p_transaction_step_id => p_transaction_step_id
15715: ,p_name => 'p_cont_attribute_category')
15716: --
15717: ,p_cont_attribute1 =>
15718: hr_transaction_api.get_varchar2_value
15719: (p_transaction_step_id => p_transaction_step_id
15720: ,p_name => 'p_cont_attribute1')
15721: --
15722: ,p_cont_attribute2 =>

Line 15723: hr_transaction_api.get_varchar2_value

15719: (p_transaction_step_id => p_transaction_step_id
15720: ,p_name => 'p_cont_attribute1')
15721: --
15722: ,p_cont_attribute2 =>
15723: hr_transaction_api.get_varchar2_value
15724: (p_transaction_step_id => p_transaction_step_id
15725: ,p_name => 'p_cont_attribute2')
15726: --
15727: ,p_cont_attribute3 =>

Line 15728: hr_transaction_api.get_varchar2_value

15724: (p_transaction_step_id => p_transaction_step_id
15725: ,p_name => 'p_cont_attribute2')
15726: --
15727: ,p_cont_attribute3 =>
15728: hr_transaction_api.get_varchar2_value
15729: (p_transaction_step_id => p_transaction_step_id
15730: ,p_name => 'p_cont_attribute3')
15731: --
15732: ,p_cont_attribute4 =>

Line 15733: hr_transaction_api.get_varchar2_value

15729: (p_transaction_step_id => p_transaction_step_id
15730: ,p_name => 'p_cont_attribute3')
15731: --
15732: ,p_cont_attribute4 =>
15733: hr_transaction_api.get_varchar2_value
15734: (p_transaction_step_id => p_transaction_step_id
15735: ,p_name => 'p_cont_attribute4')
15736: --
15737: ,p_cont_attribute5 =>

Line 15738: hr_transaction_api.get_varchar2_value

15734: (p_transaction_step_id => p_transaction_step_id
15735: ,p_name => 'p_cont_attribute4')
15736: --
15737: ,p_cont_attribute5 =>
15738: hr_transaction_api.get_varchar2_value
15739: (p_transaction_step_id => p_transaction_step_id
15740: ,p_name => 'p_cont_attribute5')
15741: --
15742: ,p_cont_attribute6 =>

Line 15743: hr_transaction_api.get_varchar2_value

15739: (p_transaction_step_id => p_transaction_step_id
15740: ,p_name => 'p_cont_attribute5')
15741: --
15742: ,p_cont_attribute6 =>
15743: hr_transaction_api.get_varchar2_value
15744: (p_transaction_step_id => p_transaction_step_id
15745: ,p_name => 'p_cont_attribute6')
15746: --
15747: ,p_cont_attribute7 =>

Line 15748: hr_transaction_api.get_varchar2_value

15744: (p_transaction_step_id => p_transaction_step_id
15745: ,p_name => 'p_cont_attribute6')
15746: --
15747: ,p_cont_attribute7 =>
15748: hr_transaction_api.get_varchar2_value
15749: (p_transaction_step_id => p_transaction_step_id
15750: ,p_name => 'p_cont_attribute7')
15751: --
15752: ,p_cont_attribute8 =>

Line 15753: hr_transaction_api.get_varchar2_value

15749: (p_transaction_step_id => p_transaction_step_id
15750: ,p_name => 'p_cont_attribute7')
15751: --
15752: ,p_cont_attribute8 =>
15753: hr_transaction_api.get_varchar2_value
15754: (p_transaction_step_id => p_transaction_step_id
15755: ,p_name => 'p_cont_attribute8')
15756: --
15757: ,p_cont_attribute9 =>

Line 15758: hr_transaction_api.get_varchar2_value

15754: (p_transaction_step_id => p_transaction_step_id
15755: ,p_name => 'p_cont_attribute8')
15756: --
15757: ,p_cont_attribute9 =>
15758: hr_transaction_api.get_varchar2_value
15759: (p_transaction_step_id => p_transaction_step_id
15760: ,p_name => 'p_cont_attribute9')
15761: --
15762: ,p_cont_attribute10 =>

Line 15763: hr_transaction_api.get_varchar2_value

15759: (p_transaction_step_id => p_transaction_step_id
15760: ,p_name => 'p_cont_attribute9')
15761: --
15762: ,p_cont_attribute10 =>
15763: hr_transaction_api.get_varchar2_value
15764: (p_transaction_step_id => p_transaction_step_id
15765: ,p_name => 'p_cont_attribute10')
15766: --
15767: ,p_cont_attribute11 =>

Line 15768: hr_transaction_api.get_varchar2_value

15764: (p_transaction_step_id => p_transaction_step_id
15765: ,p_name => 'p_cont_attribute10')
15766: --
15767: ,p_cont_attribute11 =>
15768: hr_transaction_api.get_varchar2_value
15769: (p_transaction_step_id => p_transaction_step_id
15770: ,p_name => 'p_cont_attribute11')
15771: --
15772: ,p_cont_attribute12 =>

Line 15773: hr_transaction_api.get_varchar2_value

15769: (p_transaction_step_id => p_transaction_step_id
15770: ,p_name => 'p_cont_attribute11')
15771: --
15772: ,p_cont_attribute12 =>
15773: hr_transaction_api.get_varchar2_value
15774: (p_transaction_step_id => p_transaction_step_id
15775: ,p_name => 'p_cont_attribute12')
15776: --
15777: ,p_cont_attribute13 =>

Line 15778: hr_transaction_api.get_varchar2_value

15774: (p_transaction_step_id => p_transaction_step_id
15775: ,p_name => 'p_cont_attribute12')
15776: --
15777: ,p_cont_attribute13 =>
15778: hr_transaction_api.get_varchar2_value
15779: (p_transaction_step_id => p_transaction_step_id
15780: ,p_name => 'p_cont_attribute13')
15781: --
15782: ,p_cont_attribute14 =>

Line 15783: hr_transaction_api.get_varchar2_value

15779: (p_transaction_step_id => p_transaction_step_id
15780: ,p_name => 'p_cont_attribute13')
15781: --
15782: ,p_cont_attribute14 =>
15783: hr_transaction_api.get_varchar2_value
15784: (p_transaction_step_id => p_transaction_step_id
15785: ,p_name => 'p_cont_attribute14')
15786: --
15787: ,p_cont_attribute15 =>

Line 15788: hr_transaction_api.get_varchar2_value

15784: (p_transaction_step_id => p_transaction_step_id
15785: ,p_name => 'p_cont_attribute14')
15786: --
15787: ,p_cont_attribute15 =>
15788: hr_transaction_api.get_varchar2_value
15789: (p_transaction_step_id => p_transaction_step_id
15790: ,p_name => 'p_cont_attribute15')
15791: --
15792: ,p_cont_attribute16 =>

Line 15793: hr_transaction_api.get_varchar2_value

15789: (p_transaction_step_id => p_transaction_step_id
15790: ,p_name => 'p_cont_attribute15')
15791: --
15792: ,p_cont_attribute16 =>
15793: hr_transaction_api.get_varchar2_value
15794: (p_transaction_step_id => p_transaction_step_id
15795: ,p_name => 'p_cont_attribute16')
15796: --
15797: ,p_cont_attribute17 =>

Line 15798: hr_transaction_api.get_varchar2_value

15794: (p_transaction_step_id => p_transaction_step_id
15795: ,p_name => 'p_cont_attribute16')
15796: --
15797: ,p_cont_attribute17 =>
15798: hr_transaction_api.get_varchar2_value
15799: (p_transaction_step_id => p_transaction_step_id
15800: ,p_name => 'p_cont_attribute17')
15801: --
15802: ,p_cont_attribute18 =>

Line 15803: hr_transaction_api.get_varchar2_value

15799: (p_transaction_step_id => p_transaction_step_id
15800: ,p_name => 'p_cont_attribute17')
15801: --
15802: ,p_cont_attribute18 =>
15803: hr_transaction_api.get_varchar2_value
15804: (p_transaction_step_id => p_transaction_step_id
15805: ,p_name => 'p_cont_attribute18')
15806: --
15807: ,p_cont_attribute19 =>

Line 15808: hr_transaction_api.get_varchar2_value

15804: (p_transaction_step_id => p_transaction_step_id
15805: ,p_name => 'p_cont_attribute18')
15806: --
15807: ,p_cont_attribute19 =>
15808: hr_transaction_api.get_varchar2_value
15809: (p_transaction_step_id => p_transaction_step_id
15810: ,p_name => 'p_cont_attribute19')
15811: --
15812: ,p_cont_attribute20 =>

Line 15813: hr_transaction_api.get_varchar2_value

15809: (p_transaction_step_id => p_transaction_step_id
15810: ,p_name => 'p_cont_attribute19')
15811: --
15812: ,p_cont_attribute20 =>
15813: hr_transaction_api.get_varchar2_value
15814: (p_transaction_step_id => p_transaction_step_id
15815: ,p_name => 'p_cont_attribute20')
15816: --
15817: */

Line 15821: l_del_other_rel := hr_transaction_api.get_VARCHAR2_value

15817: */
15818: );
15819: -- Bug 3152505 : calling the update_api for second time if user has checked the check bux for deleting
15820: -- the other relationship also.
15821: l_del_other_rel := hr_transaction_api.get_VARCHAR2_value
15822: (p_transaction_step_id => p_transaction_step_id
15823: ,p_name => 'P_END_OTHER_REL');
15824:
15825: if l_del_other_rel = 'Y' then

Line 15832: hr_transaction_api.get_NUMBER_value

15828: p_validate => p_validate
15829: ,P_EFFECTIVE_DATE =>l_effective_date
15830: ,p_object_version_number => l_other_rel_ovn
15831: ,P_CONTACT_RELATIONSHIP_ID =>
15832: hr_transaction_api.get_NUMBER_value
15833: (p_transaction_step_id => p_transaction_step_id
15834: ,p_name => 'P_OTHER_REL_ID')
15835: ,p_date_end =>
15836: hr_transaction_api.get_date_value

Line 15836: hr_transaction_api.get_date_value

15832: hr_transaction_api.get_NUMBER_value
15833: (p_transaction_step_id => p_transaction_step_id
15834: ,p_name => 'P_OTHER_REL_ID')
15835: ,p_date_end =>
15836: hr_transaction_api.get_date_value
15837: (p_transaction_step_id => p_transaction_step_id
15838: ,p_name => 'p_date_end')
15839: ,p_end_life_reason_id =>
15840: hr_transaction_api.get_number_value

Line 15840: hr_transaction_api.get_number_value

15836: hr_transaction_api.get_date_value
15837: (p_transaction_step_id => p_transaction_step_id
15838: ,p_name => 'p_date_end')
15839: ,p_end_life_reason_id =>
15840: hr_transaction_api.get_number_value
15841: (p_transaction_step_id => p_transaction_step_id
15842: ,p_name => 'p_end_life_reason_id')
15843: );
15844: end if;

Line 15937: hr_transaction_api.get_transaction_step_info (

15933:
15934: BEGIN
15935:
15936: hr_utility.set_location('Entering:'||l_proc, 5);
15937: hr_transaction_api.get_transaction_step_info (
15938: p_Item_Type => p_item_type,
15939: p_Item_Key => p_item_key,
15940: p_activity_id => to_number(p_actid),
15941: p_transaction_step_id => l_trans_step_ids,

Line 15971: l_contact_set := hr_transaction_api.get_varchar2_value

15967: hr_utility.set_location('before starting For Loop:'||l_proc, 10);
15968: FOR i IN 0..(l_trans_step_rows - 1) LOOP
15969:
15970: begin
15971: l_contact_set := hr_transaction_api.get_varchar2_value
15972: (p_transaction_step_id => l_trans_step_ids(i)
15973: ,p_name => 'P_CONTACT_SET');
15974: exception
15975: when others then

Line 16028: hr_transaction_api.get_transaction_step_info (

16024:
16025: BEGIN
16026:
16027: hr_utility.set_location('Entering:'||l_proc, 5);
16028: hr_transaction_api.get_transaction_step_info (
16029: p_Item_Type => p_item_type,
16030: p_Item_Key => p_item_key,
16031: p_activity_id => to_number(p_actid),
16032: p_transaction_step_id => l_trans_step_ids,

Line 16062: l_contact_set := hr_transaction_api.get_varchar2_value

16058: hr_utility.set_location('Before Entering For Loop:'||l_proc,10 );
16059: FOR i IN 0..(l_trans_step_rows - 1) LOOP
16060:
16061: begin
16062: l_contact_set := hr_transaction_api.get_varchar2_value
16063: (p_transaction_step_id => l_trans_step_ids(i)
16064: ,p_name => 'P_CONTACT_SET');
16065: exception
16066: when others then

Line 16144: hr_transaction_api.get_number_value

16140: begin
16141: hr_utility.set_location('Entering:'||l_proc, 5);
16142: /*
16143: l_assignment_id :=
16144: hr_transaction_api.get_number_value
16145: (p_transaction_step_id => p_transaction_step_id
16146: ,p_name => 'P_ASSIGNMENT_ID');
16147:
16148: open csr_new_object_number(l_assignment_id);

Line 16153: hr_transaction_api.get_number_value

16149: fetch csr_new_object_number into l_new_object_number;
16150: close csr_new_object_number;
16151:
16152: l_old_object_number :=
16153: hr_transaction_api.get_number_value
16154: (p_transaction_step_id => p_transaction_step_id
16155: ,p_name => 'P_OBJECT_VERSION_NUMBER');
16156:
16157: if l_old_object_number <> l_new_object_number then

Line 16158: hr_transaction_api.set_number_value

16154: (p_transaction_step_id => p_transaction_step_id
16155: ,p_name => 'P_OBJECT_VERSION_NUMBER');
16156:
16157: if l_old_object_number <> l_new_object_number then
16158: hr_transaction_api.set_number_value
16159: (p_transaction_step_id => p_transaction_step_id
16160: ,p_person_id => p_login_person_id
16161: ,p_name => 'P_OBJECT_VERSION_NUMBER'
16162: ,p_value => l_new_object_number);

Line 16982: l_main_per_date_of_birth := hr_transaction_api.get_date_value

16978: where hats1.item_type = 'HRSSA'
16979: and hats1.item_key = p_item_key
16980: and hats1.api_name in( 'HR_PROCESS_PERSON_SS.PROCESS_API', 'BEN_PROCESS_COBRA_PERSON_SS.PROCESS_API');
16981:
16982: l_main_per_date_of_birth := hr_transaction_api.get_date_value
16983: (p_transaction_step_id => l_validate_g_per_step_id
16984: ,p_name => 'P_DATE_OF_BIRTH') ;
16985:
16986: l_main_per_eff_start_date := hr_transaction_api.get_date_value

Line 16986: l_main_per_eff_start_date := hr_transaction_api.get_date_value

16982: l_main_per_date_of_birth := hr_transaction_api.get_date_value
16983: (p_transaction_step_id => l_validate_g_per_step_id
16984: ,p_name => 'P_DATE_OF_BIRTH') ;
16985:
16986: l_main_per_eff_start_date := hr_transaction_api.get_date_value
16987: (p_transaction_step_id => l_validate_g_per_step_id
16988: ,p_name => 'P_EFFECTIVE_DATE');
16989:
16990: exception