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 2344: hr_transaction_api.create_transaction_step

2340: END IF;
2341: --
2342: -- Create a transaction step
2343: --
2344: hr_transaction_api.create_transaction_step
2345: (p_validate => false
2346: ,p_creator_person_id => nvl(p_login_person_id, p_person_id)
2347: ,p_transaction_id => l_transaction_id
2348: ,p_api_name => g_package || '.PROCESS_API'

Line 4946: hr_transaction_api.get_transaction_step_info

4942: -- clicks the Back button on the Review page to go back to the Update page
4943: -- to make further changes or to correct errors.
4944: -----------------------------------------------------------------------------
4945: hr_utility.set_location('Entering:'||l_proc, 5);
4946: hr_transaction_api.get_transaction_step_info
4947: (p_item_type => p_item_type
4948: ,p_item_key => p_item_key
4949: ,p_activity_id => p_activity_id
4950: ,p_transaction_step_id => l_transaction_step_id

Line 5387: hr_transaction_api.get_number_value

5383: hr_utility.set_location('Entering:'||l_proc, 5);
5384:
5385: hr_utility.set_location('Setting the attributes:'||l_proc,10 );
5386: p_cont_object_version_number :=
5387: hr_transaction_api.get_number_value
5388: (p_transaction_step_id => p_transaction_step_id
5389: ,p_name =>upper( 'p_cont_object_version_number'));
5390:
5391: p_contact_relationship_id :=

Line 5392: hr_transaction_api.get_number_value

5388: (p_transaction_step_id => p_transaction_step_id
5389: ,p_name =>upper( 'p_cont_object_version_number'));
5390:
5391: p_contact_relationship_id :=
5392: hr_transaction_api.get_number_value
5393: (p_transaction_step_id => p_transaction_step_id
5394: ,p_name =>upper( 'p_contact_relationship_id'));
5395:
5396: p_contact_operation :=

Line 5397: hr_transaction_api.get_varchar2_value

5393: (p_transaction_step_id => p_transaction_step_id
5394: ,p_name =>upper( 'p_contact_relationship_id'));
5395:
5396: p_contact_operation :=
5397: hr_transaction_api.get_varchar2_value
5398: (p_transaction_step_id => p_transaction_step_id
5399: ,p_name =>upper( 'p_contact_operation'));
5400:
5401: p_emrg_cont_flag :=

Line 5402: hr_transaction_api.get_varchar2_value

5398: (p_transaction_step_id => p_transaction_step_id
5399: ,p_name =>upper( 'p_contact_operation'));
5400:
5401: p_emrg_cont_flag :=
5402: hr_transaction_api.get_varchar2_value
5403: (p_transaction_step_id => p_transaction_step_id
5404: ,p_name =>upper( 'p_emrg_cont_flag'));
5405:
5406: p_dpdnt_bnf_flag :=

Line 5407: hr_transaction_api.get_varchar2_value

5403: (p_transaction_step_id => p_transaction_step_id
5404: ,p_name =>upper( 'p_emrg_cont_flag'));
5405:
5406: p_dpdnt_bnf_flag :=
5407: hr_transaction_api.get_varchar2_value
5408: (p_transaction_step_id => p_transaction_step_id
5409: ,p_name =>upper( 'p_dpdnt_bnf_flag'));
5410:
5411: --bug# 2315163

Line 5413: hr_transaction_api.get_varchar2_value

5409: ,p_name =>upper( 'p_dpdnt_bnf_flag'));
5410:
5411: --bug# 2315163
5412: p_is_emrg_cont :=
5413: hr_transaction_api.get_varchar2_value
5414: (p_transaction_step_id => p_transaction_step_id
5415: ,p_name =>upper( 'p_is_emergency_contact'));
5416:
5417: p_is_dpdnt_bnf :=

Line 5418: hr_transaction_api.get_varchar2_value

5414: (p_transaction_step_id => p_transaction_step_id
5415: ,p_name =>upper( 'p_is_emergency_contact'));
5416:
5417: p_is_dpdnt_bnf :=
5418: hr_transaction_api.get_varchar2_value
5419: (p_transaction_step_id => p_transaction_step_id
5420: ,p_name =>upper( 'p_is_dpdnt_bnf'));
5421:
5422:

Line 5426: hr_transaction_api.get_date_value

5422:
5423: -- Bug 1914891
5424: --
5425: p_date_of_death :=
5426: hr_transaction_api.get_date_value
5427: (p_transaction_step_id => p_transaction_step_id
5428: ,p_name =>upper( 'p_date_of_death'));
5429: --
5430: -- ikasire

Line 5433: hr_transaction_api.get_date_value

5429: --
5430: -- ikasire
5431: --
5432: p_dpdnt_adoption_date :=
5433: hr_transaction_api.get_date_value
5434: (p_transaction_step_id => p_transaction_step_id
5435: ,p_name =>upper( 'p_dpdnt_adoption_date'));
5436: --
5437: p_start_date :=

Line 5438: hr_transaction_api.get_date_value

5434: (p_transaction_step_id => p_transaction_step_id
5435: ,p_name =>upper( 'p_dpdnt_adoption_date'));
5436: --
5437: p_start_date :=
5438: hr_transaction_api.get_date_value
5439: (p_transaction_step_id => p_transaction_step_id
5440: ,p_name =>upper( 'p_start_date'));
5441: --
5442: p_business_group_id :=

Line 5443: hr_transaction_api.get_number_value

5439: (p_transaction_step_id => p_transaction_step_id
5440: ,p_name =>upper( 'p_start_date'));
5441: --
5442: p_business_group_id :=
5443: hr_transaction_api.get_number_value
5444: (p_transaction_step_id => p_transaction_step_id
5445: ,p_name =>upper( 'p_business_group_id'));
5446: --
5447: p_person_id :=

Line 5448: hr_transaction_api.get_number_value

5444: (p_transaction_step_id => p_transaction_step_id
5445: ,p_name =>upper( 'p_business_group_id'));
5446: --
5447: p_person_id :=
5448: hr_transaction_api.get_number_value
5449: (p_transaction_step_id => p_transaction_step_id
5450: ,p_name =>upper( 'p_person_id'));
5451: --
5452: p_contact_person_id :=

Line 5453: hr_transaction_api.get_number_value

5449: (p_transaction_step_id => p_transaction_step_id
5450: ,p_name =>upper( 'p_person_id'));
5451: --
5452: p_contact_person_id :=
5453: hr_transaction_api.get_number_value
5454: (p_transaction_step_id => p_transaction_step_id
5455: ,p_name =>upper( 'p_contact_person_id'));
5456: --
5457: p_contact_type :=

Line 5458: hr_transaction_api.get_varchar2_value

5454: (p_transaction_step_id => p_transaction_step_id
5455: ,p_name =>upper( 'p_contact_person_id'));
5456: --
5457: p_contact_type :=
5458: hr_transaction_api.get_varchar2_value
5459: (p_transaction_step_id => p_transaction_step_id
5460: ,p_name =>upper( 'p_contact_type'));
5461: --
5462: -- Bug 1914891

Line 5467: hr_transaction_api.get_varchar2_value

5463: --
5464: p_contact_type_meaning := HR_GENERAL.DECODE_LOOKUP('CONTACT',p_contact_type);
5465: --
5466: p_ctr_comments :=
5467: hr_transaction_api.get_varchar2_value
5468: (p_transaction_step_id => p_transaction_step_id
5469: ,p_name =>upper( 'p_ctr_comments'));
5470: --
5471: p_primary_contact_flag :=

Line 5472: hr_transaction_api.get_varchar2_value

5468: (p_transaction_step_id => p_transaction_step_id
5469: ,p_name =>upper( 'p_ctr_comments'));
5470: --
5471: p_primary_contact_flag :=
5472: hr_transaction_api.get_varchar2_value
5473: (p_transaction_step_id => p_transaction_step_id
5474: ,p_name =>upper( 'p_primary_contact_flag'));
5475: --
5476: p_date_start :=

Line 5477: hr_transaction_api.get_date_value

5473: (p_transaction_step_id => p_transaction_step_id
5474: ,p_name =>upper( 'p_primary_contact_flag'));
5475: --
5476: p_date_start :=
5477: hr_transaction_api.get_date_value
5478: (p_transaction_step_id => p_transaction_step_id
5479: ,p_name =>upper( 'p_date_start'));
5480: --
5481: p_start_life_reason_id :=

Line 5482: hr_transaction_api.get_number_value

5478: (p_transaction_step_id => p_transaction_step_id
5479: ,p_name =>upper( 'p_date_start'));
5480: --
5481: p_start_life_reason_id :=
5482: hr_transaction_api.get_number_value
5483: (p_transaction_step_id => p_transaction_step_id
5484: ,p_name =>upper( 'p_start_life_reason_id'));
5485: --
5486: p_date_end :=

Line 5487: hr_transaction_api.get_date_value

5483: (p_transaction_step_id => p_transaction_step_id
5484: ,p_name =>upper( 'p_start_life_reason_id'));
5485: --
5486: p_date_end :=
5487: hr_transaction_api.get_date_value
5488: (p_transaction_step_id => p_transaction_step_id
5489: ,p_name =>upper( 'p_date_end'));
5490: --
5491: p_end_life_reason_id :=

Line 5492: hr_transaction_api.get_number_value

5488: (p_transaction_step_id => p_transaction_step_id
5489: ,p_name =>upper( 'p_date_end'));
5490: --
5491: p_end_life_reason_id :=
5492: hr_transaction_api.get_number_value
5493: (p_transaction_step_id => p_transaction_step_id
5494: ,p_name =>upper( 'p_end_life_reason_id'));
5495: --
5496: p_rltd_per_rsds_w_dsgntr_flag :=

Line 5497: hr_transaction_api.get_varchar2_value

5493: (p_transaction_step_id => p_transaction_step_id
5494: ,p_name =>upper( 'p_end_life_reason_id'));
5495: --
5496: p_rltd_per_rsds_w_dsgntr_flag :=
5497: hr_transaction_api.get_varchar2_value
5498: (p_transaction_step_id => p_transaction_step_id
5499: ,p_name =>upper( 'p_rltd_per_rsds_w_dsgntr_flag'));
5500: --
5501: p_personal_flag :=

Line 5502: hr_transaction_api.get_varchar2_value

5498: (p_transaction_step_id => p_transaction_step_id
5499: ,p_name =>upper( 'p_rltd_per_rsds_w_dsgntr_flag'));
5500: --
5501: p_personal_flag :=
5502: hr_transaction_api.get_varchar2_value
5503: (p_transaction_step_id => p_transaction_step_id
5504: ,p_name =>upper( 'p_personal_flag'));
5505: --
5506: p_sequence_number :=

Line 5507: hr_transaction_api.get_number_value

5503: (p_transaction_step_id => p_transaction_step_id
5504: ,p_name =>upper( 'p_personal_flag'));
5505: --
5506: p_sequence_number :=
5507: hr_transaction_api.get_number_value
5508: (p_transaction_step_id => p_transaction_step_id
5509: ,p_name =>upper( 'p_sequence_number'));
5510: --
5511: p_cont_attribute_category :=

Line 5512: hr_transaction_api.get_varchar2_value

5508: (p_transaction_step_id => p_transaction_step_id
5509: ,p_name =>upper( 'p_sequence_number'));
5510: --
5511: p_cont_attribute_category :=
5512: hr_transaction_api.get_varchar2_value
5513: (p_transaction_step_id => p_transaction_step_id
5514: ,p_name =>upper( 'p_cont_attribute_category'));
5515: --
5516: p_cont_attribute1 :=

Line 5517: hr_transaction_api.get_varchar2_value

5513: (p_transaction_step_id => p_transaction_step_id
5514: ,p_name =>upper( 'p_cont_attribute_category'));
5515: --
5516: p_cont_attribute1 :=
5517: hr_transaction_api.get_varchar2_value
5518: (p_transaction_step_id => p_transaction_step_id
5519: ,p_name =>upper( 'p_cont_attribute1'));
5520: --
5521: p_cont_attribute2 :=

Line 5522: hr_transaction_api.get_varchar2_value

5518: (p_transaction_step_id => p_transaction_step_id
5519: ,p_name =>upper( 'p_cont_attribute1'));
5520: --
5521: p_cont_attribute2 :=
5522: hr_transaction_api.get_varchar2_value
5523: (p_transaction_step_id => p_transaction_step_id
5524: ,p_name =>upper( 'p_cont_attribute2'));
5525: --
5526: p_cont_attribute3 :=

Line 5527: hr_transaction_api.get_varchar2_value

5523: (p_transaction_step_id => p_transaction_step_id
5524: ,p_name =>upper( 'p_cont_attribute2'));
5525: --
5526: p_cont_attribute3 :=
5527: hr_transaction_api.get_varchar2_value
5528: (p_transaction_step_id => p_transaction_step_id
5529: ,p_name =>upper( 'p_cont_attribute3'));
5530: --
5531: p_cont_attribute4 :=

Line 5532: hr_transaction_api.get_varchar2_value

5528: (p_transaction_step_id => p_transaction_step_id
5529: ,p_name =>upper( 'p_cont_attribute3'));
5530: --
5531: p_cont_attribute4 :=
5532: hr_transaction_api.get_varchar2_value
5533: (p_transaction_step_id => p_transaction_step_id
5534: ,p_name =>upper( 'p_cont_attribute4'));
5535: --
5536: p_cont_attribute5 :=

Line 5537: hr_transaction_api.get_varchar2_value

5533: (p_transaction_step_id => p_transaction_step_id
5534: ,p_name =>upper( 'p_cont_attribute4'));
5535: --
5536: p_cont_attribute5 :=
5537: hr_transaction_api.get_varchar2_value
5538: (p_transaction_step_id => p_transaction_step_id
5539: ,p_name =>upper( 'p_cont_attribute5'));
5540: --
5541: p_cont_attribute6 :=

Line 5542: hr_transaction_api.get_varchar2_value

5538: (p_transaction_step_id => p_transaction_step_id
5539: ,p_name =>upper( 'p_cont_attribute5'));
5540: --
5541: p_cont_attribute6 :=
5542: hr_transaction_api.get_varchar2_value
5543: (p_transaction_step_id => p_transaction_step_id
5544: ,p_name =>upper( 'p_cont_attribute6'));
5545: --
5546: p_cont_attribute7 :=

Line 5547: hr_transaction_api.get_varchar2_value

5543: (p_transaction_step_id => p_transaction_step_id
5544: ,p_name =>upper( 'p_cont_attribute6'));
5545: --
5546: p_cont_attribute7 :=
5547: hr_transaction_api.get_varchar2_value
5548: (p_transaction_step_id => p_transaction_step_id
5549: ,p_name =>upper( 'p_cont_attribute7'));
5550: --
5551: p_cont_attribute8 :=

Line 5552: hr_transaction_api.get_varchar2_value

5548: (p_transaction_step_id => p_transaction_step_id
5549: ,p_name =>upper( 'p_cont_attribute7'));
5550: --
5551: p_cont_attribute8 :=
5552: hr_transaction_api.get_varchar2_value
5553: (p_transaction_step_id => p_transaction_step_id
5554: ,p_name =>upper( 'p_cont_attribute8'));
5555: --
5556: p_cont_attribute9 :=

Line 5557: hr_transaction_api.get_varchar2_value

5553: (p_transaction_step_id => p_transaction_step_id
5554: ,p_name =>upper( 'p_cont_attribute8'));
5555: --
5556: p_cont_attribute9 :=
5557: hr_transaction_api.get_varchar2_value
5558: (p_transaction_step_id => p_transaction_step_id
5559: ,p_name =>upper( 'p_cont_attribute9'));
5560: --
5561: p_cont_attribute10 :=

Line 5562: hr_transaction_api.get_varchar2_value

5558: (p_transaction_step_id => p_transaction_step_id
5559: ,p_name =>upper( 'p_cont_attribute9'));
5560: --
5561: p_cont_attribute10 :=
5562: hr_transaction_api.get_varchar2_value
5563: (p_transaction_step_id => p_transaction_step_id
5564: ,p_name =>upper( 'p_cont_attribute10'));
5565: --
5566: p_cont_attribute11 :=

Line 5567: hr_transaction_api.get_varchar2_value

5563: (p_transaction_step_id => p_transaction_step_id
5564: ,p_name =>upper( 'p_cont_attribute10'));
5565: --
5566: p_cont_attribute11 :=
5567: hr_transaction_api.get_varchar2_value
5568: (p_transaction_step_id => p_transaction_step_id
5569: ,p_name =>upper( 'p_cont_attribute11'));
5570: --
5571: p_cont_attribute12 :=

Line 5572: hr_transaction_api.get_varchar2_value

5568: (p_transaction_step_id => p_transaction_step_id
5569: ,p_name =>upper( 'p_cont_attribute11'));
5570: --
5571: p_cont_attribute12 :=
5572: hr_transaction_api.get_varchar2_value
5573: (p_transaction_step_id => p_transaction_step_id
5574: ,p_name =>upper( 'p_cont_attribute12'));
5575: --
5576: p_cont_attribute13 :=

Line 5577: hr_transaction_api.get_varchar2_value

5573: (p_transaction_step_id => p_transaction_step_id
5574: ,p_name =>upper( 'p_cont_attribute12'));
5575: --
5576: p_cont_attribute13 :=
5577: hr_transaction_api.get_varchar2_value
5578: (p_transaction_step_id => p_transaction_step_id
5579: ,p_name =>upper( 'p_cont_attribute13'));
5580: --
5581: p_cont_attribute14 :=

Line 5582: hr_transaction_api.get_varchar2_value

5578: (p_transaction_step_id => p_transaction_step_id
5579: ,p_name =>upper( 'p_cont_attribute13'));
5580: --
5581: p_cont_attribute14 :=
5582: hr_transaction_api.get_varchar2_value
5583: (p_transaction_step_id => p_transaction_step_id
5584: ,p_name =>upper( 'p_cont_attribute14'));
5585: --
5586: p_cont_attribute15 :=

Line 5587: hr_transaction_api.get_varchar2_value

5583: (p_transaction_step_id => p_transaction_step_id
5584: ,p_name =>upper( 'p_cont_attribute14'));
5585: --
5586: p_cont_attribute15 :=
5587: hr_transaction_api.get_varchar2_value
5588: (p_transaction_step_id => p_transaction_step_id
5589: ,p_name =>upper( 'p_cont_attribute15'));
5590: --
5591: p_cont_attribute16 :=

Line 5592: hr_transaction_api.get_varchar2_value

5588: (p_transaction_step_id => p_transaction_step_id
5589: ,p_name =>upper( 'p_cont_attribute15'));
5590: --
5591: p_cont_attribute16 :=
5592: hr_transaction_api.get_varchar2_value
5593: (p_transaction_step_id => p_transaction_step_id
5594: ,p_name =>upper( 'p_cont_attribute16'));
5595: --
5596: p_cont_attribute17 :=

Line 5597: hr_transaction_api.get_varchar2_value

5593: (p_transaction_step_id => p_transaction_step_id
5594: ,p_name =>upper( 'p_cont_attribute16'));
5595: --
5596: p_cont_attribute17 :=
5597: hr_transaction_api.get_varchar2_value
5598: (p_transaction_step_id => p_transaction_step_id
5599: ,p_name =>upper( 'p_cont_attribute17'));
5600: --
5601: p_cont_attribute18 :=

Line 5602: hr_transaction_api.get_varchar2_value

5598: (p_transaction_step_id => p_transaction_step_id
5599: ,p_name =>upper( 'p_cont_attribute17'));
5600: --
5601: p_cont_attribute18 :=
5602: hr_transaction_api.get_varchar2_value
5603: (p_transaction_step_id => p_transaction_step_id
5604: ,p_name =>upper( 'p_cont_attribute18'));
5605: --
5606: p_cont_attribute19 :=

Line 5607: hr_transaction_api.get_varchar2_value

5603: (p_transaction_step_id => p_transaction_step_id
5604: ,p_name =>upper( 'p_cont_attribute18'));
5605: --
5606: p_cont_attribute19 :=
5607: hr_transaction_api.get_varchar2_value
5608: (p_transaction_step_id => p_transaction_step_id
5609: ,p_name =>upper( 'p_cont_attribute19'));
5610: --
5611: p_cont_attribute20 :=

Line 5612: hr_transaction_api.get_varchar2_value

5608: (p_transaction_step_id => p_transaction_step_id
5609: ,p_name =>upper( 'p_cont_attribute19'));
5610: --
5611: p_cont_attribute20 :=
5612: hr_transaction_api.get_varchar2_value
5613: (p_transaction_step_id => p_transaction_step_id
5614: ,p_name =>upper( 'p_cont_attribute20'));
5615: --
5616: p_third_party_pay_flag :=

Line 5617: hr_transaction_api.get_varchar2_value

5613: (p_transaction_step_id => p_transaction_step_id
5614: ,p_name =>upper( 'p_cont_attribute20'));
5615: --
5616: p_third_party_pay_flag :=
5617: hr_transaction_api.get_varchar2_value
5618: (p_transaction_step_id => p_transaction_step_id
5619: ,p_name =>upper( 'p_third_party_pay_flag'));
5620: --
5621: p_bondholder_flag :=

Line 5622: hr_transaction_api.get_varchar2_value

5618: (p_transaction_step_id => p_transaction_step_id
5619: ,p_name =>upper( 'p_third_party_pay_flag'));
5620: --
5621: p_bondholder_flag :=
5622: hr_transaction_api.get_varchar2_value
5623: (p_transaction_step_id => p_transaction_step_id
5624: ,p_name =>upper( 'p_bondholder_flag'));
5625: --
5626: p_dependent_flag :=

Line 5627: hr_transaction_api.get_varchar2_value

5623: (p_transaction_step_id => p_transaction_step_id
5624: ,p_name =>upper( 'p_bondholder_flag'));
5625: --
5626: p_dependent_flag :=
5627: hr_transaction_api.get_varchar2_value
5628: (p_transaction_step_id => p_transaction_step_id
5629: ,p_name =>upper( 'p_dependent_flag'));
5630: --
5631: p_beneficiary_flag :=

Line 5632: hr_transaction_api.get_varchar2_value

5628: (p_transaction_step_id => p_transaction_step_id
5629: ,p_name =>upper( 'p_dependent_flag'));
5630: --
5631: p_beneficiary_flag :=
5632: hr_transaction_api.get_varchar2_value
5633: (p_transaction_step_id => p_transaction_step_id
5634: ,p_name =>upper( 'p_beneficiary_flag'));
5635: --
5636: p_last_name :=

Line 5637: hr_transaction_api.get_varchar2_value

5633: (p_transaction_step_id => p_transaction_step_id
5634: ,p_name =>upper( 'p_beneficiary_flag'));
5635: --
5636: p_last_name :=
5637: hr_transaction_api.get_varchar2_value
5638: (p_transaction_step_id => p_transaction_step_id
5639: ,p_name =>upper( 'p_last_name'));
5640: --
5641: p_sex :=

Line 5642: hr_transaction_api.get_varchar2_value

5638: (p_transaction_step_id => p_transaction_step_id
5639: ,p_name =>upper( 'p_last_name'));
5640: --
5641: p_sex :=
5642: hr_transaction_api.get_varchar2_value
5643: (p_transaction_step_id => p_transaction_step_id
5644: ,p_name =>upper( 'p_sex'));
5645: --
5646: p_sex_meaning := HR_GENERAL.DECODE_LOOKUP('SEX',p_sex); -- 7777

Line 5649: hr_transaction_api.get_varchar2_value

5645: --
5646: p_sex_meaning := HR_GENERAL.DECODE_LOOKUP('SEX',p_sex); -- 7777
5647: --
5648: p_uses_tobacco_flag :=
5649: hr_transaction_api.get_varchar2_value
5650: (p_transaction_step_id => p_transaction_step_id
5651: ,p_name =>upper( 'p_uses_tobacco_flag'));
5652: --
5653: p_uses_tobacco_meaning := HR_GENERAL.DECODE_LOOKUP('TOBACCO_USER',p_uses_tobacco_flag); -- 7777

Line 5656: hr_transaction_api.get_varchar2_value

5652: --
5653: p_uses_tobacco_meaning := HR_GENERAL.DECODE_LOOKUP('TOBACCO_USER',p_uses_tobacco_flag); -- 7777
5654: --
5655: p_on_military_service :=
5656: hr_transaction_api.get_varchar2_value
5657: (p_transaction_step_id => p_transaction_step_id
5658: ,p_name =>upper( 'p_on_military_service'));
5659: --
5660: p_on_military_service_meaning := HR_GENERAL.DECODE_LOOKUP('YES_NO',p_on_military_service); -- 7777

Line 5663: hr_transaction_api.get_varchar2_value

5659: --
5660: p_on_military_service_meaning := HR_GENERAL.DECODE_LOOKUP('YES_NO',p_on_military_service); -- 7777
5661: --
5662: p_dpdnt_vlntry_svce_flag :=
5663: hr_transaction_api.get_varchar2_value
5664: (p_transaction_step_id => p_transaction_step_id
5665: ,p_name =>upper( 'p_dpdnt_vlntry_svce_flag'));
5666: --
5667: p_dpdnt_vlntry_svce_meaning := HR_GENERAL.DECODE_LOOKUP('YES_NO',p_dpdnt_vlntry_svce_flag); -- 7777

Line 5670: hr_transaction_api.get_number_value

5666: --
5667: p_dpdnt_vlntry_svce_meaning := HR_GENERAL.DECODE_LOOKUP('YES_NO',p_dpdnt_vlntry_svce_flag); -- 7777
5668: --
5669: p_person_type_id :=
5670: hr_transaction_api.get_number_value
5671: (p_transaction_step_id => p_transaction_step_id
5672: ,p_name =>upper( 'p_person_type_id'));
5673: --
5674: p_per_comments :=

Line 5675: hr_transaction_api.get_varchar2_value

5671: (p_transaction_step_id => p_transaction_step_id
5672: ,p_name =>upper( 'p_person_type_id'));
5673: --
5674: p_per_comments :=
5675: hr_transaction_api.get_varchar2_value
5676: (p_transaction_step_id => p_transaction_step_id
5677: ,p_name =>upper( 'p_per_comments'));
5678: --
5679: p_date_of_birth :=

Line 5680: hr_transaction_api.get_date_value

5676: (p_transaction_step_id => p_transaction_step_id
5677: ,p_name =>upper( 'p_per_comments'));
5678: --
5679: p_date_of_birth :=
5680: hr_transaction_api.get_date_value
5681: (p_transaction_step_id => p_transaction_step_id
5682: ,p_name =>upper( 'p_date_of_birth'));
5683: --
5684: p_email_address :=

Line 5685: hr_transaction_api.get_varchar2_value

5681: (p_transaction_step_id => p_transaction_step_id
5682: ,p_name =>upper( 'p_date_of_birth'));
5683: --
5684: p_email_address :=
5685: hr_transaction_api.get_varchar2_value
5686: (p_transaction_step_id => p_transaction_step_id
5687: ,p_name =>upper( 'p_email_address'));
5688: --
5689: p_first_name :=

Line 5690: hr_transaction_api.get_varchar2_value

5686: (p_transaction_step_id => p_transaction_step_id
5687: ,p_name =>upper( 'p_email_address'));
5688: --
5689: p_first_name :=
5690: hr_transaction_api.get_varchar2_value
5691: (p_transaction_step_id => p_transaction_step_id
5692: ,p_name =>upper( 'p_first_name'));
5693: --
5694: p_known_as :=

Line 5695: hr_transaction_api.get_varchar2_value

5691: (p_transaction_step_id => p_transaction_step_id
5692: ,p_name =>upper( 'p_first_name'));
5693: --
5694: p_known_as :=
5695: hr_transaction_api.get_varchar2_value
5696: (p_transaction_step_id => p_transaction_step_id
5697: ,p_name =>upper( 'p_known_as'));
5698: --
5699: p_marital_status :=

Line 5700: hr_transaction_api.get_varchar2_value

5696: (p_transaction_step_id => p_transaction_step_id
5697: ,p_name =>upper( 'p_known_as'));
5698: --
5699: p_marital_status :=
5700: hr_transaction_api.get_varchar2_value
5701: (p_transaction_step_id => p_transaction_step_id
5702: ,p_name =>upper( 'p_marital_status'));
5703: --
5704: p_marital_status_meaning := HR_GENERAL.DECODE_LOOKUP('MAR_STATUS',p_marital_status); -- 7777

Line 5708: hr_transaction_api.get_varchar2_value

5704: p_marital_status_meaning := HR_GENERAL.DECODE_LOOKUP('MAR_STATUS',p_marital_status); -- 7777
5705: --
5706: --
5707: p_student_status := -- 12345
5708: hr_transaction_api.get_varchar2_value
5709: (p_transaction_step_id => p_transaction_step_id
5710: ,p_name =>upper( 'p_student_status'));
5711: --
5712: p_student_status_meaning := HR_GENERAL.DECODE_LOOKUP('STUDENT_STATUS',p_student_status); -- 7777

Line 5715: hr_transaction_api.get_varchar2_value

5711: --
5712: p_student_status_meaning := HR_GENERAL.DECODE_LOOKUP('STUDENT_STATUS',p_student_status); -- 7777
5713: --
5714: p_middle_names :=
5715: hr_transaction_api.get_varchar2_value
5716: (p_transaction_step_id => p_transaction_step_id
5717: ,p_name =>upper( 'p_middle_names'));
5718: --
5719: p_nationality :=

Line 5720: hr_transaction_api.get_varchar2_value

5716: (p_transaction_step_id => p_transaction_step_id
5717: ,p_name =>upper( 'p_middle_names'));
5718: --
5719: p_nationality :=
5720: hr_transaction_api.get_varchar2_value
5721: (p_transaction_step_id => p_transaction_step_id
5722: ,p_name =>upper( 'p_nationality'));
5723: --
5724: p_national_identifier :=

Line 5725: hr_transaction_api.get_varchar2_value

5721: (p_transaction_step_id => p_transaction_step_id
5722: ,p_name =>upper( 'p_nationality'));
5723: --
5724: p_national_identifier :=
5725: hr_transaction_api.get_varchar2_value
5726: (p_transaction_step_id => p_transaction_step_id
5727: ,p_name =>upper( 'p_national_identifier'));
5728: --
5729: p_previous_last_name :=

Line 5730: hr_transaction_api.get_varchar2_value

5726: (p_transaction_step_id => p_transaction_step_id
5727: ,p_name =>upper( 'p_national_identifier'));
5728: --
5729: p_previous_last_name :=
5730: hr_transaction_api.get_varchar2_value
5731: (p_transaction_step_id => p_transaction_step_id
5732: ,p_name =>upper( 'p_previous_last_name'));
5733: --
5734: p_registered_disabled_flag :=

Line 5735: hr_transaction_api.get_varchar2_value

5731: (p_transaction_step_id => p_transaction_step_id
5732: ,p_name =>upper( 'p_previous_last_name'));
5733: --
5734: p_registered_disabled_flag :=
5735: hr_transaction_api.get_varchar2_value
5736: (p_transaction_step_id => p_transaction_step_id
5737: ,p_name =>upper( 'p_registered_disabled_flag'));
5738: --
5739: p_registered_disabled := HR_GENERAL.DECODE_LOOKUP('REGISTERED_DISABLED', p_registered_disabled_flag);

Line 5742: hr_transaction_api.get_varchar2_value

5738: --
5739: p_registered_disabled := HR_GENERAL.DECODE_LOOKUP('REGISTERED_DISABLED', p_registered_disabled_flag);
5740: --
5741: p_title :=
5742: hr_transaction_api.get_varchar2_value
5743: (p_transaction_step_id => p_transaction_step_id
5744: ,p_name =>upper( 'p_title'));
5745: --
5746: -- Bug 1914891

Line 5751: hr_transaction_api.get_varchar2_value

5747: --
5748: p_title_meaning := HR_GENERAL.DECODE_LOOKUP('TITLE', p_title);
5749: --
5750: p_work_telephone :=
5751: hr_transaction_api.get_varchar2_value
5752: (p_transaction_step_id => p_transaction_step_id
5753: ,p_name =>upper( 'p_work_telephone'));
5754: --
5755: p_attribute_category :=

Line 5756: hr_transaction_api.get_varchar2_value

5752: (p_transaction_step_id => p_transaction_step_id
5753: ,p_name =>upper( 'p_work_telephone'));
5754: --
5755: p_attribute_category :=
5756: hr_transaction_api.get_varchar2_value
5757: (p_transaction_step_id => p_transaction_step_id
5758: ,p_name =>upper( 'p_attribute_category'));
5759: --
5760: p_attribute1 :=

Line 5761: hr_transaction_api.get_varchar2_value

5757: (p_transaction_step_id => p_transaction_step_id
5758: ,p_name =>upper( 'p_attribute_category'));
5759: --
5760: p_attribute1 :=
5761: hr_transaction_api.get_varchar2_value
5762: (p_transaction_step_id => p_transaction_step_id
5763: ,p_name =>upper( 'p_attribute1'));
5764: --
5765: p_attribute2 :=

Line 5766: hr_transaction_api.get_varchar2_value

5762: (p_transaction_step_id => p_transaction_step_id
5763: ,p_name =>upper( 'p_attribute1'));
5764: --
5765: p_attribute2 :=
5766: hr_transaction_api.get_varchar2_value
5767: (p_transaction_step_id => p_transaction_step_id
5768: ,p_name =>upper( 'p_attribute2'));
5769: --
5770: p_attribute3 :=

Line 5771: hr_transaction_api.get_varchar2_value

5767: (p_transaction_step_id => p_transaction_step_id
5768: ,p_name =>upper( 'p_attribute2'));
5769: --
5770: p_attribute3 :=
5771: hr_transaction_api.get_varchar2_value
5772: (p_transaction_step_id => p_transaction_step_id
5773: ,p_name =>upper( 'p_attribute3'));
5774: --
5775: p_attribute4 :=

Line 5776: hr_transaction_api.get_varchar2_value

5772: (p_transaction_step_id => p_transaction_step_id
5773: ,p_name =>upper( 'p_attribute3'));
5774: --
5775: p_attribute4 :=
5776: hr_transaction_api.get_varchar2_value
5777: (p_transaction_step_id => p_transaction_step_id
5778: ,p_name =>upper( 'p_attribute4'));
5779: --
5780: p_attribute5 :=

Line 5781: hr_transaction_api.get_varchar2_value

5777: (p_transaction_step_id => p_transaction_step_id
5778: ,p_name =>upper( 'p_attribute4'));
5779: --
5780: p_attribute5 :=
5781: hr_transaction_api.get_varchar2_value
5782: (p_transaction_step_id => p_transaction_step_id
5783: ,p_name =>upper( 'p_attribute5'));
5784: --
5785: p_attribute6 :=

Line 5786: hr_transaction_api.get_varchar2_value

5782: (p_transaction_step_id => p_transaction_step_id
5783: ,p_name =>upper( 'p_attribute5'));
5784: --
5785: p_attribute6 :=
5786: hr_transaction_api.get_varchar2_value
5787: (p_transaction_step_id => p_transaction_step_id
5788: ,p_name =>upper( 'p_attribute6'));
5789: --
5790: p_attribute7 :=

Line 5791: hr_transaction_api.get_varchar2_value

5787: (p_transaction_step_id => p_transaction_step_id
5788: ,p_name =>upper( 'p_attribute6'));
5789: --
5790: p_attribute7 :=
5791: hr_transaction_api.get_varchar2_value
5792: (p_transaction_step_id => p_transaction_step_id
5793: ,p_name =>upper( 'p_attribute7'));
5794: --
5795: p_attribute8 :=

Line 5796: hr_transaction_api.get_varchar2_value

5792: (p_transaction_step_id => p_transaction_step_id
5793: ,p_name =>upper( 'p_attribute7'));
5794: --
5795: p_attribute8 :=
5796: hr_transaction_api.get_varchar2_value
5797: (p_transaction_step_id => p_transaction_step_id
5798: ,p_name =>upper( 'p_attribute8'));
5799: --
5800: p_attribute9 :=

Line 5801: hr_transaction_api.get_varchar2_value

5797: (p_transaction_step_id => p_transaction_step_id
5798: ,p_name =>upper( 'p_attribute8'));
5799: --
5800: p_attribute9 :=
5801: hr_transaction_api.get_varchar2_value
5802: (p_transaction_step_id => p_transaction_step_id
5803: ,p_name =>upper( 'p_attribute9'));
5804: --
5805: p_attribute10 :=

Line 5806: hr_transaction_api.get_varchar2_value

5802: (p_transaction_step_id => p_transaction_step_id
5803: ,p_name =>upper( 'p_attribute9'));
5804: --
5805: p_attribute10 :=
5806: hr_transaction_api.get_varchar2_value
5807: (p_transaction_step_id => p_transaction_step_id
5808: ,p_name =>upper( 'p_attribute10'));
5809: --
5810: p_attribute11 :=

Line 5811: hr_transaction_api.get_varchar2_value

5807: (p_transaction_step_id => p_transaction_step_id
5808: ,p_name =>upper( 'p_attribute10'));
5809: --
5810: p_attribute11 :=
5811: hr_transaction_api.get_varchar2_value
5812: (p_transaction_step_id => p_transaction_step_id
5813: ,p_name =>upper( 'p_attribute11'));
5814: --
5815: p_attribute12 :=

Line 5816: hr_transaction_api.get_varchar2_value

5812: (p_transaction_step_id => p_transaction_step_id
5813: ,p_name =>upper( 'p_attribute11'));
5814: --
5815: p_attribute12 :=
5816: hr_transaction_api.get_varchar2_value
5817: (p_transaction_step_id => p_transaction_step_id
5818: ,p_name =>upper( 'p_attribute12'));
5819: --
5820: p_attribute13 :=

Line 5821: hr_transaction_api.get_varchar2_value

5817: (p_transaction_step_id => p_transaction_step_id
5818: ,p_name =>upper( 'p_attribute12'));
5819: --
5820: p_attribute13 :=
5821: hr_transaction_api.get_varchar2_value
5822: (p_transaction_step_id => p_transaction_step_id
5823: ,p_name =>upper( 'p_attribute13'));
5824: --
5825: p_attribute14 :=

Line 5826: hr_transaction_api.get_varchar2_value

5822: (p_transaction_step_id => p_transaction_step_id
5823: ,p_name =>upper( 'p_attribute13'));
5824: --
5825: p_attribute14 :=
5826: hr_transaction_api.get_varchar2_value
5827: (p_transaction_step_id => p_transaction_step_id
5828: ,p_name =>upper( 'p_attribute14'));
5829: --
5830: p_attribute15 :=

Line 5831: hr_transaction_api.get_varchar2_value

5827: (p_transaction_step_id => p_transaction_step_id
5828: ,p_name =>upper( 'p_attribute14'));
5829: --
5830: p_attribute15 :=
5831: hr_transaction_api.get_varchar2_value
5832: (p_transaction_step_id => p_transaction_step_id
5833: ,p_name =>upper( 'p_attribute15'));
5834: --
5835: p_attribute16 :=

Line 5836: hr_transaction_api.get_varchar2_value

5832: (p_transaction_step_id => p_transaction_step_id
5833: ,p_name =>upper( 'p_attribute15'));
5834: --
5835: p_attribute16 :=
5836: hr_transaction_api.get_varchar2_value
5837: (p_transaction_step_id => p_transaction_step_id
5838: ,p_name =>upper( 'p_attribute16'));
5839: --
5840: p_attribute17 :=

Line 5841: hr_transaction_api.get_varchar2_value

5837: (p_transaction_step_id => p_transaction_step_id
5838: ,p_name =>upper( 'p_attribute16'));
5839: --
5840: p_attribute17 :=
5841: hr_transaction_api.get_varchar2_value
5842: (p_transaction_step_id => p_transaction_step_id
5843: ,p_name =>upper( 'p_attribute17'));
5844: --
5845: p_attribute18 :=

Line 5846: hr_transaction_api.get_varchar2_value

5842: (p_transaction_step_id => p_transaction_step_id
5843: ,p_name =>upper( 'p_attribute17'));
5844: --
5845: p_attribute18 :=
5846: hr_transaction_api.get_varchar2_value
5847: (p_transaction_step_id => p_transaction_step_id
5848: ,p_name =>upper( 'p_attribute18'));
5849: --
5850: p_attribute19 :=

Line 5851: hr_transaction_api.get_varchar2_value

5847: (p_transaction_step_id => p_transaction_step_id
5848: ,p_name =>upper( 'p_attribute18'));
5849: --
5850: p_attribute19 :=
5851: hr_transaction_api.get_varchar2_value
5852: (p_transaction_step_id => p_transaction_step_id
5853: ,p_name =>upper( 'p_attribute19'));
5854: --
5855: p_attribute20 :=

Line 5856: hr_transaction_api.get_varchar2_value

5852: (p_transaction_step_id => p_transaction_step_id
5853: ,p_name =>upper( 'p_attribute19'));
5854: --
5855: p_attribute20 :=
5856: hr_transaction_api.get_varchar2_value
5857: (p_transaction_step_id => p_transaction_step_id
5858: ,p_name =>upper( 'p_attribute20'));
5859: --
5860: p_attribute21 :=

Line 5861: hr_transaction_api.get_varchar2_value

5857: (p_transaction_step_id => p_transaction_step_id
5858: ,p_name =>upper( 'p_attribute20'));
5859: --
5860: p_attribute21 :=
5861: hr_transaction_api.get_varchar2_value
5862: (p_transaction_step_id => p_transaction_step_id
5863: ,p_name =>upper( 'p_attribute21'));
5864: --
5865: p_attribute22 :=

Line 5866: hr_transaction_api.get_varchar2_value

5862: (p_transaction_step_id => p_transaction_step_id
5863: ,p_name =>upper( 'p_attribute21'));
5864: --
5865: p_attribute22 :=
5866: hr_transaction_api.get_varchar2_value
5867: (p_transaction_step_id => p_transaction_step_id
5868: ,p_name =>upper( 'p_attribute22'));
5869: --
5870: p_attribute23 :=

Line 5871: hr_transaction_api.get_varchar2_value

5867: (p_transaction_step_id => p_transaction_step_id
5868: ,p_name =>upper( 'p_attribute22'));
5869: --
5870: p_attribute23 :=
5871: hr_transaction_api.get_varchar2_value
5872: (p_transaction_step_id => p_transaction_step_id
5873: ,p_name =>upper( 'p_attribute23'));
5874: --
5875: p_attribute24 :=

Line 5876: hr_transaction_api.get_varchar2_value

5872: (p_transaction_step_id => p_transaction_step_id
5873: ,p_name =>upper( 'p_attribute23'));
5874: --
5875: p_attribute24 :=
5876: hr_transaction_api.get_varchar2_value
5877: (p_transaction_step_id => p_transaction_step_id
5878: ,p_name =>upper( 'p_attribute24'));
5879: --
5880: p_attribute25 :=

Line 5881: hr_transaction_api.get_varchar2_value

5877: (p_transaction_step_id => p_transaction_step_id
5878: ,p_name =>upper( 'p_attribute24'));
5879: --
5880: p_attribute25 :=
5881: hr_transaction_api.get_varchar2_value
5882: (p_transaction_step_id => p_transaction_step_id
5883: ,p_name =>upper( 'p_attribute25'));
5884: --
5885: p_attribute26 :=

Line 5886: hr_transaction_api.get_varchar2_value

5882: (p_transaction_step_id => p_transaction_step_id
5883: ,p_name =>upper( 'p_attribute25'));
5884: --
5885: p_attribute26 :=
5886: hr_transaction_api.get_varchar2_value
5887: (p_transaction_step_id => p_transaction_step_id
5888: ,p_name =>upper( 'p_attribute26'));
5889: --
5890: p_attribute27 :=

Line 5891: hr_transaction_api.get_varchar2_value

5887: (p_transaction_step_id => p_transaction_step_id
5888: ,p_name =>upper( 'p_attribute26'));
5889: --
5890: p_attribute27 :=
5891: hr_transaction_api.get_varchar2_value
5892: (p_transaction_step_id => p_transaction_step_id
5893: ,p_name =>upper( 'p_attribute27'));
5894: --
5895: p_attribute28 :=

Line 5896: hr_transaction_api.get_varchar2_value

5892: (p_transaction_step_id => p_transaction_step_id
5893: ,p_name =>upper( 'p_attribute27'));
5894: --
5895: p_attribute28 :=
5896: hr_transaction_api.get_varchar2_value
5897: (p_transaction_step_id => p_transaction_step_id
5898: ,p_name =>upper( 'p_attribute28'));
5899: --
5900: p_attribute29 :=

Line 5901: hr_transaction_api.get_varchar2_value

5897: (p_transaction_step_id => p_transaction_step_id
5898: ,p_name =>upper( 'p_attribute28'));
5899: --
5900: p_attribute29 :=
5901: hr_transaction_api.get_varchar2_value
5902: (p_transaction_step_id => p_transaction_step_id
5903: ,p_name =>upper( 'p_attribute29'));
5904: --
5905: p_attribute30 :=

Line 5906: hr_transaction_api.get_varchar2_value

5902: (p_transaction_step_id => p_transaction_step_id
5903: ,p_name =>upper( 'p_attribute29'));
5904: --
5905: p_attribute30 :=
5906: hr_transaction_api.get_varchar2_value
5907: (p_transaction_step_id => p_transaction_step_id
5908: ,p_name =>upper( 'p_attribute30'));
5909: --
5910: p_per_information_category :=

Line 5911: hr_transaction_api.get_varchar2_value

5907: (p_transaction_step_id => p_transaction_step_id
5908: ,p_name =>upper( 'p_attribute30'));
5909: --
5910: p_per_information_category :=
5911: hr_transaction_api.get_varchar2_value
5912: (p_transaction_step_id => p_transaction_step_id
5913: ,p_name =>upper( 'p_per_information_category'));
5914: --
5915: p_per_information1 :=

Line 5916: hr_transaction_api.get_varchar2_value

5912: (p_transaction_step_id => p_transaction_step_id
5913: ,p_name =>upper( 'p_per_information_category'));
5914: --
5915: p_per_information1 :=
5916: hr_transaction_api.get_varchar2_value
5917: (p_transaction_step_id => p_transaction_step_id
5918: ,p_name =>upper( 'p_per_information1'));
5919: --
5920: p_per_information2 :=

Line 5921: hr_transaction_api.get_varchar2_value

5917: (p_transaction_step_id => p_transaction_step_id
5918: ,p_name =>upper( 'p_per_information1'));
5919: --
5920: p_per_information2 :=
5921: hr_transaction_api.get_varchar2_value
5922: (p_transaction_step_id => p_transaction_step_id
5923: ,p_name =>upper( 'p_per_information2'));
5924: --
5925: p_per_information3 :=

Line 5926: hr_transaction_api.get_varchar2_value

5922: (p_transaction_step_id => p_transaction_step_id
5923: ,p_name =>upper( 'p_per_information2'));
5924: --
5925: p_per_information3 :=
5926: hr_transaction_api.get_varchar2_value
5927: (p_transaction_step_id => p_transaction_step_id
5928: ,p_name =>upper( 'p_per_information3'));
5929: --
5930: p_per_information4 :=

Line 5931: hr_transaction_api.get_varchar2_value

5927: (p_transaction_step_id => p_transaction_step_id
5928: ,p_name =>upper( 'p_per_information3'));
5929: --
5930: p_per_information4 :=
5931: hr_transaction_api.get_varchar2_value
5932: (p_transaction_step_id => p_transaction_step_id
5933: ,p_name =>upper( 'p_per_information4'));
5934: --
5935: p_per_information5 :=

Line 5936: hr_transaction_api.get_varchar2_value

5932: (p_transaction_step_id => p_transaction_step_id
5933: ,p_name =>upper( 'p_per_information4'));
5934: --
5935: p_per_information5 :=
5936: hr_transaction_api.get_varchar2_value
5937: (p_transaction_step_id => p_transaction_step_id
5938: ,p_name =>upper( 'p_per_information5'));
5939: --
5940: p_per_information6 :=

Line 5941: hr_transaction_api.get_varchar2_value

5937: (p_transaction_step_id => p_transaction_step_id
5938: ,p_name =>upper( 'p_per_information5'));
5939: --
5940: p_per_information6 :=
5941: hr_transaction_api.get_varchar2_value
5942: (p_transaction_step_id => p_transaction_step_id
5943: ,p_name =>upper( 'p_per_information6'));
5944: --
5945: p_per_information7 :=

Line 5946: hr_transaction_api.get_varchar2_value

5942: (p_transaction_step_id => p_transaction_step_id
5943: ,p_name =>upper( 'p_per_information6'));
5944: --
5945: p_per_information7 :=
5946: hr_transaction_api.get_varchar2_value
5947: (p_transaction_step_id => p_transaction_step_id
5948: ,p_name =>upper( 'p_per_information7'));
5949: --
5950: p_per_information8 :=

Line 5951: hr_transaction_api.get_varchar2_value

5947: (p_transaction_step_id => p_transaction_step_id
5948: ,p_name =>upper( 'p_per_information7'));
5949: --
5950: p_per_information8 :=
5951: hr_transaction_api.get_varchar2_value
5952: (p_transaction_step_id => p_transaction_step_id
5953: ,p_name =>upper( 'p_per_information8'));
5954: --
5955: p_per_information9 :=

Line 5956: hr_transaction_api.get_varchar2_value

5952: (p_transaction_step_id => p_transaction_step_id
5953: ,p_name =>upper( 'p_per_information8'));
5954: --
5955: p_per_information9 :=
5956: hr_transaction_api.get_varchar2_value
5957: (p_transaction_step_id => p_transaction_step_id
5958: ,p_name =>upper( 'p_per_information9'));
5959: --
5960: p_per_information10 :=

Line 5961: hr_transaction_api.get_varchar2_value

5957: (p_transaction_step_id => p_transaction_step_id
5958: ,p_name =>upper( 'p_per_information9'));
5959: --
5960: p_per_information10 :=
5961: hr_transaction_api.get_varchar2_value
5962: (p_transaction_step_id => p_transaction_step_id
5963: ,p_name =>upper( 'p_per_information10'));
5964: --
5965: p_per_information11 :=

Line 5966: hr_transaction_api.get_varchar2_value

5962: (p_transaction_step_id => p_transaction_step_id
5963: ,p_name =>upper( 'p_per_information10'));
5964: --
5965: p_per_information11 :=
5966: hr_transaction_api.get_varchar2_value
5967: (p_transaction_step_id => p_transaction_step_id
5968: ,p_name =>upper( 'p_per_information11'));
5969: --
5970: p_per_information12 :=

Line 5971: hr_transaction_api.get_varchar2_value

5967: (p_transaction_step_id => p_transaction_step_id
5968: ,p_name =>upper( 'p_per_information11'));
5969: --
5970: p_per_information12 :=
5971: hr_transaction_api.get_varchar2_value
5972: (p_transaction_step_id => p_transaction_step_id
5973: ,p_name =>upper( 'p_per_information12'));
5974: --
5975: p_per_information13 :=

Line 5976: hr_transaction_api.get_varchar2_value

5972: (p_transaction_step_id => p_transaction_step_id
5973: ,p_name =>upper( 'p_per_information12'));
5974: --
5975: p_per_information13 :=
5976: hr_transaction_api.get_varchar2_value
5977: (p_transaction_step_id => p_transaction_step_id
5978: ,p_name =>upper( 'p_per_information13'));
5979: --
5980: p_per_information14 :=

Line 5981: hr_transaction_api.get_varchar2_value

5977: (p_transaction_step_id => p_transaction_step_id
5978: ,p_name =>upper( 'p_per_information13'));
5979: --
5980: p_per_information14 :=
5981: hr_transaction_api.get_varchar2_value
5982: (p_transaction_step_id => p_transaction_step_id
5983: ,p_name =>upper( 'p_per_information14'));
5984: --
5985: p_per_information15 :=

Line 5986: hr_transaction_api.get_varchar2_value

5982: (p_transaction_step_id => p_transaction_step_id
5983: ,p_name =>upper( 'p_per_information14'));
5984: --
5985: p_per_information15 :=
5986: hr_transaction_api.get_varchar2_value
5987: (p_transaction_step_id => p_transaction_step_id
5988: ,p_name =>upper( 'p_per_information15'));
5989: --
5990: p_per_information16 :=

Line 5991: hr_transaction_api.get_varchar2_value

5987: (p_transaction_step_id => p_transaction_step_id
5988: ,p_name =>upper( 'p_per_information15'));
5989: --
5990: p_per_information16 :=
5991: hr_transaction_api.get_varchar2_value
5992: (p_transaction_step_id => p_transaction_step_id
5993: ,p_name =>upper( 'p_per_information16'));
5994: --
5995: p_per_information17 :=

Line 5996: hr_transaction_api.get_varchar2_value

5992: (p_transaction_step_id => p_transaction_step_id
5993: ,p_name =>upper( 'p_per_information16'));
5994: --
5995: p_per_information17 :=
5996: hr_transaction_api.get_varchar2_value
5997: (p_transaction_step_id => p_transaction_step_id
5998: ,p_name =>upper( 'p_per_information17'));
5999: --
6000: p_per_information18 :=

Line 6001: hr_transaction_api.get_varchar2_value

5997: (p_transaction_step_id => p_transaction_step_id
5998: ,p_name =>upper( 'p_per_information17'));
5999: --
6000: p_per_information18 :=
6001: hr_transaction_api.get_varchar2_value
6002: (p_transaction_step_id => p_transaction_step_id
6003: ,p_name =>upper( 'p_per_information18'));
6004: --
6005: p_per_information19 :=

Line 6006: hr_transaction_api.get_varchar2_value

6002: (p_transaction_step_id => p_transaction_step_id
6003: ,p_name =>upper( 'p_per_information18'));
6004: --
6005: p_per_information19 :=
6006: hr_transaction_api.get_varchar2_value
6007: (p_transaction_step_id => p_transaction_step_id
6008: ,p_name =>upper( 'p_per_information19'));
6009: --
6010: p_per_information20 :=

Line 6011: hr_transaction_api.get_varchar2_value

6007: (p_transaction_step_id => p_transaction_step_id
6008: ,p_name =>upper( 'p_per_information19'));
6009: --
6010: p_per_information20 :=
6011: hr_transaction_api.get_varchar2_value
6012: (p_transaction_step_id => p_transaction_step_id
6013: ,p_name =>upper( 'p_per_information20'));
6014: --
6015: p_per_information21 :=

Line 6016: hr_transaction_api.get_varchar2_value

6012: (p_transaction_step_id => p_transaction_step_id
6013: ,p_name =>upper( 'p_per_information20'));
6014: --
6015: p_per_information21 :=
6016: hr_transaction_api.get_varchar2_value
6017: (p_transaction_step_id => p_transaction_step_id
6018: ,p_name =>upper( 'p_per_information21'));
6019: --
6020: p_per_information22 :=

Line 6021: hr_transaction_api.get_varchar2_value

6017: (p_transaction_step_id => p_transaction_step_id
6018: ,p_name =>upper( 'p_per_information21'));
6019: --
6020: p_per_information22 :=
6021: hr_transaction_api.get_varchar2_value
6022: (p_transaction_step_id => p_transaction_step_id
6023: ,p_name =>upper( 'p_per_information22'));
6024: --
6025: p_per_information23 :=

Line 6026: hr_transaction_api.get_varchar2_value

6022: (p_transaction_step_id => p_transaction_step_id
6023: ,p_name =>upper( 'p_per_information22'));
6024: --
6025: p_per_information23 :=
6026: hr_transaction_api.get_varchar2_value
6027: (p_transaction_step_id => p_transaction_step_id
6028: ,p_name =>upper( 'p_per_information23'));
6029: --
6030: p_per_information24 :=

Line 6031: hr_transaction_api.get_varchar2_value

6027: (p_transaction_step_id => p_transaction_step_id
6028: ,p_name =>upper( 'p_per_information23'));
6029: --
6030: p_per_information24 :=
6031: hr_transaction_api.get_varchar2_value
6032: (p_transaction_step_id => p_transaction_step_id
6033: ,p_name =>upper( 'p_per_information24'));
6034: --
6035: p_per_information25 :=

Line 6036: hr_transaction_api.get_varchar2_value

6032: (p_transaction_step_id => p_transaction_step_id
6033: ,p_name =>upper( 'p_per_information24'));
6034: --
6035: p_per_information25 :=
6036: hr_transaction_api.get_varchar2_value
6037: (p_transaction_step_id => p_transaction_step_id
6038: ,p_name =>upper( 'p_per_information25'));
6039: --
6040: p_per_information26 :=

Line 6041: hr_transaction_api.get_varchar2_value

6037: (p_transaction_step_id => p_transaction_step_id
6038: ,p_name =>upper( 'p_per_information25'));
6039: --
6040: p_per_information26 :=
6041: hr_transaction_api.get_varchar2_value
6042: (p_transaction_step_id => p_transaction_step_id
6043: ,p_name =>upper( 'p_per_information26'));
6044: --
6045: p_per_information27 :=

Line 6046: hr_transaction_api.get_varchar2_value

6042: (p_transaction_step_id => p_transaction_step_id
6043: ,p_name =>upper( 'p_per_information26'));
6044: --
6045: p_per_information27 :=
6046: hr_transaction_api.get_varchar2_value
6047: (p_transaction_step_id => p_transaction_step_id
6048: ,p_name =>upper( 'p_per_information27'));
6049: --
6050: p_per_information28 :=

Line 6051: hr_transaction_api.get_varchar2_value

6047: (p_transaction_step_id => p_transaction_step_id
6048: ,p_name =>upper( 'p_per_information27'));
6049: --
6050: p_per_information28 :=
6051: hr_transaction_api.get_varchar2_value
6052: (p_transaction_step_id => p_transaction_step_id
6053: ,p_name =>upper( 'p_per_information28'));
6054: --
6055: p_per_information29 :=

Line 6056: hr_transaction_api.get_varchar2_value

6052: (p_transaction_step_id => p_transaction_step_id
6053: ,p_name =>upper( 'p_per_information28'));
6054: --
6055: p_per_information29 :=
6056: hr_transaction_api.get_varchar2_value
6057: (p_transaction_step_id => p_transaction_step_id
6058: ,p_name =>upper( 'p_per_information29'));
6059: --
6060: p_per_information30 :=

Line 6061: hr_transaction_api.get_varchar2_value

6057: (p_transaction_step_id => p_transaction_step_id
6058: ,p_name =>upper( 'p_per_information29'));
6059: --
6060: p_per_information30 :=
6061: hr_transaction_api.get_varchar2_value
6062: (p_transaction_step_id => p_transaction_step_id
6063: ,p_name =>upper( 'p_per_information30'));
6064: --
6065: p_correspondence_language :=

Line 6066: hr_transaction_api.get_varchar2_value

6062: (p_transaction_step_id => p_transaction_step_id
6063: ,p_name =>upper( 'p_per_information30'));
6064: --
6065: p_correspondence_language :=
6066: hr_transaction_api.get_varchar2_value
6067: (p_transaction_step_id => p_transaction_step_id
6068: ,p_name =>upper( 'p_correspondence_language'));
6069: --
6070: p_honors :=

Line 6071: hr_transaction_api.get_varchar2_value

6067: (p_transaction_step_id => p_transaction_step_id
6068: ,p_name =>upper( 'p_correspondence_language'));
6069: --
6070: p_honors :=
6071: hr_transaction_api.get_varchar2_value
6072: (p_transaction_step_id => p_transaction_step_id
6073: ,p_name =>upper( 'p_honors'));
6074: --
6075: p_pre_name_adjunct :=

Line 6076: hr_transaction_api.get_varchar2_value

6072: (p_transaction_step_id => p_transaction_step_id
6073: ,p_name =>upper( 'p_honors'));
6074: --
6075: p_pre_name_adjunct :=
6076: hr_transaction_api.get_varchar2_value
6077: (p_transaction_step_id => p_transaction_step_id
6078: ,p_name =>upper( 'p_pre_name_adjunct'));
6079: --
6080: p_suffix :=

Line 6081: hr_transaction_api.get_varchar2_value

6077: (p_transaction_step_id => p_transaction_step_id
6078: ,p_name =>upper( 'p_pre_name_adjunct'));
6079: --
6080: p_suffix :=
6081: hr_transaction_api.get_varchar2_value
6082: (p_transaction_step_id => p_transaction_step_id
6083: ,p_name =>upper( 'p_suffix'));
6084: --
6085: p_create_mirror_flag :=

Line 6086: hr_transaction_api.get_varchar2_value

6082: (p_transaction_step_id => p_transaction_step_id
6083: ,p_name =>upper( 'p_suffix'));
6084: --
6085: p_create_mirror_flag :=
6086: hr_transaction_api.get_varchar2_value
6087: (p_transaction_step_id => p_transaction_step_id
6088: ,p_name =>upper( 'p_create_mirror_flag'));
6089: --
6090: p_mirror_type :=

Line 6091: hr_transaction_api.get_varchar2_value

6087: (p_transaction_step_id => p_transaction_step_id
6088: ,p_name =>upper( 'p_create_mirror_flag'));
6089: --
6090: p_mirror_type :=
6091: hr_transaction_api.get_varchar2_value
6092: (p_transaction_step_id => p_transaction_step_id
6093: ,p_name =>upper( 'p_mirror_type'));
6094: --
6095: p_mirror_cont_attribute_cat :=

Line 6096: hr_transaction_api.get_varchar2_value

6092: (p_transaction_step_id => p_transaction_step_id
6093: ,p_name =>upper( 'p_mirror_type'));
6094: --
6095: p_mirror_cont_attribute_cat :=
6096: hr_transaction_api.get_varchar2_value
6097: (p_transaction_step_id => p_transaction_step_id
6098: ,p_name =>upper( 'p_mirror_cont_attribute_cat'));
6099: --
6100: p_mirror_cont_attribute1 :=

Line 6101: hr_transaction_api.get_varchar2_value

6097: (p_transaction_step_id => p_transaction_step_id
6098: ,p_name =>upper( 'p_mirror_cont_attribute_cat'));
6099: --
6100: p_mirror_cont_attribute1 :=
6101: hr_transaction_api.get_varchar2_value
6102: (p_transaction_step_id => p_transaction_step_id
6103: ,p_name =>upper( 'p_mirror_cont_attribute1'));
6104: --
6105: p_mirror_cont_attribute2 :=

Line 6106: hr_transaction_api.get_varchar2_value

6102: (p_transaction_step_id => p_transaction_step_id
6103: ,p_name =>upper( 'p_mirror_cont_attribute1'));
6104: --
6105: p_mirror_cont_attribute2 :=
6106: hr_transaction_api.get_varchar2_value
6107: (p_transaction_step_id => p_transaction_step_id
6108: ,p_name =>upper( 'p_mirror_cont_attribute2'));
6109: --
6110: p_mirror_cont_attribute3 :=

Line 6111: hr_transaction_api.get_varchar2_value

6107: (p_transaction_step_id => p_transaction_step_id
6108: ,p_name =>upper( 'p_mirror_cont_attribute2'));
6109: --
6110: p_mirror_cont_attribute3 :=
6111: hr_transaction_api.get_varchar2_value
6112: (p_transaction_step_id => p_transaction_step_id
6113: ,p_name =>upper( 'p_mirror_cont_attribute3'));
6114: --
6115: p_mirror_cont_attribute4 :=

Line 6116: hr_transaction_api.get_varchar2_value

6112: (p_transaction_step_id => p_transaction_step_id
6113: ,p_name =>upper( 'p_mirror_cont_attribute3'));
6114: --
6115: p_mirror_cont_attribute4 :=
6116: hr_transaction_api.get_varchar2_value
6117: (p_transaction_step_id => p_transaction_step_id
6118: ,p_name =>upper( 'p_mirror_cont_attribute4'));
6119: --
6120: p_mirror_cont_attribute5 :=

Line 6121: hr_transaction_api.get_varchar2_value

6117: (p_transaction_step_id => p_transaction_step_id
6118: ,p_name =>upper( 'p_mirror_cont_attribute4'));
6119: --
6120: p_mirror_cont_attribute5 :=
6121: hr_transaction_api.get_varchar2_value
6122: (p_transaction_step_id => p_transaction_step_id
6123: ,p_name =>upper( 'p_mirror_cont_attribute5'));
6124: --
6125: p_mirror_cont_attribute6 :=

Line 6126: hr_transaction_api.get_varchar2_value

6122: (p_transaction_step_id => p_transaction_step_id
6123: ,p_name =>upper( 'p_mirror_cont_attribute5'));
6124: --
6125: p_mirror_cont_attribute6 :=
6126: hr_transaction_api.get_varchar2_value
6127: (p_transaction_step_id => p_transaction_step_id
6128: ,p_name =>upper( 'p_mirror_cont_attribute6'));
6129: --
6130: p_mirror_cont_attribute7 :=

Line 6131: hr_transaction_api.get_varchar2_value

6127: (p_transaction_step_id => p_transaction_step_id
6128: ,p_name =>upper( 'p_mirror_cont_attribute6'));
6129: --
6130: p_mirror_cont_attribute7 :=
6131: hr_transaction_api.get_varchar2_value
6132: (p_transaction_step_id => p_transaction_step_id
6133: ,p_name =>upper( 'p_mirror_cont_attribute7'));
6134: --
6135: p_mirror_cont_attribute8 :=

Line 6136: hr_transaction_api.get_varchar2_value

6132: (p_transaction_step_id => p_transaction_step_id
6133: ,p_name =>upper( 'p_mirror_cont_attribute7'));
6134: --
6135: p_mirror_cont_attribute8 :=
6136: hr_transaction_api.get_varchar2_value
6137: (p_transaction_step_id => p_transaction_step_id
6138: ,p_name =>upper( 'p_mirror_cont_attribute8'));
6139: --
6140: p_mirror_cont_attribute9 :=

Line 6141: hr_transaction_api.get_varchar2_value

6137: (p_transaction_step_id => p_transaction_step_id
6138: ,p_name =>upper( 'p_mirror_cont_attribute8'));
6139: --
6140: p_mirror_cont_attribute9 :=
6141: hr_transaction_api.get_varchar2_value
6142: (p_transaction_step_id => p_transaction_step_id
6143: ,p_name =>upper( 'p_mirror_cont_attribute9'));
6144: --
6145: p_mirror_cont_attribute10 :=

Line 6146: hr_transaction_api.get_varchar2_value

6142: (p_transaction_step_id => p_transaction_step_id
6143: ,p_name =>upper( 'p_mirror_cont_attribute9'));
6144: --
6145: p_mirror_cont_attribute10 :=
6146: hr_transaction_api.get_varchar2_value
6147: (p_transaction_step_id => p_transaction_step_id
6148: ,p_name =>upper( 'p_mirror_cont_attribute10'));
6149: --
6150: p_mirror_cont_attribute11 :=

Line 6151: hr_transaction_api.get_varchar2_value

6147: (p_transaction_step_id => p_transaction_step_id
6148: ,p_name =>upper( 'p_mirror_cont_attribute10'));
6149: --
6150: p_mirror_cont_attribute11 :=
6151: hr_transaction_api.get_varchar2_value
6152: (p_transaction_step_id => p_transaction_step_id
6153: ,p_name =>upper( 'p_mirror_cont_attribute11'));
6154: --
6155: p_mirror_cont_attribute12 :=

Line 6156: hr_transaction_api.get_varchar2_value

6152: (p_transaction_step_id => p_transaction_step_id
6153: ,p_name =>upper( 'p_mirror_cont_attribute11'));
6154: --
6155: p_mirror_cont_attribute12 :=
6156: hr_transaction_api.get_varchar2_value
6157: (p_transaction_step_id => p_transaction_step_id
6158: ,p_name =>upper( 'p_mirror_cont_attribute12'));
6159: --
6160: p_mirror_cont_attribute13 :=

Line 6161: hr_transaction_api.get_varchar2_value

6157: (p_transaction_step_id => p_transaction_step_id
6158: ,p_name =>upper( 'p_mirror_cont_attribute12'));
6159: --
6160: p_mirror_cont_attribute13 :=
6161: hr_transaction_api.get_varchar2_value
6162: (p_transaction_step_id => p_transaction_step_id
6163: ,p_name =>upper( 'p_mirror_cont_attribute13'));
6164: --
6165: p_mirror_cont_attribute14 :=

Line 6166: hr_transaction_api.get_varchar2_value

6162: (p_transaction_step_id => p_transaction_step_id
6163: ,p_name =>upper( 'p_mirror_cont_attribute13'));
6164: --
6165: p_mirror_cont_attribute14 :=
6166: hr_transaction_api.get_varchar2_value
6167: (p_transaction_step_id => p_transaction_step_id
6168: ,p_name =>upper( 'p_mirror_cont_attribute14'));
6169: --
6170: p_mirror_cont_attribute15 :=

Line 6171: hr_transaction_api.get_varchar2_value

6167: (p_transaction_step_id => p_transaction_step_id
6168: ,p_name =>upper( 'p_mirror_cont_attribute14'));
6169: --
6170: p_mirror_cont_attribute15 :=
6171: hr_transaction_api.get_varchar2_value
6172: (p_transaction_step_id => p_transaction_step_id
6173: ,p_name =>upper( 'p_mirror_cont_attribute15'));
6174: --
6175: p_mirror_cont_attribute16 :=

Line 6176: hr_transaction_api.get_varchar2_value

6172: (p_transaction_step_id => p_transaction_step_id
6173: ,p_name =>upper( 'p_mirror_cont_attribute15'));
6174: --
6175: p_mirror_cont_attribute16 :=
6176: hr_transaction_api.get_varchar2_value
6177: (p_transaction_step_id => p_transaction_step_id
6178: ,p_name =>upper( 'p_mirror_cont_attribute16'));
6179: --
6180: p_mirror_cont_attribute17 :=

Line 6181: hr_transaction_api.get_varchar2_value

6177: (p_transaction_step_id => p_transaction_step_id
6178: ,p_name =>upper( 'p_mirror_cont_attribute16'));
6179: --
6180: p_mirror_cont_attribute17 :=
6181: hr_transaction_api.get_varchar2_value
6182: (p_transaction_step_id => p_transaction_step_id
6183: ,p_name =>upper( 'p_mirror_cont_attribute17'));
6184: --
6185: p_mirror_cont_attribute18 :=

Line 6186: hr_transaction_api.get_varchar2_value

6182: (p_transaction_step_id => p_transaction_step_id
6183: ,p_name =>upper( 'p_mirror_cont_attribute17'));
6184: --
6185: p_mirror_cont_attribute18 :=
6186: hr_transaction_api.get_varchar2_value
6187: (p_transaction_step_id => p_transaction_step_id
6188: ,p_name =>upper( 'p_mirror_cont_attribute18'));
6189: --
6190: p_mirror_cont_attribute19 :=

Line 6191: hr_transaction_api.get_varchar2_value

6187: (p_transaction_step_id => p_transaction_step_id
6188: ,p_name =>upper( 'p_mirror_cont_attribute18'));
6189: --
6190: p_mirror_cont_attribute19 :=
6191: hr_transaction_api.get_varchar2_value
6192: (p_transaction_step_id => p_transaction_step_id
6193: ,p_name =>upper( 'p_mirror_cont_attribute19'));
6194: --
6195: p_mirror_cont_attribute20 :=

Line 6196: hr_transaction_api.get_varchar2_value

6192: (p_transaction_step_id => p_transaction_step_id
6193: ,p_name =>upper( 'p_mirror_cont_attribute19'));
6194: --
6195: p_mirror_cont_attribute20 :=
6196: hr_transaction_api.get_varchar2_value
6197: (p_transaction_step_id => p_transaction_step_id
6198: ,p_name =>upper( 'p_mirror_cont_attribute20'));
6199: --
6200: /*

Line 6202: hr_transaction_api.get_varchar2_value

6198: ,p_name =>upper( 'p_mirror_cont_attribute20'));
6199: --
6200: /*
6201: p_item_type :=
6202: hr_transaction_api.get_varchar2_value
6203: (p_transaction_step_id => p_transaction_step_id
6204: ,p_name =>upper( 'p_item_type'));
6205: --
6206: p_item_key :=

Line 6207: hr_transaction_api.get_varchar2_value

6203: (p_transaction_step_id => p_transaction_step_id
6204: ,p_name =>upper( 'p_item_type'));
6205: --
6206: p_item_key :=
6207: hr_transaction_api.get_varchar2_value
6208: (p_transaction_step_id => p_transaction_step_id
6209: ,p_name =>upper( 'p_item_key'));
6210: --
6211: p_activity_id :=

Line 6212: hr_transaction_api.get_number_value

6208: (p_transaction_step_id => p_transaction_step_id
6209: ,p_name =>upper( 'p_item_key'));
6210: --
6211: p_activity_id :=
6212: hr_transaction_api.get_number_value
6213: (p_transaction_step_id => p_transaction_step_id
6214: ,p_name =>upper( 'p_activity_id'));
6215: */
6216: --

Line 6218: hr_transaction_api.get_varchar2_value

6214: ,p_name =>upper( 'p_activity_id'));
6215: */
6216: --
6217: p_action :=
6218: hr_transaction_api.get_varchar2_value
6219: (p_transaction_step_id => p_transaction_step_id
6220: ,p_name =>upper( 'p_action'));
6221: --
6222: p_login_person_id :=

Line 6223: hr_transaction_api.get_number_value

6219: (p_transaction_step_id => p_transaction_step_id
6220: ,p_name =>upper( 'p_action'));
6221: --
6222: p_login_person_id :=
6223: hr_transaction_api.get_number_value
6224: (p_transaction_step_id => p_transaction_step_id
6225: ,p_name =>upper( 'p_login_person_id'));
6226: --
6227: p_process_section_name :=

Line 6228: hr_transaction_api.get_varchar2_value

6224: (p_transaction_step_id => p_transaction_step_id
6225: ,p_name =>upper( 'p_login_person_id'));
6226: --
6227: p_process_section_name :=
6228: hr_transaction_api.get_varchar2_value
6229: (p_transaction_step_id => p_transaction_step_id
6230: ,p_name =>upper( 'p_process_section_name'));
6231: --
6232: p_review_page_region_code :=

Line 6233: hr_transaction_api.get_varchar2_value

6229: (p_transaction_step_id => p_transaction_step_id
6230: ,p_name =>upper( 'p_process_section_name'));
6231: --
6232: p_review_page_region_code :=
6233: hr_transaction_api.get_varchar2_value
6234: (p_transaction_step_id => p_transaction_step_id
6235: ,p_name =>upper( 'P_REVIEW_PROC_CALL'));
6236:
6237: --

Line 6239: hr_transaction_api.get_VARCHAR2_value

6235: ,p_name =>upper( 'P_REVIEW_PROC_CALL'));
6236:
6237: --
6238: P_CONT_INFORMATION_CATEGORY :=
6239: hr_transaction_api.get_VARCHAR2_value
6240: (p_transaction_step_id => p_transaction_step_id
6241: ,p_name => 'P_CONT_INFORMATION_CATEGORY');
6242: --
6243: P_CONT_INFORMATION1 :=

Line 6244: hr_transaction_api.get_VARCHAR2_value

6240: (p_transaction_step_id => p_transaction_step_id
6241: ,p_name => 'P_CONT_INFORMATION_CATEGORY');
6242: --
6243: P_CONT_INFORMATION1 :=
6244: hr_transaction_api.get_VARCHAR2_value
6245: (p_transaction_step_id => p_transaction_step_id
6246: ,p_name => 'P_CONT_INFORMATION1');
6247: --
6248: P_CONT_INFORMATION2 :=

Line 6249: hr_transaction_api.get_VARCHAR2_value

6245: (p_transaction_step_id => p_transaction_step_id
6246: ,p_name => 'P_CONT_INFORMATION1');
6247: --
6248: P_CONT_INFORMATION2 :=
6249: hr_transaction_api.get_VARCHAR2_value
6250: (p_transaction_step_id => p_transaction_step_id
6251: ,p_name => 'P_CONT_INFORMATION2');
6252: --
6253: P_CONT_INFORMATION3 :=

Line 6254: hr_transaction_api.get_VARCHAR2_value

6250: (p_transaction_step_id => p_transaction_step_id
6251: ,p_name => 'P_CONT_INFORMATION2');
6252: --
6253: P_CONT_INFORMATION3 :=
6254: hr_transaction_api.get_VARCHAR2_value
6255: (p_transaction_step_id => p_transaction_step_id
6256: ,p_name => 'P_CONT_INFORMATION3');
6257: --
6258: P_CONT_INFORMATION4 :=

Line 6259: hr_transaction_api.get_VARCHAR2_value

6255: (p_transaction_step_id => p_transaction_step_id
6256: ,p_name => 'P_CONT_INFORMATION3');
6257: --
6258: P_CONT_INFORMATION4 :=
6259: hr_transaction_api.get_VARCHAR2_value
6260: (p_transaction_step_id => p_transaction_step_id
6261: ,p_name => 'P_CONT_INFORMATION4');
6262: --
6263: P_CONT_INFORMATION5 :=

Line 6264: hr_transaction_api.get_VARCHAR2_value

6260: (p_transaction_step_id => p_transaction_step_id
6261: ,p_name => 'P_CONT_INFORMATION4');
6262: --
6263: P_CONT_INFORMATION5 :=
6264: hr_transaction_api.get_VARCHAR2_value
6265: (p_transaction_step_id => p_transaction_step_id
6266: ,p_name => 'P_CONT_INFORMATION5');
6267: --
6268: P_CONT_INFORMATION6 :=

Line 6269: hr_transaction_api.get_VARCHAR2_value

6265: (p_transaction_step_id => p_transaction_step_id
6266: ,p_name => 'P_CONT_INFORMATION5');
6267: --
6268: P_CONT_INFORMATION6 :=
6269: hr_transaction_api.get_VARCHAR2_value
6270: (p_transaction_step_id => p_transaction_step_id
6271: ,p_name => 'P_CONT_INFORMATION6');
6272: --
6273: P_CONT_INFORMATION7 :=

Line 6274: hr_transaction_api.get_VARCHAR2_value

6270: (p_transaction_step_id => p_transaction_step_id
6271: ,p_name => 'P_CONT_INFORMATION6');
6272: --
6273: P_CONT_INFORMATION7 :=
6274: hr_transaction_api.get_VARCHAR2_value
6275: (p_transaction_step_id => p_transaction_step_id
6276: ,p_name => 'P_CONT_INFORMATION7');
6277: --
6278: P_CONT_INFORMATION8 :=

Line 6279: hr_transaction_api.get_VARCHAR2_value

6275: (p_transaction_step_id => p_transaction_step_id
6276: ,p_name => 'P_CONT_INFORMATION7');
6277: --
6278: P_CONT_INFORMATION8 :=
6279: hr_transaction_api.get_VARCHAR2_value
6280: (p_transaction_step_id => p_transaction_step_id
6281: ,p_name => 'P_CONT_INFORMATION8');
6282: --
6283: P_CONT_INFORMATION9 :=

Line 6284: hr_transaction_api.get_VARCHAR2_value

6280: (p_transaction_step_id => p_transaction_step_id
6281: ,p_name => 'P_CONT_INFORMATION8');
6282: --
6283: P_CONT_INFORMATION9 :=
6284: hr_transaction_api.get_VARCHAR2_value
6285: (p_transaction_step_id => p_transaction_step_id
6286: ,p_name => 'P_CONT_INFORMATION9');
6287: --
6288: P_CONT_INFORMATION10 :=

Line 6289: hr_transaction_api.get_VARCHAR2_value

6285: (p_transaction_step_id => p_transaction_step_id
6286: ,p_name => 'P_CONT_INFORMATION9');
6287: --
6288: P_CONT_INFORMATION10 :=
6289: hr_transaction_api.get_VARCHAR2_value
6290: (p_transaction_step_id => p_transaction_step_id
6291: ,p_name => 'P_CONT_INFORMATION10');
6292: --
6293: P_CONT_INFORMATION11 :=

Line 6294: hr_transaction_api.get_VARCHAR2_value

6290: (p_transaction_step_id => p_transaction_step_id
6291: ,p_name => 'P_CONT_INFORMATION10');
6292: --
6293: P_CONT_INFORMATION11 :=
6294: hr_transaction_api.get_VARCHAR2_value
6295: (p_transaction_step_id => p_transaction_step_id
6296: ,p_name => 'P_CONT_INFORMATION11');
6297: --
6298: P_CONT_INFORMATION12 :=

Line 6299: hr_transaction_api.get_VARCHAR2_value

6295: (p_transaction_step_id => p_transaction_step_id
6296: ,p_name => 'P_CONT_INFORMATION11');
6297: --
6298: P_CONT_INFORMATION12 :=
6299: hr_transaction_api.get_VARCHAR2_value
6300: (p_transaction_step_id => p_transaction_step_id
6301: ,p_name => 'P_CONT_INFORMATION12');
6302: --
6303: P_CONT_INFORMATION13 :=

Line 6304: hr_transaction_api.get_VARCHAR2_value

6300: (p_transaction_step_id => p_transaction_step_id
6301: ,p_name => 'P_CONT_INFORMATION12');
6302: --
6303: P_CONT_INFORMATION13 :=
6304: hr_transaction_api.get_VARCHAR2_value
6305: (p_transaction_step_id => p_transaction_step_id
6306: ,p_name => 'P_CONT_INFORMATION13');
6307: --
6308: P_CONT_INFORMATION14 :=

Line 6309: hr_transaction_api.get_VARCHAR2_value

6305: (p_transaction_step_id => p_transaction_step_id
6306: ,p_name => 'P_CONT_INFORMATION13');
6307: --
6308: P_CONT_INFORMATION14 :=
6309: hr_transaction_api.get_VARCHAR2_value
6310: (p_transaction_step_id => p_transaction_step_id
6311: ,p_name => 'P_CONT_INFORMATION14');
6312: --
6313: P_CONT_INFORMATION15 :=

Line 6314: hr_transaction_api.get_VARCHAR2_value

6310: (p_transaction_step_id => p_transaction_step_id
6311: ,p_name => 'P_CONT_INFORMATION14');
6312: --
6313: P_CONT_INFORMATION15 :=
6314: hr_transaction_api.get_VARCHAR2_value
6315: (p_transaction_step_id => p_transaction_step_id
6316: ,p_name => 'P_CONT_INFORMATION15');
6317: --
6318: P_CONT_INFORMATION16 :=

Line 6319: hr_transaction_api.get_VARCHAR2_value

6315: (p_transaction_step_id => p_transaction_step_id
6316: ,p_name => 'P_CONT_INFORMATION15');
6317: --
6318: P_CONT_INFORMATION16 :=
6319: hr_transaction_api.get_VARCHAR2_value
6320: (p_transaction_step_id => p_transaction_step_id
6321: ,p_name => 'P_CONT_INFORMATION16');
6322: --
6323: P_CONT_INFORMATION17 :=

Line 6324: hr_transaction_api.get_VARCHAR2_value

6320: (p_transaction_step_id => p_transaction_step_id
6321: ,p_name => 'P_CONT_INFORMATION16');
6322: --
6323: P_CONT_INFORMATION17 :=
6324: hr_transaction_api.get_VARCHAR2_value
6325: (p_transaction_step_id => p_transaction_step_id
6326: ,p_name => 'P_CONT_INFORMATION17');
6327: --
6328: P_CONT_INFORMATION18 :=

Line 6329: hr_transaction_api.get_VARCHAR2_value

6325: (p_transaction_step_id => p_transaction_step_id
6326: ,p_name => 'P_CONT_INFORMATION17');
6327: --
6328: P_CONT_INFORMATION18 :=
6329: hr_transaction_api.get_VARCHAR2_value
6330: (p_transaction_step_id => p_transaction_step_id
6331: ,p_name => 'P_CONT_INFORMATION18');
6332: --
6333: P_CONT_INFORMATION19 :=

Line 6334: hr_transaction_api.get_VARCHAR2_value

6330: (p_transaction_step_id => p_transaction_step_id
6331: ,p_name => 'P_CONT_INFORMATION18');
6332: --
6333: P_CONT_INFORMATION19 :=
6334: hr_transaction_api.get_VARCHAR2_value
6335: (p_transaction_step_id => p_transaction_step_id
6336: ,p_name => 'P_CONT_INFORMATION19');
6337: --
6338: P_CONT_INFORMATION20 :=

Line 6339: hr_transaction_api.get_VARCHAR2_value

6335: (p_transaction_step_id => p_transaction_step_id
6336: ,p_name => 'P_CONT_INFORMATION19');
6337: --
6338: P_CONT_INFORMATION20 :=
6339: hr_transaction_api.get_VARCHAR2_value
6340: (p_transaction_step_id => p_transaction_step_id
6341: ,p_name => 'P_CONT_INFORMATION20');
6342: --
6343: hr_utility.set_location('End of setting the attributes:'||l_proc,15 );

Line 6865: l_main_per_date_of_birth := hr_transaction_api.get_date_value

6861: where hats1.item_type = 'HRSSA'
6862: and hats1.item_key = p_item_key
6863: and hats1.api_name in( 'HR_PROCESS_PERSON_SS.PROCESS_API', 'BEN_PROCESS_COBRA_PERSON_SS.PROCESS_API');
6864:
6865: l_main_per_date_of_birth := hr_transaction_api.get_date_value
6866: (p_transaction_step_id => l_validate_g_per_step_id
6867: ,p_name => 'P_DATE_OF_BIRTH') ;
6868:
6869: l_main_per_eff_start_date := hr_transaction_api.get_date_value

Line 6869: l_main_per_eff_start_date := hr_transaction_api.get_date_value

6865: l_main_per_date_of_birth := hr_transaction_api.get_date_value
6866: (p_transaction_step_id => l_validate_g_per_step_id
6867: ,p_name => 'P_DATE_OF_BIRTH') ;
6868:
6869: l_main_per_eff_start_date := hr_transaction_api.get_date_value
6870: (p_transaction_step_id => l_validate_g_per_step_id
6871: ,p_name => 'P_EFFECTIVE_DATE');
6872:
6873: exception

Line 7441: hr_transaction_api.create_transaction_step

7437: END IF;
7438: --
7439: -- Create a transaction step
7440: --
7441: hr_transaction_api.create_transaction_step
7442: (p_validate => false
7443: ,p_creator_person_id => nvl(p_login_person_id, p_person_id)
7444: ,p_transaction_id => l_transaction_id
7445: ,p_api_name => g_package || '.PROCESS_CREATE_CONTACT_API'

Line 9543: l_person_id := hr_transaction_api.get_number_value

9539: --
9540: -- Get the person_id first. If it is null, that means we'll create a new
9541: -- contact. If it is not null, error out.
9542:
9543: l_person_id := hr_transaction_api.get_number_value
9544: (p_transaction_step_id => p_transaction_step_id
9545: ,p_name => 'P_PERSON_ID');
9546: --
9547: -- StartRegistration

Line 9566: l_con_rec_changed := hr_transaction_api.get_VARCHAR2_value

9562: --
9563: -- EndRegistration
9564: --
9565: begin
9566: l_con_rec_changed := hr_transaction_api.get_VARCHAR2_value
9567: (p_transaction_step_id => p_transaction_step_id
9568: ,p_name => 'P_CONT_REC_CHANGED') ;
9569: exception when others then
9570: hr_utility.set_location('Exception Others:'||l_proc,555);

Line 9574: l_effective_date := hr_transaction_api.get_DATE_value

9570: hr_utility.set_location('Exception Others:'||l_proc,555);
9571: l_con_rec_changed := 'NOTCHANGED';
9572: end;
9573: --
9574: l_effective_date := hr_transaction_api.get_DATE_value
9575: (p_transaction_step_id => p_transaction_step_id
9576: ,p_name => 'P_START_DATE') ;
9577: --
9578: -- SFL changes.

Line 9597: l_effective_date := hr_transaction_api.get_DATE_value

9593: --
9594: if not p_validate then
9595: --
9596: hr_utility.set_location('if not p_validate then:'||l_proc,20 );
9597: l_effective_date := hr_transaction_api.get_DATE_value
9598: (p_transaction_step_id => p_transaction_step_id
9599: ,p_name => 'P_START_DATE');
9600: --
9601: end if;

Line 9607: l_contact_type := hr_transaction_api.get_VARCHAR2_value

9603: --
9604: -- Bug 1919795 : create mirror relationship for contact types of
9605: -- P,C,S.
9606: --
9607: l_contact_type := hr_transaction_api.get_VARCHAR2_value
9608: (p_transaction_step_id => p_transaction_step_id
9609: ,p_name => 'P_CONTACT_TYPE');
9610: --
9611: l_MIRROR_TYPE := hr_transaction_api.get_VARCHAR2_value

Line 9611: l_MIRROR_TYPE := hr_transaction_api.get_VARCHAR2_value

9607: l_contact_type := hr_transaction_api.get_VARCHAR2_value
9608: (p_transaction_step_id => p_transaction_step_id
9609: ,p_name => 'P_CONTACT_TYPE');
9610: --
9611: l_MIRROR_TYPE := hr_transaction_api.get_VARCHAR2_value
9612: (p_transaction_step_id => p_transaction_step_id
9613: ,p_name => 'P_MIRROR_TYPE');
9614: --
9615: l_CREATE_MIRROR_FLAG := hr_transaction_api.get_VARCHAR2_value

Line 9615: l_CREATE_MIRROR_FLAG := hr_transaction_api.get_VARCHAR2_value

9611: l_MIRROR_TYPE := hr_transaction_api.get_VARCHAR2_value
9612: (p_transaction_step_id => p_transaction_step_id
9613: ,p_name => 'P_MIRROR_TYPE');
9614: --
9615: l_CREATE_MIRROR_FLAG := hr_transaction_api.get_VARCHAR2_value
9616: (p_transaction_step_id => p_transaction_step_id
9617: ,p_name => 'P_MIRROR_TYPE');
9618: --
9619: if l_contact_type in ('P', 'C', 'S') then

Line 9634: l_contact_operation := hr_transaction_api.get_VARCHAR2_value

9630: --
9631: end if;
9632: --
9633: --
9634: l_contact_operation := hr_transaction_api.get_VARCHAR2_value
9635: (p_transaction_step_id => p_transaction_step_id
9636: ,p_name => 'P_CONTACT_OPERATION');
9637: --
9638: l_dpdnt_bnf_flag := hr_transaction_api.get_VARCHAR2_value

Line 9638: l_dpdnt_bnf_flag := hr_transaction_api.get_VARCHAR2_value

9634: l_contact_operation := hr_transaction_api.get_VARCHAR2_value
9635: (p_transaction_step_id => p_transaction_step_id
9636: ,p_name => 'P_CONTACT_OPERATION');
9637: --
9638: l_dpdnt_bnf_flag := hr_transaction_api.get_VARCHAR2_value
9639: (p_transaction_step_id => p_transaction_step_id
9640: ,p_name => 'P_DPDNT_BNF_FLAG');
9641: --
9642: l_emrg_cont_flag := hr_transaction_api.get_VARCHAR2_value

Line 9642: l_emrg_cont_flag := hr_transaction_api.get_VARCHAR2_value

9638: l_dpdnt_bnf_flag := hr_transaction_api.get_VARCHAR2_value
9639: (p_transaction_step_id => p_transaction_step_id
9640: ,p_name => 'P_DPDNT_BNF_FLAG');
9641: --
9642: l_emrg_cont_flag := hr_transaction_api.get_VARCHAR2_value
9643: (p_transaction_step_id => p_transaction_step_id
9644: ,p_name => 'P_EMRG_CONT_FLAG');
9645: --
9646: l_personal_flag := hr_transaction_api.get_VARCHAR2_value

Line 9646: l_personal_flag := hr_transaction_api.get_VARCHAR2_value

9642: l_emrg_cont_flag := hr_transaction_api.get_VARCHAR2_value
9643: (p_transaction_step_id => p_transaction_step_id
9644: ,p_name => 'P_EMRG_CONT_FLAG');
9645: --
9646: l_personal_flag := hr_transaction_api.get_VARCHAR2_value
9647: (p_transaction_step_id => p_transaction_step_id
9648: ,p_name => 'P_PERSONAL_FLAG');
9649: --
9650: l_primary_contact_flag :=hr_transaction_api.get_VARCHAR2_value

Line 9650: l_primary_contact_flag :=hr_transaction_api.get_VARCHAR2_value

9646: l_personal_flag := hr_transaction_api.get_VARCHAR2_value
9647: (p_transaction_step_id => p_transaction_step_id
9648: ,p_name => 'P_PERSONAL_FLAG');
9649: --
9650: l_primary_contact_flag :=hr_transaction_api.get_VARCHAR2_value
9651: (p_transaction_step_id => p_transaction_step_id
9652: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
9653: --
9654:

Line 9699: hr_transaction_api.get_NUMBER_value

9695: --
9696: ,P_START_DATE => l_effective_date
9697: --
9698: ,P_BUSINESS_GROUP_ID =>
9699: hr_transaction_api.get_NUMBER_value
9700: (p_transaction_step_id => p_transaction_step_id
9701: ,p_name => 'P_BUSINESS_GROUP_ID')
9702: --
9703: ,P_PERSON_ID => l_person_id

Line 9705: hr_transaction_api.get_NUMBER_value

9701: ,p_name => 'P_BUSINESS_GROUP_ID')
9702: --
9703: ,P_PERSON_ID => l_person_id
9704: /* StartRegistration
9705: hr_transaction_api.get_NUMBER_value
9706: (p_transaction_step_id => p_transaction_step_id
9707: ,p_name => 'P_PERSON_ID')
9708: EndRegistration */
9709: --

Line 9714: hr_transaction_api.get_NUMBER_value

9710: -- 9999 In case of P_CONTACT_PERSON_ID is -1 then
9711: -- pass null value rather than -1
9712: --
9713: ,P_CONTACT_PERSON_ID =>
9714: hr_transaction_api.get_NUMBER_value
9715: (p_transaction_step_id => p_transaction_step_id
9716: ,p_name => 'P_CONTACT_PERSON_ID')
9717: --
9718: ,P_CONTACT_TYPE => l_contact_type /*

Line 9719: hr_transaction_api.get_VARCHAR2_value

9715: (p_transaction_step_id => p_transaction_step_id
9716: ,p_name => 'P_CONTACT_PERSON_ID')
9717: --
9718: ,P_CONTACT_TYPE => l_contact_type /*
9719: hr_transaction_api.get_VARCHAR2_value
9720: (p_transaction_step_id => p_transaction_step_id
9721: ,p_name => 'P_CONTACT_TYPE') */
9722: --
9723: ,P_CTR_COMMENTS =>

Line 9724: hr_transaction_api.get_VARCHAR2_value

9720: (p_transaction_step_id => p_transaction_step_id
9721: ,p_name => 'P_CONTACT_TYPE') */
9722: --
9723: ,P_CTR_COMMENTS =>
9724: hr_transaction_api.get_VARCHAR2_value
9725: (p_transaction_step_id => p_transaction_step_id
9726: ,p_name => 'P_CTR_COMMENTS')
9727: --
9728: ,P_PRIMARY_CONTACT_FLAG => l_primary_contact_flag /*

Line 9729: hr_transaction_api.get_VARCHAR2_value

9725: (p_transaction_step_id => p_transaction_step_id
9726: ,p_name => 'P_CTR_COMMENTS')
9727: --
9728: ,P_PRIMARY_CONTACT_FLAG => l_primary_contact_flag /*
9729: hr_transaction_api.get_VARCHAR2_value
9730: (p_transaction_step_id => p_transaction_step_id
9731: ,p_name => 'P_PRIMARY_CONTACT_FLAG') */
9732: --
9733: ,P_DATE_START =>

Line 9734: hr_transaction_api.get_DATE_value

9730: (p_transaction_step_id => p_transaction_step_id
9731: ,p_name => 'P_PRIMARY_CONTACT_FLAG') */
9732: --
9733: ,P_DATE_START =>
9734: hr_transaction_api.get_DATE_value
9735: (p_transaction_step_id => p_transaction_step_id
9736: ,p_name => 'P_DATE_START')
9737: --
9738: ,P_START_LIFE_REASON_ID =>

Line 9739: hr_transaction_api.get_NUMBER_value

9735: (p_transaction_step_id => p_transaction_step_id
9736: ,p_name => 'P_DATE_START')
9737: --
9738: ,P_START_LIFE_REASON_ID =>
9739: hr_transaction_api.get_NUMBER_value
9740: (p_transaction_step_id => p_transaction_step_id
9741: ,p_name => 'P_START_LIFE_REASON_ID')
9742: --
9743: ,P_DATE_END =>

Line 9744: hr_transaction_api.get_DATE_value

9740: (p_transaction_step_id => p_transaction_step_id
9741: ,p_name => 'P_START_LIFE_REASON_ID')
9742: --
9743: ,P_DATE_END =>
9744: hr_transaction_api.get_DATE_value
9745: (p_transaction_step_id => p_transaction_step_id
9746: ,p_name => 'P_DATE_END')
9747: --
9748: ,P_END_LIFE_REASON_ID =>

Line 9749: hr_transaction_api.get_NUMBER_value

9745: (p_transaction_step_id => p_transaction_step_id
9746: ,p_name => 'P_DATE_END')
9747: --
9748: ,P_END_LIFE_REASON_ID =>
9749: hr_transaction_api.get_NUMBER_value
9750: (p_transaction_step_id => p_transaction_step_id
9751: ,p_name => 'P_END_LIFE_REASON_ID')
9752: --
9753: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 9754: hr_transaction_api.get_VARCHAR2_value

9750: (p_transaction_step_id => p_transaction_step_id
9751: ,p_name => 'P_END_LIFE_REASON_ID')
9752: --
9753: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
9754: hr_transaction_api.get_VARCHAR2_value
9755: (p_transaction_step_id => p_transaction_step_id
9756: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
9757: --
9758: ,P_PERSONAL_FLAG => l_personal_flag /*

Line 9759: hr_transaction_api.get_VARCHAR2_value

9755: (p_transaction_step_id => p_transaction_step_id
9756: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
9757: --
9758: ,P_PERSONAL_FLAG => l_personal_flag /*
9759: hr_transaction_api.get_VARCHAR2_value
9760: (p_transaction_step_id => p_transaction_step_id
9761: ,p_name => 'P_PERSONAL_FLAG') */
9762: --
9763: ,P_SEQUENCE_NUMBER =>

Line 9764: hr_transaction_api.get_NUMBER_value

9760: (p_transaction_step_id => p_transaction_step_id
9761: ,p_name => 'P_PERSONAL_FLAG') */
9762: --
9763: ,P_SEQUENCE_NUMBER =>
9764: hr_transaction_api.get_NUMBER_value
9765: (p_transaction_step_id => p_transaction_step_id
9766: ,p_name => 'P_SEQUENCE_NUMBER')
9767: --
9768: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 9769: hr_transaction_api.get_VARCHAR2_value

9765: (p_transaction_step_id => p_transaction_step_id
9766: ,p_name => 'P_SEQUENCE_NUMBER')
9767: --
9768: ,P_CONT_ATTRIBUTE_CATEGORY =>
9769: hr_transaction_api.get_VARCHAR2_value
9770: (p_transaction_step_id => p_transaction_step_id
9771: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
9772: --
9773: ,P_CONT_ATTRIBUTE1 =>

Line 9774: hr_transaction_api.get_VARCHAR2_value

9770: (p_transaction_step_id => p_transaction_step_id
9771: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
9772: --
9773: ,P_CONT_ATTRIBUTE1 =>
9774: hr_transaction_api.get_VARCHAR2_value
9775: (p_transaction_step_id => p_transaction_step_id
9776: ,p_name => 'P_CONT_ATTRIBUTE1')
9777: --
9778: ,P_CONT_ATTRIBUTE2 =>

Line 9779: hr_transaction_api.get_VARCHAR2_value

9775: (p_transaction_step_id => p_transaction_step_id
9776: ,p_name => 'P_CONT_ATTRIBUTE1')
9777: --
9778: ,P_CONT_ATTRIBUTE2 =>
9779: hr_transaction_api.get_VARCHAR2_value
9780: (p_transaction_step_id => p_transaction_step_id
9781: ,p_name => 'P_CONT_ATTRIBUTE2')
9782: --
9783: ,P_CONT_ATTRIBUTE3 =>

Line 9784: hr_transaction_api.get_VARCHAR2_value

9780: (p_transaction_step_id => p_transaction_step_id
9781: ,p_name => 'P_CONT_ATTRIBUTE2')
9782: --
9783: ,P_CONT_ATTRIBUTE3 =>
9784: hr_transaction_api.get_VARCHAR2_value
9785: (p_transaction_step_id => p_transaction_step_id
9786: ,p_name => 'P_CONT_ATTRIBUTE3')
9787: --
9788: ,P_CONT_ATTRIBUTE4 =>

Line 9789: hr_transaction_api.get_VARCHAR2_value

9785: (p_transaction_step_id => p_transaction_step_id
9786: ,p_name => 'P_CONT_ATTRIBUTE3')
9787: --
9788: ,P_CONT_ATTRIBUTE4 =>
9789: hr_transaction_api.get_VARCHAR2_value
9790: (p_transaction_step_id => p_transaction_step_id
9791: ,p_name => 'P_CONT_ATTRIBUTE4')
9792: --
9793: ,P_CONT_ATTRIBUTE5 =>

Line 9794: hr_transaction_api.get_VARCHAR2_value

9790: (p_transaction_step_id => p_transaction_step_id
9791: ,p_name => 'P_CONT_ATTRIBUTE4')
9792: --
9793: ,P_CONT_ATTRIBUTE5 =>
9794: hr_transaction_api.get_VARCHAR2_value
9795: (p_transaction_step_id => p_transaction_step_id
9796: ,p_name => 'P_CONT_ATTRIBUTE5')
9797: --
9798: ,P_CONT_ATTRIBUTE6 =>

Line 9799: hr_transaction_api.get_VARCHAR2_value

9795: (p_transaction_step_id => p_transaction_step_id
9796: ,p_name => 'P_CONT_ATTRIBUTE5')
9797: --
9798: ,P_CONT_ATTRIBUTE6 =>
9799: hr_transaction_api.get_VARCHAR2_value
9800: (p_transaction_step_id => p_transaction_step_id
9801: ,p_name => 'P_CONT_ATTRIBUTE6')
9802: --
9803: ,P_CONT_ATTRIBUTE7 =>

Line 9804: hr_transaction_api.get_VARCHAR2_value

9800: (p_transaction_step_id => p_transaction_step_id
9801: ,p_name => 'P_CONT_ATTRIBUTE6')
9802: --
9803: ,P_CONT_ATTRIBUTE7 =>
9804: hr_transaction_api.get_VARCHAR2_value
9805: (p_transaction_step_id => p_transaction_step_id
9806: ,p_name => 'P_CONT_ATTRIBUTE7')
9807: --
9808: ,P_CONT_ATTRIBUTE8 =>

Line 9809: hr_transaction_api.get_VARCHAR2_value

9805: (p_transaction_step_id => p_transaction_step_id
9806: ,p_name => 'P_CONT_ATTRIBUTE7')
9807: --
9808: ,P_CONT_ATTRIBUTE8 =>
9809: hr_transaction_api.get_VARCHAR2_value
9810: (p_transaction_step_id => p_transaction_step_id
9811: ,p_name => 'P_CONT_ATTRIBUTE8')
9812: --
9813: ,P_CONT_ATTRIBUTE9 =>

Line 9814: hr_transaction_api.get_VARCHAR2_value

9810: (p_transaction_step_id => p_transaction_step_id
9811: ,p_name => 'P_CONT_ATTRIBUTE8')
9812: --
9813: ,P_CONT_ATTRIBUTE9 =>
9814: hr_transaction_api.get_VARCHAR2_value
9815: (p_transaction_step_id => p_transaction_step_id
9816: ,p_name => 'P_CONT_ATTRIBUTE9')
9817: --
9818: ,P_CONT_ATTRIBUTE10 =>

Line 9819: hr_transaction_api.get_VARCHAR2_value

9815: (p_transaction_step_id => p_transaction_step_id
9816: ,p_name => 'P_CONT_ATTRIBUTE9')
9817: --
9818: ,P_CONT_ATTRIBUTE10 =>
9819: hr_transaction_api.get_VARCHAR2_value
9820: (p_transaction_step_id => p_transaction_step_id
9821: ,p_name => 'P_CONT_ATTRIBUTE10')
9822: --
9823: ,P_CONT_ATTRIBUTE11 =>

Line 9824: hr_transaction_api.get_VARCHAR2_value

9820: (p_transaction_step_id => p_transaction_step_id
9821: ,p_name => 'P_CONT_ATTRIBUTE10')
9822: --
9823: ,P_CONT_ATTRIBUTE11 =>
9824: hr_transaction_api.get_VARCHAR2_value
9825: (p_transaction_step_id => p_transaction_step_id
9826: ,p_name => 'P_CONT_ATTRIBUTE11')
9827: --
9828: ,P_CONT_ATTRIBUTE12 =>

Line 9829: hr_transaction_api.get_VARCHAR2_value

9825: (p_transaction_step_id => p_transaction_step_id
9826: ,p_name => 'P_CONT_ATTRIBUTE11')
9827: --
9828: ,P_CONT_ATTRIBUTE12 =>
9829: hr_transaction_api.get_VARCHAR2_value
9830: (p_transaction_step_id => p_transaction_step_id
9831: ,p_name => 'P_CONT_ATTRIBUTE12')
9832: --
9833: ,P_CONT_ATTRIBUTE13 =>

Line 9834: hr_transaction_api.get_VARCHAR2_value

9830: (p_transaction_step_id => p_transaction_step_id
9831: ,p_name => 'P_CONT_ATTRIBUTE12')
9832: --
9833: ,P_CONT_ATTRIBUTE13 =>
9834: hr_transaction_api.get_VARCHAR2_value
9835: (p_transaction_step_id => p_transaction_step_id
9836: ,p_name => 'P_CONT_ATTRIBUTE13')
9837: --
9838: ,P_CONT_ATTRIBUTE14 =>

Line 9839: hr_transaction_api.get_VARCHAR2_value

9835: (p_transaction_step_id => p_transaction_step_id
9836: ,p_name => 'P_CONT_ATTRIBUTE13')
9837: --
9838: ,P_CONT_ATTRIBUTE14 =>
9839: hr_transaction_api.get_VARCHAR2_value
9840: (p_transaction_step_id => p_transaction_step_id
9841: ,p_name => 'P_CONT_ATTRIBUTE14')
9842: --
9843: ,P_CONT_ATTRIBUTE15 =>

Line 9844: hr_transaction_api.get_VARCHAR2_value

9840: (p_transaction_step_id => p_transaction_step_id
9841: ,p_name => 'P_CONT_ATTRIBUTE14')
9842: --
9843: ,P_CONT_ATTRIBUTE15 =>
9844: hr_transaction_api.get_VARCHAR2_value
9845: (p_transaction_step_id => p_transaction_step_id
9846: ,p_name => 'P_CONT_ATTRIBUTE15')
9847: --
9848: ,P_CONT_ATTRIBUTE16 =>

Line 9849: hr_transaction_api.get_VARCHAR2_value

9845: (p_transaction_step_id => p_transaction_step_id
9846: ,p_name => 'P_CONT_ATTRIBUTE15')
9847: --
9848: ,P_CONT_ATTRIBUTE16 =>
9849: hr_transaction_api.get_VARCHAR2_value
9850: (p_transaction_step_id => p_transaction_step_id
9851: ,p_name => 'P_CONT_ATTRIBUTE16')
9852: --
9853: ,P_CONT_ATTRIBUTE17 =>

Line 9854: hr_transaction_api.get_VARCHAR2_value

9850: (p_transaction_step_id => p_transaction_step_id
9851: ,p_name => 'P_CONT_ATTRIBUTE16')
9852: --
9853: ,P_CONT_ATTRIBUTE17 =>
9854: hr_transaction_api.get_VARCHAR2_value
9855: (p_transaction_step_id => p_transaction_step_id
9856: ,p_name => 'P_CONT_ATTRIBUTE17')
9857: --
9858: ,P_CONT_ATTRIBUTE18 =>

Line 9859: hr_transaction_api.get_VARCHAR2_value

9855: (p_transaction_step_id => p_transaction_step_id
9856: ,p_name => 'P_CONT_ATTRIBUTE17')
9857: --
9858: ,P_CONT_ATTRIBUTE18 =>
9859: hr_transaction_api.get_VARCHAR2_value
9860: (p_transaction_step_id => p_transaction_step_id
9861: ,p_name => 'P_CONT_ATTRIBUTE18')
9862: --
9863: ,P_CONT_ATTRIBUTE19 =>

Line 9864: hr_transaction_api.get_VARCHAR2_value

9860: (p_transaction_step_id => p_transaction_step_id
9861: ,p_name => 'P_CONT_ATTRIBUTE18')
9862: --
9863: ,P_CONT_ATTRIBUTE19 =>
9864: hr_transaction_api.get_VARCHAR2_value
9865: (p_transaction_step_id => p_transaction_step_id
9866: ,p_name => 'P_CONT_ATTRIBUTE19')
9867: --
9868: ,P_CONT_ATTRIBUTE20 =>

Line 9869: hr_transaction_api.get_VARCHAR2_value

9865: (p_transaction_step_id => p_transaction_step_id
9866: ,p_name => 'P_CONT_ATTRIBUTE19')
9867: --
9868: ,P_CONT_ATTRIBUTE20 =>
9869: hr_transaction_api.get_VARCHAR2_value
9870: (p_transaction_step_id => p_transaction_step_id
9871: ,p_name => 'P_CONT_ATTRIBUTE20')
9872: --
9873: ,P_THIRD_PARTY_PAY_FLAG =>

Line 9874: hr_transaction_api.get_VARCHAR2_value

9870: (p_transaction_step_id => p_transaction_step_id
9871: ,p_name => 'P_CONT_ATTRIBUTE20')
9872: --
9873: ,P_THIRD_PARTY_PAY_FLAG =>
9874: hr_transaction_api.get_VARCHAR2_value
9875: (p_transaction_step_id => p_transaction_step_id
9876: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
9877: --
9878: ,P_BONDHOLDER_FLAG =>

Line 9879: hr_transaction_api.get_VARCHAR2_value

9875: (p_transaction_step_id => p_transaction_step_id
9876: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
9877: --
9878: ,P_BONDHOLDER_FLAG =>
9879: hr_transaction_api.get_VARCHAR2_value
9880: (p_transaction_step_id => p_transaction_step_id
9881: ,p_name => 'P_BONDHOLDER_FLAG')
9882: --
9883: ,P_DEPENDENT_FLAG =>

Line 9884: hr_transaction_api.get_VARCHAR2_value

9880: (p_transaction_step_id => p_transaction_step_id
9881: ,p_name => 'P_BONDHOLDER_FLAG')
9882: --
9883: ,P_DEPENDENT_FLAG =>
9884: hr_transaction_api.get_VARCHAR2_value
9885: (p_transaction_step_id => p_transaction_step_id
9886: ,p_name => 'P_DEPENDENT_FLAG')
9887: --
9888: ,P_BENEFICIARY_FLAG =>

Line 9889: hr_transaction_api.get_VARCHAR2_value

9885: (p_transaction_step_id => p_transaction_step_id
9886: ,p_name => 'P_DEPENDENT_FLAG')
9887: --
9888: ,P_BENEFICIARY_FLAG =>
9889: hr_transaction_api.get_VARCHAR2_value
9890: (p_transaction_step_id => p_transaction_step_id
9891: ,p_name => 'P_BENEFICIARY_FLAG')
9892: --
9893: ,P_LAST_NAME =>

Line 9894: hr_transaction_api.get_VARCHAR2_value

9890: (p_transaction_step_id => p_transaction_step_id
9891: ,p_name => 'P_BENEFICIARY_FLAG')
9892: --
9893: ,P_LAST_NAME =>
9894: hr_transaction_api.get_VARCHAR2_value
9895: (p_transaction_step_id => p_transaction_step_id
9896: ,p_name => 'P_LAST_NAME')
9897: --
9898: ,P_SEX =>

Line 9899: hr_transaction_api.get_VARCHAR2_value

9895: (p_transaction_step_id => p_transaction_step_id
9896: ,p_name => 'P_LAST_NAME')
9897: --
9898: ,P_SEX =>
9899: hr_transaction_api.get_VARCHAR2_value
9900: (p_transaction_step_id => p_transaction_step_id
9901: ,p_name => 'P_SEX')
9902: --
9903: ,P_PERSON_TYPE_ID =>

Line 9904: hr_transaction_api.get_NUMBER_value

9900: (p_transaction_step_id => p_transaction_step_id
9901: ,p_name => 'P_SEX')
9902: --
9903: ,P_PERSON_TYPE_ID =>
9904: hr_transaction_api.get_NUMBER_value
9905: (p_transaction_step_id => p_transaction_step_id
9906: ,p_name => 'P_PERSON_TYPE_ID')
9907: --
9908: ,P_PER_COMMENTS =>

Line 9909: hr_transaction_api.get_VARCHAR2_value

9905: (p_transaction_step_id => p_transaction_step_id
9906: ,p_name => 'P_PERSON_TYPE_ID')
9907: --
9908: ,P_PER_COMMENTS =>
9909: hr_transaction_api.get_VARCHAR2_value
9910: (p_transaction_step_id => p_transaction_step_id
9911: ,p_name => 'P_PER_COMMENTS')
9912: --
9913: ,P_DATE_OF_BIRTH =>

Line 9914: hr_transaction_api.get_DATE_value

9910: (p_transaction_step_id => p_transaction_step_id
9911: ,p_name => 'P_PER_COMMENTS')
9912: --
9913: ,P_DATE_OF_BIRTH =>
9914: hr_transaction_api.get_DATE_value
9915: (p_transaction_step_id => p_transaction_step_id
9916: ,p_name => 'P_DATE_OF_BIRTH')
9917: --
9918: ,P_EMAIL_ADDRESS =>

Line 9919: hr_transaction_api.get_VARCHAR2_value

9915: (p_transaction_step_id => p_transaction_step_id
9916: ,p_name => 'P_DATE_OF_BIRTH')
9917: --
9918: ,P_EMAIL_ADDRESS =>
9919: hr_transaction_api.get_VARCHAR2_value
9920: (p_transaction_step_id => p_transaction_step_id
9921: ,p_name => 'P_EMAIL_ADDRESS')
9922: --
9923: ,P_FIRST_NAME =>

Line 9924: hr_transaction_api.get_VARCHAR2_value

9920: (p_transaction_step_id => p_transaction_step_id
9921: ,p_name => 'P_EMAIL_ADDRESS')
9922: --
9923: ,P_FIRST_NAME =>
9924: hr_transaction_api.get_VARCHAR2_value
9925: (p_transaction_step_id => p_transaction_step_id
9926: ,p_name => 'P_FIRST_NAME')
9927: --
9928: ,P_KNOWN_AS =>

Line 9929: hr_transaction_api.get_VARCHAR2_value

9925: (p_transaction_step_id => p_transaction_step_id
9926: ,p_name => 'P_FIRST_NAME')
9927: --
9928: ,P_KNOWN_AS =>
9929: hr_transaction_api.get_VARCHAR2_value
9930: (p_transaction_step_id => p_transaction_step_id
9931: ,p_name => 'P_KNOWN_AS')
9932: --
9933: ,P_MARITAL_STATUS =>

Line 9934: hr_transaction_api.get_VARCHAR2_value

9930: (p_transaction_step_id => p_transaction_step_id
9931: ,p_name => 'P_KNOWN_AS')
9932: --
9933: ,P_MARITAL_STATUS =>
9934: hr_transaction_api.get_VARCHAR2_value
9935: (p_transaction_step_id => p_transaction_step_id
9936: ,p_name => 'P_MARITAL_STATUS')
9937: --
9938: ,P_MIDDLE_NAMES =>

Line 9939: hr_transaction_api.get_VARCHAR2_value

9935: (p_transaction_step_id => p_transaction_step_id
9936: ,p_name => 'P_MARITAL_STATUS')
9937: --
9938: ,P_MIDDLE_NAMES =>
9939: hr_transaction_api.get_VARCHAR2_value
9940: (p_transaction_step_id => p_transaction_step_id
9941: ,p_name => 'P_MIDDLE_NAMES')
9942: --
9943: ,P_NATIONALITY =>

Line 9944: hr_transaction_api.get_VARCHAR2_value

9940: (p_transaction_step_id => p_transaction_step_id
9941: ,p_name => 'P_MIDDLE_NAMES')
9942: --
9943: ,P_NATIONALITY =>
9944: hr_transaction_api.get_VARCHAR2_value
9945: (p_transaction_step_id => p_transaction_step_id
9946: ,p_name => 'P_NATIONALITY')
9947: --
9948: ,P_NATIONAL_IDENTIFIER =>

Line 9949: hr_transaction_api.get_VARCHAR2_value

9945: (p_transaction_step_id => p_transaction_step_id
9946: ,p_name => 'P_NATIONALITY')
9947: --
9948: ,P_NATIONAL_IDENTIFIER =>
9949: hr_transaction_api.get_VARCHAR2_value
9950: (p_transaction_step_id => p_transaction_step_id
9951: ,p_name => 'P_NATIONAL_IDENTIFIER')
9952: --
9953: ,P_PREVIOUS_LAST_NAME =>

Line 9954: hr_transaction_api.get_VARCHAR2_value

9950: (p_transaction_step_id => p_transaction_step_id
9951: ,p_name => 'P_NATIONAL_IDENTIFIER')
9952: --
9953: ,P_PREVIOUS_LAST_NAME =>
9954: hr_transaction_api.get_VARCHAR2_value
9955: (p_transaction_step_id => p_transaction_step_id
9956: ,p_name => 'P_PREVIOUS_LAST_NAME')
9957: --
9958: ,P_REGISTERED_DISABLED_FLAG =>

Line 9959: hr_transaction_api.get_VARCHAR2_value

9955: (p_transaction_step_id => p_transaction_step_id
9956: ,p_name => 'P_PREVIOUS_LAST_NAME')
9957: --
9958: ,P_REGISTERED_DISABLED_FLAG =>
9959: hr_transaction_api.get_VARCHAR2_value
9960: (p_transaction_step_id => p_transaction_step_id
9961: ,p_name => 'P_REGISTERED_DISABLED_FLAG')
9962: --
9963: ,P_TITLE =>

Line 9964: hr_transaction_api.get_VARCHAR2_value

9960: (p_transaction_step_id => p_transaction_step_id
9961: ,p_name => 'P_REGISTERED_DISABLED_FLAG')
9962: --
9963: ,P_TITLE =>
9964: hr_transaction_api.get_VARCHAR2_value
9965: (p_transaction_step_id => p_transaction_step_id
9966: ,p_name => 'P_TITLE')
9967: --
9968: ,P_WORK_TELEPHONE =>

Line 9969: hr_transaction_api.get_VARCHAR2_value

9965: (p_transaction_step_id => p_transaction_step_id
9966: ,p_name => 'P_TITLE')
9967: --
9968: ,P_WORK_TELEPHONE =>
9969: hr_transaction_api.get_VARCHAR2_value
9970: (p_transaction_step_id => p_transaction_step_id
9971: ,p_name => 'P_WORK_TELEPHONE')
9972: --
9973: ,P_ATTRIBUTE_CATEGORY =>

Line 9974: hr_transaction_api.get_VARCHAR2_value

9970: (p_transaction_step_id => p_transaction_step_id
9971: ,p_name => 'P_WORK_TELEPHONE')
9972: --
9973: ,P_ATTRIBUTE_CATEGORY =>
9974: hr_transaction_api.get_VARCHAR2_value
9975: (p_transaction_step_id => p_transaction_step_id
9976: ,p_name => 'P_ATTRIBUTE_CATEGORY')
9977: --
9978: ,P_ATTRIBUTE1 =>

Line 9979: hr_transaction_api.get_VARCHAR2_value

9975: (p_transaction_step_id => p_transaction_step_id
9976: ,p_name => 'P_ATTRIBUTE_CATEGORY')
9977: --
9978: ,P_ATTRIBUTE1 =>
9979: hr_transaction_api.get_VARCHAR2_value
9980: (p_transaction_step_id => p_transaction_step_id
9981: ,p_name => 'P_ATTRIBUTE1')
9982: --
9983: ,P_ATTRIBUTE2 =>

Line 9984: hr_transaction_api.get_VARCHAR2_value

9980: (p_transaction_step_id => p_transaction_step_id
9981: ,p_name => 'P_ATTRIBUTE1')
9982: --
9983: ,P_ATTRIBUTE2 =>
9984: hr_transaction_api.get_VARCHAR2_value
9985: (p_transaction_step_id => p_transaction_step_id
9986: ,p_name => 'P_ATTRIBUTE2')
9987: --
9988: ,P_ATTRIBUTE3 =>

Line 9989: hr_transaction_api.get_VARCHAR2_value

9985: (p_transaction_step_id => p_transaction_step_id
9986: ,p_name => 'P_ATTRIBUTE2')
9987: --
9988: ,P_ATTRIBUTE3 =>
9989: hr_transaction_api.get_VARCHAR2_value
9990: (p_transaction_step_id => p_transaction_step_id
9991: ,p_name => 'P_ATTRIBUTE3')
9992: --
9993: ,P_ATTRIBUTE4 =>

Line 9994: hr_transaction_api.get_VARCHAR2_value

9990: (p_transaction_step_id => p_transaction_step_id
9991: ,p_name => 'P_ATTRIBUTE3')
9992: --
9993: ,P_ATTRIBUTE4 =>
9994: hr_transaction_api.get_VARCHAR2_value
9995: (p_transaction_step_id => p_transaction_step_id
9996: ,p_name => 'P_ATTRIBUTE4')
9997: --
9998: ,P_ATTRIBUTE5 =>

Line 9999: hr_transaction_api.get_VARCHAR2_value

9995: (p_transaction_step_id => p_transaction_step_id
9996: ,p_name => 'P_ATTRIBUTE4')
9997: --
9998: ,P_ATTRIBUTE5 =>
9999: hr_transaction_api.get_VARCHAR2_value
10000: (p_transaction_step_id => p_transaction_step_id
10001: ,p_name => 'P_ATTRIBUTE5')
10002: --
10003: ,P_ATTRIBUTE6 =>

Line 10004: hr_transaction_api.get_VARCHAR2_value

10000: (p_transaction_step_id => p_transaction_step_id
10001: ,p_name => 'P_ATTRIBUTE5')
10002: --
10003: ,P_ATTRIBUTE6 =>
10004: hr_transaction_api.get_VARCHAR2_value
10005: (p_transaction_step_id => p_transaction_step_id
10006: ,p_name => 'P_ATTRIBUTE6')
10007: --
10008: ,P_ATTRIBUTE7 =>

Line 10009: hr_transaction_api.get_VARCHAR2_value

10005: (p_transaction_step_id => p_transaction_step_id
10006: ,p_name => 'P_ATTRIBUTE6')
10007: --
10008: ,P_ATTRIBUTE7 =>
10009: hr_transaction_api.get_VARCHAR2_value
10010: (p_transaction_step_id => p_transaction_step_id
10011: ,p_name => 'P_ATTRIBUTE7')
10012: --
10013: ,P_ATTRIBUTE8 =>

Line 10014: hr_transaction_api.get_VARCHAR2_value

10010: (p_transaction_step_id => p_transaction_step_id
10011: ,p_name => 'P_ATTRIBUTE7')
10012: --
10013: ,P_ATTRIBUTE8 =>
10014: hr_transaction_api.get_VARCHAR2_value
10015: (p_transaction_step_id => p_transaction_step_id
10016: ,p_name => 'P_ATTRIBUTE8')
10017: --
10018: ,P_ATTRIBUTE9 =>

Line 10019: hr_transaction_api.get_VARCHAR2_value

10015: (p_transaction_step_id => p_transaction_step_id
10016: ,p_name => 'P_ATTRIBUTE8')
10017: --
10018: ,P_ATTRIBUTE9 =>
10019: hr_transaction_api.get_VARCHAR2_value
10020: (p_transaction_step_id => p_transaction_step_id
10021: ,p_name => 'P_ATTRIBUTE9')
10022: --
10023: ,P_ATTRIBUTE10 =>

Line 10024: hr_transaction_api.get_VARCHAR2_value

10020: (p_transaction_step_id => p_transaction_step_id
10021: ,p_name => 'P_ATTRIBUTE9')
10022: --
10023: ,P_ATTRIBUTE10 =>
10024: hr_transaction_api.get_VARCHAR2_value
10025: (p_transaction_step_id => p_transaction_step_id
10026: ,p_name => 'P_ATTRIBUTE10')
10027: --
10028: ,P_ATTRIBUTE11 =>

Line 10029: hr_transaction_api.get_VARCHAR2_value

10025: (p_transaction_step_id => p_transaction_step_id
10026: ,p_name => 'P_ATTRIBUTE10')
10027: --
10028: ,P_ATTRIBUTE11 =>
10029: hr_transaction_api.get_VARCHAR2_value
10030: (p_transaction_step_id => p_transaction_step_id
10031: ,p_name => 'P_ATTRIBUTE11')
10032: --
10033: ,P_ATTRIBUTE12 =>

Line 10034: hr_transaction_api.get_VARCHAR2_value

10030: (p_transaction_step_id => p_transaction_step_id
10031: ,p_name => 'P_ATTRIBUTE11')
10032: --
10033: ,P_ATTRIBUTE12 =>
10034: hr_transaction_api.get_VARCHAR2_value
10035: (p_transaction_step_id => p_transaction_step_id
10036: ,p_name => 'P_ATTRIBUTE12')
10037: --
10038: ,P_ATTRIBUTE13 =>

Line 10039: hr_transaction_api.get_VARCHAR2_value

10035: (p_transaction_step_id => p_transaction_step_id
10036: ,p_name => 'P_ATTRIBUTE12')
10037: --
10038: ,P_ATTRIBUTE13 =>
10039: hr_transaction_api.get_VARCHAR2_value
10040: (p_transaction_step_id => p_transaction_step_id
10041: ,p_name => 'P_ATTRIBUTE13')
10042: --
10043: ,P_ATTRIBUTE14 =>

Line 10044: hr_transaction_api.get_VARCHAR2_value

10040: (p_transaction_step_id => p_transaction_step_id
10041: ,p_name => 'P_ATTRIBUTE13')
10042: --
10043: ,P_ATTRIBUTE14 =>
10044: hr_transaction_api.get_VARCHAR2_value
10045: (p_transaction_step_id => p_transaction_step_id
10046: ,p_name => 'P_ATTRIBUTE14')
10047: --
10048: ,P_ATTRIBUTE15 =>

Line 10049: hr_transaction_api.get_VARCHAR2_value

10045: (p_transaction_step_id => p_transaction_step_id
10046: ,p_name => 'P_ATTRIBUTE14')
10047: --
10048: ,P_ATTRIBUTE15 =>
10049: hr_transaction_api.get_VARCHAR2_value
10050: (p_transaction_step_id => p_transaction_step_id
10051: ,p_name => 'P_ATTRIBUTE15')
10052: --
10053: ,P_ATTRIBUTE16 =>

Line 10054: hr_transaction_api.get_VARCHAR2_value

10050: (p_transaction_step_id => p_transaction_step_id
10051: ,p_name => 'P_ATTRIBUTE15')
10052: --
10053: ,P_ATTRIBUTE16 =>
10054: hr_transaction_api.get_VARCHAR2_value
10055: (p_transaction_step_id => p_transaction_step_id
10056: ,p_name => 'P_ATTRIBUTE16')
10057: --
10058: ,P_ATTRIBUTE17 =>

Line 10059: hr_transaction_api.get_VARCHAR2_value

10055: (p_transaction_step_id => p_transaction_step_id
10056: ,p_name => 'P_ATTRIBUTE16')
10057: --
10058: ,P_ATTRIBUTE17 =>
10059: hr_transaction_api.get_VARCHAR2_value
10060: (p_transaction_step_id => p_transaction_step_id
10061: ,p_name => 'P_ATTRIBUTE17')
10062: --
10063: ,P_ATTRIBUTE18 =>

Line 10064: hr_transaction_api.get_VARCHAR2_value

10060: (p_transaction_step_id => p_transaction_step_id
10061: ,p_name => 'P_ATTRIBUTE17')
10062: --
10063: ,P_ATTRIBUTE18 =>
10064: hr_transaction_api.get_VARCHAR2_value
10065: (p_transaction_step_id => p_transaction_step_id
10066: ,p_name => 'P_ATTRIBUTE18')
10067: --
10068: ,P_ATTRIBUTE19 =>

Line 10069: hr_transaction_api.get_VARCHAR2_value

10065: (p_transaction_step_id => p_transaction_step_id
10066: ,p_name => 'P_ATTRIBUTE18')
10067: --
10068: ,P_ATTRIBUTE19 =>
10069: hr_transaction_api.get_VARCHAR2_value
10070: (p_transaction_step_id => p_transaction_step_id
10071: ,p_name => 'P_ATTRIBUTE19')
10072: --
10073: ,P_ATTRIBUTE20 =>

Line 10074: hr_transaction_api.get_VARCHAR2_value

10070: (p_transaction_step_id => p_transaction_step_id
10071: ,p_name => 'P_ATTRIBUTE19')
10072: --
10073: ,P_ATTRIBUTE20 =>
10074: hr_transaction_api.get_VARCHAR2_value
10075: (p_transaction_step_id => p_transaction_step_id
10076: ,p_name => 'P_ATTRIBUTE20')
10077: --
10078: ,P_ATTRIBUTE21 =>

Line 10079: hr_transaction_api.get_VARCHAR2_value

10075: (p_transaction_step_id => p_transaction_step_id
10076: ,p_name => 'P_ATTRIBUTE20')
10077: --
10078: ,P_ATTRIBUTE21 =>
10079: hr_transaction_api.get_VARCHAR2_value
10080: (p_transaction_step_id => p_transaction_step_id
10081: ,p_name => 'P_ATTRIBUTE21')
10082: --
10083: ,P_ATTRIBUTE22 =>

Line 10084: hr_transaction_api.get_VARCHAR2_value

10080: (p_transaction_step_id => p_transaction_step_id
10081: ,p_name => 'P_ATTRIBUTE21')
10082: --
10083: ,P_ATTRIBUTE22 =>
10084: hr_transaction_api.get_VARCHAR2_value
10085: (p_transaction_step_id => p_transaction_step_id
10086: ,p_name => 'P_ATTRIBUTE22')
10087: --
10088: ,P_ATTRIBUTE23 =>

Line 10089: hr_transaction_api.get_VARCHAR2_value

10085: (p_transaction_step_id => p_transaction_step_id
10086: ,p_name => 'P_ATTRIBUTE22')
10087: --
10088: ,P_ATTRIBUTE23 =>
10089: hr_transaction_api.get_VARCHAR2_value
10090: (p_transaction_step_id => p_transaction_step_id
10091: ,p_name => 'P_ATTRIBUTE23')
10092: --
10093: ,P_ATTRIBUTE24 =>

Line 10094: hr_transaction_api.get_VARCHAR2_value

10090: (p_transaction_step_id => p_transaction_step_id
10091: ,p_name => 'P_ATTRIBUTE23')
10092: --
10093: ,P_ATTRIBUTE24 =>
10094: hr_transaction_api.get_VARCHAR2_value
10095: (p_transaction_step_id => p_transaction_step_id
10096: ,p_name => 'P_ATTRIBUTE24')
10097: --
10098: ,P_ATTRIBUTE25 =>

Line 10099: hr_transaction_api.get_VARCHAR2_value

10095: (p_transaction_step_id => p_transaction_step_id
10096: ,p_name => 'P_ATTRIBUTE24')
10097: --
10098: ,P_ATTRIBUTE25 =>
10099: hr_transaction_api.get_VARCHAR2_value
10100: (p_transaction_step_id => p_transaction_step_id
10101: ,p_name => 'P_ATTRIBUTE25')
10102: --
10103: ,P_ATTRIBUTE26 =>

Line 10104: hr_transaction_api.get_VARCHAR2_value

10100: (p_transaction_step_id => p_transaction_step_id
10101: ,p_name => 'P_ATTRIBUTE25')
10102: --
10103: ,P_ATTRIBUTE26 =>
10104: hr_transaction_api.get_VARCHAR2_value
10105: (p_transaction_step_id => p_transaction_step_id
10106: ,p_name => 'P_ATTRIBUTE26')
10107: --
10108: ,P_ATTRIBUTE27 =>

Line 10109: hr_transaction_api.get_VARCHAR2_value

10105: (p_transaction_step_id => p_transaction_step_id
10106: ,p_name => 'P_ATTRIBUTE26')
10107: --
10108: ,P_ATTRIBUTE27 =>
10109: hr_transaction_api.get_VARCHAR2_value
10110: (p_transaction_step_id => p_transaction_step_id
10111: ,p_name => 'P_ATTRIBUTE27')
10112: --
10113: ,P_ATTRIBUTE28 =>

Line 10114: hr_transaction_api.get_VARCHAR2_value

10110: (p_transaction_step_id => p_transaction_step_id
10111: ,p_name => 'P_ATTRIBUTE27')
10112: --
10113: ,P_ATTRIBUTE28 =>
10114: hr_transaction_api.get_VARCHAR2_value
10115: (p_transaction_step_id => p_transaction_step_id
10116: ,p_name => 'P_ATTRIBUTE28')
10117: --
10118: ,P_ATTRIBUTE29 =>

Line 10119: hr_transaction_api.get_VARCHAR2_value

10115: (p_transaction_step_id => p_transaction_step_id
10116: ,p_name => 'P_ATTRIBUTE28')
10117: --
10118: ,P_ATTRIBUTE29 =>
10119: hr_transaction_api.get_VARCHAR2_value
10120: (p_transaction_step_id => p_transaction_step_id
10121: ,p_name => 'P_ATTRIBUTE29')
10122: --
10123: ,P_ATTRIBUTE30 =>

Line 10124: hr_transaction_api.get_VARCHAR2_value

10120: (p_transaction_step_id => p_transaction_step_id
10121: ,p_name => 'P_ATTRIBUTE29')
10122: --
10123: ,P_ATTRIBUTE30 =>
10124: hr_transaction_api.get_VARCHAR2_value
10125: (p_transaction_step_id => p_transaction_step_id
10126: ,p_name => 'P_ATTRIBUTE30')
10127: --
10128: ,P_PER_INFORMATION_CATEGORY =>

Line 10129: hr_transaction_api.get_VARCHAR2_value

10125: (p_transaction_step_id => p_transaction_step_id
10126: ,p_name => 'P_ATTRIBUTE30')
10127: --
10128: ,P_PER_INFORMATION_CATEGORY =>
10129: hr_transaction_api.get_VARCHAR2_value
10130: (p_transaction_step_id => p_transaction_step_id
10131: ,p_name => 'P_PER_INFORMATION_CATEGORY')
10132: --
10133: ,P_PER_INFORMATION1 =>

Line 10134: hr_transaction_api.get_VARCHAR2_value

10130: (p_transaction_step_id => p_transaction_step_id
10131: ,p_name => 'P_PER_INFORMATION_CATEGORY')
10132: --
10133: ,P_PER_INFORMATION1 =>
10134: hr_transaction_api.get_VARCHAR2_value
10135: (p_transaction_step_id => p_transaction_step_id
10136: ,p_name => 'P_PER_INFORMATION1')
10137: --
10138: ,P_PER_INFORMATION2 =>

Line 10139: hr_transaction_api.get_VARCHAR2_value

10135: (p_transaction_step_id => p_transaction_step_id
10136: ,p_name => 'P_PER_INFORMATION1')
10137: --
10138: ,P_PER_INFORMATION2 =>
10139: hr_transaction_api.get_VARCHAR2_value
10140: (p_transaction_step_id => p_transaction_step_id
10141: ,p_name => 'P_PER_INFORMATION2')
10142: --
10143: ,P_PER_INFORMATION3 =>

Line 10144: hr_transaction_api.get_VARCHAR2_value

10140: (p_transaction_step_id => p_transaction_step_id
10141: ,p_name => 'P_PER_INFORMATION2')
10142: --
10143: ,P_PER_INFORMATION3 =>
10144: hr_transaction_api.get_VARCHAR2_value
10145: (p_transaction_step_id => p_transaction_step_id
10146: ,p_name => 'P_PER_INFORMATION3')
10147: --
10148: ,P_PER_INFORMATION4 =>

Line 10149: hr_transaction_api.get_VARCHAR2_value

10145: (p_transaction_step_id => p_transaction_step_id
10146: ,p_name => 'P_PER_INFORMATION3')
10147: --
10148: ,P_PER_INFORMATION4 =>
10149: hr_transaction_api.get_VARCHAR2_value
10150: (p_transaction_step_id => p_transaction_step_id
10151: ,p_name => 'P_PER_INFORMATION4')
10152: --
10153: ,P_PER_INFORMATION5 =>

Line 10154: hr_transaction_api.get_VARCHAR2_value

10150: (p_transaction_step_id => p_transaction_step_id
10151: ,p_name => 'P_PER_INFORMATION4')
10152: --
10153: ,P_PER_INFORMATION5 =>
10154: hr_transaction_api.get_VARCHAR2_value
10155: (p_transaction_step_id => p_transaction_step_id
10156: ,p_name => 'P_PER_INFORMATION5')
10157: --
10158: ,P_PER_INFORMATION6 =>

Line 10159: hr_transaction_api.get_VARCHAR2_value

10155: (p_transaction_step_id => p_transaction_step_id
10156: ,p_name => 'P_PER_INFORMATION5')
10157: --
10158: ,P_PER_INFORMATION6 =>
10159: hr_transaction_api.get_VARCHAR2_value
10160: (p_transaction_step_id => p_transaction_step_id
10161: ,p_name => 'P_PER_INFORMATION6')
10162: --
10163: ,P_PER_INFORMATION7 =>

Line 10164: hr_transaction_api.get_VARCHAR2_value

10160: (p_transaction_step_id => p_transaction_step_id
10161: ,p_name => 'P_PER_INFORMATION6')
10162: --
10163: ,P_PER_INFORMATION7 =>
10164: hr_transaction_api.get_VARCHAR2_value
10165: (p_transaction_step_id => p_transaction_step_id
10166: ,p_name => 'P_PER_INFORMATION7')
10167: --
10168: ,P_PER_INFORMATION8 =>

Line 10169: hr_transaction_api.get_VARCHAR2_value

10165: (p_transaction_step_id => p_transaction_step_id
10166: ,p_name => 'P_PER_INFORMATION7')
10167: --
10168: ,P_PER_INFORMATION8 =>
10169: hr_transaction_api.get_VARCHAR2_value
10170: (p_transaction_step_id => p_transaction_step_id
10171: ,p_name => 'P_PER_INFORMATION8')
10172: --
10173: ,P_PER_INFORMATION9 =>

Line 10174: hr_transaction_api.get_VARCHAR2_value

10170: (p_transaction_step_id => p_transaction_step_id
10171: ,p_name => 'P_PER_INFORMATION8')
10172: --
10173: ,P_PER_INFORMATION9 =>
10174: hr_transaction_api.get_VARCHAR2_value
10175: (p_transaction_step_id => p_transaction_step_id
10176: ,p_name => 'P_PER_INFORMATION9')
10177: --
10178: ,P_PER_INFORMATION10 =>

Line 10179: hr_transaction_api.get_VARCHAR2_value

10175: (p_transaction_step_id => p_transaction_step_id
10176: ,p_name => 'P_PER_INFORMATION9')
10177: --
10178: ,P_PER_INFORMATION10 =>
10179: hr_transaction_api.get_VARCHAR2_value
10180: (p_transaction_step_id => p_transaction_step_id
10181: ,p_name => 'P_PER_INFORMATION10')
10182: --
10183: ,P_PER_INFORMATION11 =>

Line 10184: hr_transaction_api.get_VARCHAR2_value

10180: (p_transaction_step_id => p_transaction_step_id
10181: ,p_name => 'P_PER_INFORMATION10')
10182: --
10183: ,P_PER_INFORMATION11 =>
10184: hr_transaction_api.get_VARCHAR2_value
10185: (p_transaction_step_id => p_transaction_step_id
10186: ,p_name => 'P_PER_INFORMATION11')
10187: --
10188: ,P_PER_INFORMATION12 =>

Line 10189: hr_transaction_api.get_VARCHAR2_value

10185: (p_transaction_step_id => p_transaction_step_id
10186: ,p_name => 'P_PER_INFORMATION11')
10187: --
10188: ,P_PER_INFORMATION12 =>
10189: hr_transaction_api.get_VARCHAR2_value
10190: (p_transaction_step_id => p_transaction_step_id
10191: ,p_name => 'P_PER_INFORMATION12')
10192: --
10193: ,P_PER_INFORMATION13 =>

Line 10194: hr_transaction_api.get_VARCHAR2_value

10190: (p_transaction_step_id => p_transaction_step_id
10191: ,p_name => 'P_PER_INFORMATION12')
10192: --
10193: ,P_PER_INFORMATION13 =>
10194: hr_transaction_api.get_VARCHAR2_value
10195: (p_transaction_step_id => p_transaction_step_id
10196: ,p_name => 'P_PER_INFORMATION13')
10197: --
10198: ,P_PER_INFORMATION14 =>

Line 10199: hr_transaction_api.get_VARCHAR2_value

10195: (p_transaction_step_id => p_transaction_step_id
10196: ,p_name => 'P_PER_INFORMATION13')
10197: --
10198: ,P_PER_INFORMATION14 =>
10199: hr_transaction_api.get_VARCHAR2_value
10200: (p_transaction_step_id => p_transaction_step_id
10201: ,p_name => 'P_PER_INFORMATION14')
10202: --
10203: ,P_PER_INFORMATION15 =>

Line 10204: hr_transaction_api.get_VARCHAR2_value

10200: (p_transaction_step_id => p_transaction_step_id
10201: ,p_name => 'P_PER_INFORMATION14')
10202: --
10203: ,P_PER_INFORMATION15 =>
10204: hr_transaction_api.get_VARCHAR2_value
10205: (p_transaction_step_id => p_transaction_step_id
10206: ,p_name => 'P_PER_INFORMATION15')
10207: --
10208: ,P_PER_INFORMATION16 =>

Line 10209: hr_transaction_api.get_VARCHAR2_value

10205: (p_transaction_step_id => p_transaction_step_id
10206: ,p_name => 'P_PER_INFORMATION15')
10207: --
10208: ,P_PER_INFORMATION16 =>
10209: hr_transaction_api.get_VARCHAR2_value
10210: (p_transaction_step_id => p_transaction_step_id
10211: ,p_name => 'P_PER_INFORMATION16')
10212: --
10213: ,P_PER_INFORMATION17 =>

Line 10214: hr_transaction_api.get_VARCHAR2_value

10210: (p_transaction_step_id => p_transaction_step_id
10211: ,p_name => 'P_PER_INFORMATION16')
10212: --
10213: ,P_PER_INFORMATION17 =>
10214: hr_transaction_api.get_VARCHAR2_value
10215: (p_transaction_step_id => p_transaction_step_id
10216: ,p_name => 'P_PER_INFORMATION17')
10217: --
10218: ,P_PER_INFORMATION18 =>

Line 10219: hr_transaction_api.get_VARCHAR2_value

10215: (p_transaction_step_id => p_transaction_step_id
10216: ,p_name => 'P_PER_INFORMATION17')
10217: --
10218: ,P_PER_INFORMATION18 =>
10219: hr_transaction_api.get_VARCHAR2_value
10220: (p_transaction_step_id => p_transaction_step_id
10221: ,p_name => 'P_PER_INFORMATION18')
10222: --
10223: ,P_PER_INFORMATION19 =>

Line 10224: hr_transaction_api.get_VARCHAR2_value

10220: (p_transaction_step_id => p_transaction_step_id
10221: ,p_name => 'P_PER_INFORMATION18')
10222: --
10223: ,P_PER_INFORMATION19 =>
10224: hr_transaction_api.get_VARCHAR2_value
10225: (p_transaction_step_id => p_transaction_step_id
10226: ,p_name => 'P_PER_INFORMATION19')
10227: --
10228: ,P_PER_INFORMATION20 =>

Line 10229: hr_transaction_api.get_VARCHAR2_value

10225: (p_transaction_step_id => p_transaction_step_id
10226: ,p_name => 'P_PER_INFORMATION19')
10227: --
10228: ,P_PER_INFORMATION20 =>
10229: hr_transaction_api.get_VARCHAR2_value
10230: (p_transaction_step_id => p_transaction_step_id
10231: ,p_name => 'P_PER_INFORMATION20')
10232: --
10233: ,P_PER_INFORMATION21 =>

Line 10234: hr_transaction_api.get_VARCHAR2_value

10230: (p_transaction_step_id => p_transaction_step_id
10231: ,p_name => 'P_PER_INFORMATION20')
10232: --
10233: ,P_PER_INFORMATION21 =>
10234: hr_transaction_api.get_VARCHAR2_value
10235: (p_transaction_step_id => p_transaction_step_id
10236: ,p_name => 'P_PER_INFORMATION21')
10237: --
10238: ,P_PER_INFORMATION22 =>

Line 10239: hr_transaction_api.get_VARCHAR2_value

10235: (p_transaction_step_id => p_transaction_step_id
10236: ,p_name => 'P_PER_INFORMATION21')
10237: --
10238: ,P_PER_INFORMATION22 =>
10239: hr_transaction_api.get_VARCHAR2_value
10240: (p_transaction_step_id => p_transaction_step_id
10241: ,p_name => 'P_PER_INFORMATION22')
10242: --
10243: ,P_PER_INFORMATION23 =>

Line 10244: hr_transaction_api.get_VARCHAR2_value

10240: (p_transaction_step_id => p_transaction_step_id
10241: ,p_name => 'P_PER_INFORMATION22')
10242: --
10243: ,P_PER_INFORMATION23 =>
10244: hr_transaction_api.get_VARCHAR2_value
10245: (p_transaction_step_id => p_transaction_step_id
10246: ,p_name => 'P_PER_INFORMATION23')
10247: --
10248: ,P_PER_INFORMATION24 =>

Line 10249: hr_transaction_api.get_VARCHAR2_value

10245: (p_transaction_step_id => p_transaction_step_id
10246: ,p_name => 'P_PER_INFORMATION23')
10247: --
10248: ,P_PER_INFORMATION24 =>
10249: hr_transaction_api.get_VARCHAR2_value
10250: (p_transaction_step_id => p_transaction_step_id
10251: ,p_name => 'P_PER_INFORMATION24')
10252: --
10253: ,P_PER_INFORMATION25 =>

Line 10254: hr_transaction_api.get_VARCHAR2_value

10250: (p_transaction_step_id => p_transaction_step_id
10251: ,p_name => 'P_PER_INFORMATION24')
10252: --
10253: ,P_PER_INFORMATION25 =>
10254: hr_transaction_api.get_VARCHAR2_value
10255: (p_transaction_step_id => p_transaction_step_id
10256: ,p_name => 'P_PER_INFORMATION25')
10257: --
10258: ,P_PER_INFORMATION26 =>

Line 10259: hr_transaction_api.get_VARCHAR2_value

10255: (p_transaction_step_id => p_transaction_step_id
10256: ,p_name => 'P_PER_INFORMATION25')
10257: --
10258: ,P_PER_INFORMATION26 =>
10259: hr_transaction_api.get_VARCHAR2_value
10260: (p_transaction_step_id => p_transaction_step_id
10261: ,p_name => 'P_PER_INFORMATION26')
10262: --
10263: ,P_PER_INFORMATION27 =>

Line 10264: hr_transaction_api.get_VARCHAR2_value

10260: (p_transaction_step_id => p_transaction_step_id
10261: ,p_name => 'P_PER_INFORMATION26')
10262: --
10263: ,P_PER_INFORMATION27 =>
10264: hr_transaction_api.get_VARCHAR2_value
10265: (p_transaction_step_id => p_transaction_step_id
10266: ,p_name => 'P_PER_INFORMATION27')
10267: --
10268: ,P_PER_INFORMATION28 =>

Line 10269: hr_transaction_api.get_VARCHAR2_value

10265: (p_transaction_step_id => p_transaction_step_id
10266: ,p_name => 'P_PER_INFORMATION27')
10267: --
10268: ,P_PER_INFORMATION28 =>
10269: hr_transaction_api.get_VARCHAR2_value
10270: (p_transaction_step_id => p_transaction_step_id
10271: ,p_name => 'P_PER_INFORMATION28')
10272: --
10273: ,P_PER_INFORMATION29 =>

Line 10274: hr_transaction_api.get_VARCHAR2_value

10270: (p_transaction_step_id => p_transaction_step_id
10271: ,p_name => 'P_PER_INFORMATION28')
10272: --
10273: ,P_PER_INFORMATION29 =>
10274: hr_transaction_api.get_VARCHAR2_value
10275: (p_transaction_step_id => p_transaction_step_id
10276: ,p_name => 'P_PER_INFORMATION29')
10277: --
10278: ,P_PER_INFORMATION30 =>

Line 10279: hr_transaction_api.get_VARCHAR2_value

10275: (p_transaction_step_id => p_transaction_step_id
10276: ,p_name => 'P_PER_INFORMATION29')
10277: --
10278: ,P_PER_INFORMATION30 =>
10279: hr_transaction_api.get_VARCHAR2_value
10280: (p_transaction_step_id => p_transaction_step_id
10281: ,p_name => 'P_PER_INFORMATION30')
10282: --
10283: ,P_CORRESPONDENCE_LANGUAGE =>

Line 10284: hr_transaction_api.get_VARCHAR2_value

10280: (p_transaction_step_id => p_transaction_step_id
10281: ,p_name => 'P_PER_INFORMATION30')
10282: --
10283: ,P_CORRESPONDENCE_LANGUAGE =>
10284: hr_transaction_api.get_VARCHAR2_value
10285: (p_transaction_step_id => p_transaction_step_id
10286: ,p_name => 'P_CORRESPONDENCE_LANGUAGE')
10287: --
10288: ,P_HONORS =>

Line 10289: hr_transaction_api.get_VARCHAR2_value

10285: (p_transaction_step_id => p_transaction_step_id
10286: ,p_name => 'P_CORRESPONDENCE_LANGUAGE')
10287: --
10288: ,P_HONORS =>
10289: hr_transaction_api.get_VARCHAR2_value
10290: (p_transaction_step_id => p_transaction_step_id
10291: ,p_name => 'P_HONORS')
10292: --
10293: ,P_PRE_NAME_ADJUNCT =>

Line 10294: hr_transaction_api.get_VARCHAR2_value

10290: (p_transaction_step_id => p_transaction_step_id
10291: ,p_name => 'P_HONORS')
10292: --
10293: ,P_PRE_NAME_ADJUNCT =>
10294: hr_transaction_api.get_VARCHAR2_value
10295: (p_transaction_step_id => p_transaction_step_id
10296: ,p_name => 'P_PRE_NAME_ADJUNCT')
10297: --
10298: ,P_SUFFIX =>

Line 10299: hr_transaction_api.get_VARCHAR2_value

10295: (p_transaction_step_id => p_transaction_step_id
10296: ,p_name => 'P_PRE_NAME_ADJUNCT')
10297: --
10298: ,P_SUFFIX =>
10299: hr_transaction_api.get_VARCHAR2_value
10300: (p_transaction_step_id => p_transaction_step_id
10301: ,p_name => 'P_SUFFIX')
10302: --
10303: ,P_CREATE_MIRROR_FLAG => l_CREATE_MIRROR_FLAG

Line 10305: hr_transaction_api.get_VARCHAR2_value

10301: ,p_name => 'P_SUFFIX')
10302: --
10303: ,P_CREATE_MIRROR_FLAG => l_CREATE_MIRROR_FLAG
10304: /* Bug 1919795
10305: hr_transaction_api.get_VARCHAR2_value
10306: (p_transaction_step_id => p_transaction_step_id
10307: ,p_name => 'P_CREATE_MIRROR_FLAG')
10308: */
10309: --

Line 10312: hr_transaction_api.get_VARCHAR2_value

10308: */
10309: --
10310: ,P_MIRROR_TYPE => l_MIRROR_TYPE
10311: /* Bug 1919795
10312: hr_transaction_api.get_VARCHAR2_value
10313: (p_transaction_step_id => p_transaction_step_id
10314: ,p_name => 'P_MIRROR_TYPE')
10315: */
10316: --

Line 10318: hr_transaction_api.get_VARCHAR2_value

10314: ,p_name => 'P_MIRROR_TYPE')
10315: */
10316: --
10317: ,P_MIRROR_CONT_ATTRIBUTE_CAT =>
10318: hr_transaction_api.get_VARCHAR2_value
10319: (p_transaction_step_id => p_transaction_step_id
10320: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
10321: --
10322: ,P_MIRROR_CONT_ATTRIBUTE1 =>

Line 10323: hr_transaction_api.get_VARCHAR2_value

10319: (p_transaction_step_id => p_transaction_step_id
10320: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
10321: --
10322: ,P_MIRROR_CONT_ATTRIBUTE1 =>
10323: hr_transaction_api.get_VARCHAR2_value
10324: (p_transaction_step_id => p_transaction_step_id
10325: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
10326: --
10327: ,P_MIRROR_CONT_ATTRIBUTE2 =>

Line 10328: hr_transaction_api.get_VARCHAR2_value

10324: (p_transaction_step_id => p_transaction_step_id
10325: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
10326: --
10327: ,P_MIRROR_CONT_ATTRIBUTE2 =>
10328: hr_transaction_api.get_VARCHAR2_value
10329: (p_transaction_step_id => p_transaction_step_id
10330: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
10331: --
10332: ,P_MIRROR_CONT_ATTRIBUTE3 =>

Line 10333: hr_transaction_api.get_VARCHAR2_value

10329: (p_transaction_step_id => p_transaction_step_id
10330: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
10331: --
10332: ,P_MIRROR_CONT_ATTRIBUTE3 =>
10333: hr_transaction_api.get_VARCHAR2_value
10334: (p_transaction_step_id => p_transaction_step_id
10335: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
10336: --
10337: ,P_MIRROR_CONT_ATTRIBUTE4 =>

Line 10338: hr_transaction_api.get_VARCHAR2_value

10334: (p_transaction_step_id => p_transaction_step_id
10335: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
10336: --
10337: ,P_MIRROR_CONT_ATTRIBUTE4 =>
10338: hr_transaction_api.get_VARCHAR2_value
10339: (p_transaction_step_id => p_transaction_step_id
10340: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
10341: --
10342: ,P_MIRROR_CONT_ATTRIBUTE5 =>

Line 10343: hr_transaction_api.get_VARCHAR2_value

10339: (p_transaction_step_id => p_transaction_step_id
10340: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
10341: --
10342: ,P_MIRROR_CONT_ATTRIBUTE5 =>
10343: hr_transaction_api.get_VARCHAR2_value
10344: (p_transaction_step_id => p_transaction_step_id
10345: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
10346: --
10347: ,P_MIRROR_CONT_ATTRIBUTE6 =>

Line 10348: hr_transaction_api.get_VARCHAR2_value

10344: (p_transaction_step_id => p_transaction_step_id
10345: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
10346: --
10347: ,P_MIRROR_CONT_ATTRIBUTE6 =>
10348: hr_transaction_api.get_VARCHAR2_value
10349: (p_transaction_step_id => p_transaction_step_id
10350: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
10351: --
10352: ,P_MIRROR_CONT_ATTRIBUTE7 =>

Line 10353: hr_transaction_api.get_VARCHAR2_value

10349: (p_transaction_step_id => p_transaction_step_id
10350: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
10351: --
10352: ,P_MIRROR_CONT_ATTRIBUTE7 =>
10353: hr_transaction_api.get_VARCHAR2_value
10354: (p_transaction_step_id => p_transaction_step_id
10355: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
10356: --
10357: ,P_MIRROR_CONT_ATTRIBUTE8 =>

Line 10358: hr_transaction_api.get_VARCHAR2_value

10354: (p_transaction_step_id => p_transaction_step_id
10355: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
10356: --
10357: ,P_MIRROR_CONT_ATTRIBUTE8 =>
10358: hr_transaction_api.get_VARCHAR2_value
10359: (p_transaction_step_id => p_transaction_step_id
10360: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
10361: --
10362: ,P_MIRROR_CONT_ATTRIBUTE9 =>

Line 10363: hr_transaction_api.get_VARCHAR2_value

10359: (p_transaction_step_id => p_transaction_step_id
10360: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
10361: --
10362: ,P_MIRROR_CONT_ATTRIBUTE9 =>
10363: hr_transaction_api.get_VARCHAR2_value
10364: (p_transaction_step_id => p_transaction_step_id
10365: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
10366: --
10367: ,P_MIRROR_CONT_ATTRIBUTE10 =>

Line 10368: hr_transaction_api.get_VARCHAR2_value

10364: (p_transaction_step_id => p_transaction_step_id
10365: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
10366: --
10367: ,P_MIRROR_CONT_ATTRIBUTE10 =>
10368: hr_transaction_api.get_VARCHAR2_value
10369: (p_transaction_step_id => p_transaction_step_id
10370: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
10371: --
10372: ,P_MIRROR_CONT_ATTRIBUTE11 =>

Line 10373: hr_transaction_api.get_VARCHAR2_value

10369: (p_transaction_step_id => p_transaction_step_id
10370: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
10371: --
10372: ,P_MIRROR_CONT_ATTRIBUTE11 =>
10373: hr_transaction_api.get_VARCHAR2_value
10374: (p_transaction_step_id => p_transaction_step_id
10375: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
10376: --
10377: ,P_MIRROR_CONT_ATTRIBUTE12 =>

Line 10378: hr_transaction_api.get_VARCHAR2_value

10374: (p_transaction_step_id => p_transaction_step_id
10375: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
10376: --
10377: ,P_MIRROR_CONT_ATTRIBUTE12 =>
10378: hr_transaction_api.get_VARCHAR2_value
10379: (p_transaction_step_id => p_transaction_step_id
10380: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
10381: --
10382: ,P_MIRROR_CONT_ATTRIBUTE13 =>

Line 10383: hr_transaction_api.get_VARCHAR2_value

10379: (p_transaction_step_id => p_transaction_step_id
10380: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
10381: --
10382: ,P_MIRROR_CONT_ATTRIBUTE13 =>
10383: hr_transaction_api.get_VARCHAR2_value
10384: (p_transaction_step_id => p_transaction_step_id
10385: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
10386: --
10387: ,P_MIRROR_CONT_ATTRIBUTE14 =>

Line 10388: hr_transaction_api.get_VARCHAR2_value

10384: (p_transaction_step_id => p_transaction_step_id
10385: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
10386: --
10387: ,P_MIRROR_CONT_ATTRIBUTE14 =>
10388: hr_transaction_api.get_VARCHAR2_value
10389: (p_transaction_step_id => p_transaction_step_id
10390: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
10391: --
10392: ,P_MIRROR_CONT_ATTRIBUTE15 =>

Line 10393: hr_transaction_api.get_VARCHAR2_value

10389: (p_transaction_step_id => p_transaction_step_id
10390: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
10391: --
10392: ,P_MIRROR_CONT_ATTRIBUTE15 =>
10393: hr_transaction_api.get_VARCHAR2_value
10394: (p_transaction_step_id => p_transaction_step_id
10395: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
10396: --
10397: ,P_MIRROR_CONT_ATTRIBUTE16 =>

Line 10398: hr_transaction_api.get_VARCHAR2_value

10394: (p_transaction_step_id => p_transaction_step_id
10395: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
10396: --
10397: ,P_MIRROR_CONT_ATTRIBUTE16 =>
10398: hr_transaction_api.get_VARCHAR2_value
10399: (p_transaction_step_id => p_transaction_step_id
10400: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
10401: --
10402: ,P_MIRROR_CONT_ATTRIBUTE17 =>

Line 10403: hr_transaction_api.get_VARCHAR2_value

10399: (p_transaction_step_id => p_transaction_step_id
10400: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
10401: --
10402: ,P_MIRROR_CONT_ATTRIBUTE17 =>
10403: hr_transaction_api.get_VARCHAR2_value
10404: (p_transaction_step_id => p_transaction_step_id
10405: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
10406: --
10407: ,P_MIRROR_CONT_ATTRIBUTE18 =>

Line 10408: hr_transaction_api.get_VARCHAR2_value

10404: (p_transaction_step_id => p_transaction_step_id
10405: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
10406: --
10407: ,P_MIRROR_CONT_ATTRIBUTE18 =>
10408: hr_transaction_api.get_VARCHAR2_value
10409: (p_transaction_step_id => p_transaction_step_id
10410: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
10411: --
10412: ,P_MIRROR_CONT_ATTRIBUTE19 =>

Line 10413: hr_transaction_api.get_VARCHAR2_value

10409: (p_transaction_step_id => p_transaction_step_id
10410: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
10411: --
10412: ,P_MIRROR_CONT_ATTRIBUTE19 =>
10413: hr_transaction_api.get_VARCHAR2_value
10414: (p_transaction_step_id => p_transaction_step_id
10415: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
10416: --
10417: ,P_MIRROR_CONT_ATTRIBUTE20 =>

Line 10418: hr_transaction_api.get_VARCHAR2_value

10414: (p_transaction_step_id => p_transaction_step_id
10415: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
10416: --
10417: ,P_MIRROR_CONT_ATTRIBUTE20 =>
10418: hr_transaction_api.get_VARCHAR2_value
10419: (p_transaction_step_id => p_transaction_step_id
10420: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE20')
10421: --
10422: ,P_CONTACT_RELATIONSHIP_ID => L_CONTACT_RELATIONSHIP_ID

Line 10443: hr_transaction_api.get_VARCHAR2_value

10439: --
10440: ,P_ORIG_HIRE_WARNING => L_CON_ORIG_HIRE_WARNING
10441: --
10442: ,P_CONT_INFORMATION_CATEGORY =>
10443: hr_transaction_api.get_VARCHAR2_value
10444: (p_transaction_step_id => p_transaction_step_id
10445: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
10446: --
10447: ,P_CONT_INFORMATION1 =>

Line 10448: hr_transaction_api.get_VARCHAR2_value

10444: (p_transaction_step_id => p_transaction_step_id
10445: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
10446: --
10447: ,P_CONT_INFORMATION1 =>
10448: hr_transaction_api.get_VARCHAR2_value
10449: (p_transaction_step_id => p_transaction_step_id
10450: ,p_name => 'P_CONT_INFORMATION1')
10451: --
10452: ,P_CONT_INFORMATION2 =>

Line 10453: hr_transaction_api.get_VARCHAR2_value

10449: (p_transaction_step_id => p_transaction_step_id
10450: ,p_name => 'P_CONT_INFORMATION1')
10451: --
10452: ,P_CONT_INFORMATION2 =>
10453: hr_transaction_api.get_VARCHAR2_value
10454: (p_transaction_step_id => p_transaction_step_id
10455: ,p_name => 'P_CONT_INFORMATION2')
10456: --
10457: ,P_CONT_INFORMATION3 =>

Line 10458: hr_transaction_api.get_VARCHAR2_value

10454: (p_transaction_step_id => p_transaction_step_id
10455: ,p_name => 'P_CONT_INFORMATION2')
10456: --
10457: ,P_CONT_INFORMATION3 =>
10458: hr_transaction_api.get_VARCHAR2_value
10459: (p_transaction_step_id => p_transaction_step_id
10460: ,p_name => 'P_CONT_INFORMATION3')
10461: --
10462: ,P_CONT_INFORMATION4 =>

Line 10463: hr_transaction_api.get_VARCHAR2_value

10459: (p_transaction_step_id => p_transaction_step_id
10460: ,p_name => 'P_CONT_INFORMATION3')
10461: --
10462: ,P_CONT_INFORMATION4 =>
10463: hr_transaction_api.get_VARCHAR2_value
10464: (p_transaction_step_id => p_transaction_step_id
10465: ,p_name => 'P_CONT_INFORMATION4')
10466: --
10467: ,P_CONT_INFORMATION5 =>

Line 10468: hr_transaction_api.get_VARCHAR2_value

10464: (p_transaction_step_id => p_transaction_step_id
10465: ,p_name => 'P_CONT_INFORMATION4')
10466: --
10467: ,P_CONT_INFORMATION5 =>
10468: hr_transaction_api.get_VARCHAR2_value
10469: (p_transaction_step_id => p_transaction_step_id
10470: ,p_name => 'P_CONT_INFORMATION5')
10471: --
10472: ,P_CONT_INFORMATION6 =>

Line 10473: hr_transaction_api.get_VARCHAR2_value

10469: (p_transaction_step_id => p_transaction_step_id
10470: ,p_name => 'P_CONT_INFORMATION5')
10471: --
10472: ,P_CONT_INFORMATION6 =>
10473: hr_transaction_api.get_VARCHAR2_value
10474: (p_transaction_step_id => p_transaction_step_id
10475: ,p_name => 'P_CONT_INFORMATION6')
10476: --
10477: ,P_CONT_INFORMATION7 =>

Line 10478: hr_transaction_api.get_VARCHAR2_value

10474: (p_transaction_step_id => p_transaction_step_id
10475: ,p_name => 'P_CONT_INFORMATION6')
10476: --
10477: ,P_CONT_INFORMATION7 =>
10478: hr_transaction_api.get_VARCHAR2_value
10479: (p_transaction_step_id => p_transaction_step_id
10480: ,p_name => 'P_CONT_INFORMATION7')
10481: --
10482: ,P_CONT_INFORMATION8 =>

Line 10483: hr_transaction_api.get_VARCHAR2_value

10479: (p_transaction_step_id => p_transaction_step_id
10480: ,p_name => 'P_CONT_INFORMATION7')
10481: --
10482: ,P_CONT_INFORMATION8 =>
10483: hr_transaction_api.get_VARCHAR2_value
10484: (p_transaction_step_id => p_transaction_step_id
10485: ,p_name => 'P_CONT_INFORMATION8')
10486: --
10487: ,P_CONT_INFORMATION9 =>

Line 10488: hr_transaction_api.get_VARCHAR2_value

10484: (p_transaction_step_id => p_transaction_step_id
10485: ,p_name => 'P_CONT_INFORMATION8')
10486: --
10487: ,P_CONT_INFORMATION9 =>
10488: hr_transaction_api.get_VARCHAR2_value
10489: (p_transaction_step_id => p_transaction_step_id
10490: ,p_name => 'P_CONT_INFORMATION9')
10491: --
10492: ,P_CONT_INFORMATION10 =>

Line 10493: hr_transaction_api.get_VARCHAR2_value

10489: (p_transaction_step_id => p_transaction_step_id
10490: ,p_name => 'P_CONT_INFORMATION9')
10491: --
10492: ,P_CONT_INFORMATION10 =>
10493: hr_transaction_api.get_VARCHAR2_value
10494: (p_transaction_step_id => p_transaction_step_id
10495: ,p_name => 'P_CONT_INFORMATION10')
10496: --
10497: ,P_CONT_INFORMATION11 =>

Line 10498: hr_transaction_api.get_VARCHAR2_value

10494: (p_transaction_step_id => p_transaction_step_id
10495: ,p_name => 'P_CONT_INFORMATION10')
10496: --
10497: ,P_CONT_INFORMATION11 =>
10498: hr_transaction_api.get_VARCHAR2_value
10499: (p_transaction_step_id => p_transaction_step_id
10500: ,p_name => 'P_CONT_INFORMATION11')
10501: --
10502: ,P_CONT_INFORMATION12 =>

Line 10503: hr_transaction_api.get_VARCHAR2_value

10499: (p_transaction_step_id => p_transaction_step_id
10500: ,p_name => 'P_CONT_INFORMATION11')
10501: --
10502: ,P_CONT_INFORMATION12 =>
10503: hr_transaction_api.get_VARCHAR2_value
10504: (p_transaction_step_id => p_transaction_step_id
10505: ,p_name => 'P_CONT_INFORMATION12')
10506: --
10507: ,P_CONT_INFORMATION13 =>

Line 10508: hr_transaction_api.get_VARCHAR2_value

10504: (p_transaction_step_id => p_transaction_step_id
10505: ,p_name => 'P_CONT_INFORMATION12')
10506: --
10507: ,P_CONT_INFORMATION13 =>
10508: hr_transaction_api.get_VARCHAR2_value
10509: (p_transaction_step_id => p_transaction_step_id
10510: ,p_name => 'P_CONT_INFORMATION13')
10511: --
10512: ,P_CONT_INFORMATION14 =>

Line 10513: hr_transaction_api.get_VARCHAR2_value

10509: (p_transaction_step_id => p_transaction_step_id
10510: ,p_name => 'P_CONT_INFORMATION13')
10511: --
10512: ,P_CONT_INFORMATION14 =>
10513: hr_transaction_api.get_VARCHAR2_value
10514: (p_transaction_step_id => p_transaction_step_id
10515: ,p_name => 'P_CONT_INFORMATION14')
10516: --
10517: ,P_CONT_INFORMATION15 =>

Line 10518: hr_transaction_api.get_VARCHAR2_value

10514: (p_transaction_step_id => p_transaction_step_id
10515: ,p_name => 'P_CONT_INFORMATION14')
10516: --
10517: ,P_CONT_INFORMATION15 =>
10518: hr_transaction_api.get_VARCHAR2_value
10519: (p_transaction_step_id => p_transaction_step_id
10520: ,p_name => 'P_CONT_INFORMATION15')
10521: --
10522: ,P_CONT_INFORMATION16 =>

Line 10523: hr_transaction_api.get_VARCHAR2_value

10519: (p_transaction_step_id => p_transaction_step_id
10520: ,p_name => 'P_CONT_INFORMATION15')
10521: --
10522: ,P_CONT_INFORMATION16 =>
10523: hr_transaction_api.get_VARCHAR2_value
10524: (p_transaction_step_id => p_transaction_step_id
10525: ,p_name => 'P_CONT_INFORMATION16')
10526: --
10527: ,P_CONT_INFORMATION17 =>

Line 10528: hr_transaction_api.get_VARCHAR2_value

10524: (p_transaction_step_id => p_transaction_step_id
10525: ,p_name => 'P_CONT_INFORMATION16')
10526: --
10527: ,P_CONT_INFORMATION17 =>
10528: hr_transaction_api.get_VARCHAR2_value
10529: (p_transaction_step_id => p_transaction_step_id
10530: ,p_name => 'P_CONT_INFORMATION17')
10531: --
10532: ,P_CONT_INFORMATION18 =>

Line 10533: hr_transaction_api.get_VARCHAR2_value

10529: (p_transaction_step_id => p_transaction_step_id
10530: ,p_name => 'P_CONT_INFORMATION17')
10531: --
10532: ,P_CONT_INFORMATION18 =>
10533: hr_transaction_api.get_VARCHAR2_value
10534: (p_transaction_step_id => p_transaction_step_id
10535: ,p_name => 'P_CONT_INFORMATION18')
10536: --
10537: ,P_CONT_INFORMATION19 =>

Line 10538: hr_transaction_api.get_VARCHAR2_value

10534: (p_transaction_step_id => p_transaction_step_id
10535: ,p_name => 'P_CONT_INFORMATION18')
10536: --
10537: ,P_CONT_INFORMATION19 =>
10538: hr_transaction_api.get_VARCHAR2_value
10539: (p_transaction_step_id => p_transaction_step_id
10540: ,p_name => 'P_CONT_INFORMATION19')
10541: --
10542: ,P_CONT_INFORMATION20 =>

Line 10543: hr_transaction_api.get_VARCHAR2_value

10539: (p_transaction_step_id => p_transaction_step_id
10540: ,p_name => 'P_CONT_INFORMATION19')
10541: --
10542: ,P_CONT_INFORMATION20 =>
10543: hr_transaction_api.get_VARCHAR2_value
10544: (p_transaction_step_id => p_transaction_step_id
10545: ,p_name => 'P_CONT_INFORMATION20')
10546: --
10547: ,P_MIRROR_CONT_INFORMATION_CAT =>

Line 10548: hr_transaction_api.get_VARCHAR2_value

10544: (p_transaction_step_id => p_transaction_step_id
10545: ,p_name => 'P_CONT_INFORMATION20')
10546: --
10547: ,P_MIRROR_CONT_INFORMATION_CAT =>
10548: hr_transaction_api.get_VARCHAR2_value
10549: (p_transaction_step_id => p_transaction_step_id
10550: ,p_name => 'P_MIRROR_CONT_INFORMATION_CAT')
10551: --
10552: ,P_MIRROR_CONT_INFORMATION1 =>

Line 10553: hr_transaction_api.get_VARCHAR2_value

10549: (p_transaction_step_id => p_transaction_step_id
10550: ,p_name => 'P_MIRROR_CONT_INFORMATION_CAT')
10551: --
10552: ,P_MIRROR_CONT_INFORMATION1 =>
10553: hr_transaction_api.get_VARCHAR2_value
10554: (p_transaction_step_id => p_transaction_step_id
10555: ,p_name => 'P_MIRROR_CONT_INFORMATION1')
10556: --
10557: ,P_MIRROR_CONT_INFORMATION2 =>

Line 10558: hr_transaction_api.get_VARCHAR2_value

10554: (p_transaction_step_id => p_transaction_step_id
10555: ,p_name => 'P_MIRROR_CONT_INFORMATION1')
10556: --
10557: ,P_MIRROR_CONT_INFORMATION2 =>
10558: hr_transaction_api.get_VARCHAR2_value
10559: (p_transaction_step_id => p_transaction_step_id
10560: ,p_name => 'P_MIRROR_CONT_INFORMATION2')
10561: --
10562: ,P_MIRROR_CONT_INFORMATION3 =>

Line 10563: hr_transaction_api.get_VARCHAR2_value

10559: (p_transaction_step_id => p_transaction_step_id
10560: ,p_name => 'P_MIRROR_CONT_INFORMATION2')
10561: --
10562: ,P_MIRROR_CONT_INFORMATION3 =>
10563: hr_transaction_api.get_VARCHAR2_value
10564: (p_transaction_step_id => p_transaction_step_id
10565: ,p_name => 'P_MIRROR_CONT_INFORMATION3')
10566: --
10567: ,P_MIRROR_CONT_INFORMATION4 =>

Line 10568: hr_transaction_api.get_VARCHAR2_value

10564: (p_transaction_step_id => p_transaction_step_id
10565: ,p_name => 'P_MIRROR_CONT_INFORMATION3')
10566: --
10567: ,P_MIRROR_CONT_INFORMATION4 =>
10568: hr_transaction_api.get_VARCHAR2_value
10569: (p_transaction_step_id => p_transaction_step_id
10570: ,p_name => 'P_MIRROR_CONT_INFORMATION4')
10571: --
10572: ,P_MIRROR_CONT_INFORMATION5 =>

Line 10573: hr_transaction_api.get_VARCHAR2_value

10569: (p_transaction_step_id => p_transaction_step_id
10570: ,p_name => 'P_MIRROR_CONT_INFORMATION4')
10571: --
10572: ,P_MIRROR_CONT_INFORMATION5 =>
10573: hr_transaction_api.get_VARCHAR2_value
10574: (p_transaction_step_id => p_transaction_step_id
10575: ,p_name => 'P_MIRROR_CONT_INFORMATION5')
10576: --
10577: ,P_MIRROR_CONT_INFORMATION6 =>

Line 10578: hr_transaction_api.get_VARCHAR2_value

10574: (p_transaction_step_id => p_transaction_step_id
10575: ,p_name => 'P_MIRROR_CONT_INFORMATION5')
10576: --
10577: ,P_MIRROR_CONT_INFORMATION6 =>
10578: hr_transaction_api.get_VARCHAR2_value
10579: (p_transaction_step_id => p_transaction_step_id
10580: ,p_name => 'P_MIRROR_CONT_INFORMATION6')
10581: --
10582: ,P_MIRROR_CONT_INFORMATION7 =>

Line 10583: hr_transaction_api.get_VARCHAR2_value

10579: (p_transaction_step_id => p_transaction_step_id
10580: ,p_name => 'P_MIRROR_CONT_INFORMATION6')
10581: --
10582: ,P_MIRROR_CONT_INFORMATION7 =>
10583: hr_transaction_api.get_VARCHAR2_value
10584: (p_transaction_step_id => p_transaction_step_id
10585: ,p_name => 'P_MIRROR_CONT_INFORMATION7')
10586: --
10587: ,P_MIRROR_CONT_INFORMATION8 =>

Line 10588: hr_transaction_api.get_VARCHAR2_value

10584: (p_transaction_step_id => p_transaction_step_id
10585: ,p_name => 'P_MIRROR_CONT_INFORMATION7')
10586: --
10587: ,P_MIRROR_CONT_INFORMATION8 =>
10588: hr_transaction_api.get_VARCHAR2_value
10589: (p_transaction_step_id => p_transaction_step_id
10590: ,p_name => 'P_MIRROR_CONT_INFORMATION8')
10591: --
10592: ,P_MIRROR_CONT_INFORMATION9 =>

Line 10593: hr_transaction_api.get_VARCHAR2_value

10589: (p_transaction_step_id => p_transaction_step_id
10590: ,p_name => 'P_MIRROR_CONT_INFORMATION8')
10591: --
10592: ,P_MIRROR_CONT_INFORMATION9 =>
10593: hr_transaction_api.get_VARCHAR2_value
10594: (p_transaction_step_id => p_transaction_step_id
10595: ,p_name => 'P_MIRROR_CONT_INFORMATION9')
10596: --
10597: ,P_MIRROR_CONT_INFORMATION10 =>

Line 10598: hr_transaction_api.get_VARCHAR2_value

10594: (p_transaction_step_id => p_transaction_step_id
10595: ,p_name => 'P_MIRROR_CONT_INFORMATION9')
10596: --
10597: ,P_MIRROR_CONT_INFORMATION10 =>
10598: hr_transaction_api.get_VARCHAR2_value
10599: (p_transaction_step_id => p_transaction_step_id
10600: ,p_name => 'P_MIRROR_CONT_INFORMATION10')
10601: --
10602: ,P_MIRROR_CONT_INFORMATION11 =>

Line 10603: hr_transaction_api.get_VARCHAR2_value

10599: (p_transaction_step_id => p_transaction_step_id
10600: ,p_name => 'P_MIRROR_CONT_INFORMATION10')
10601: --
10602: ,P_MIRROR_CONT_INFORMATION11 =>
10603: hr_transaction_api.get_VARCHAR2_value
10604: (p_transaction_step_id => p_transaction_step_id
10605: ,p_name => 'P_MIRROR_CONT_INFORMATION11')
10606: --
10607: ,P_MIRROR_CONT_INFORMATION12 =>

Line 10608: hr_transaction_api.get_VARCHAR2_value

10604: (p_transaction_step_id => p_transaction_step_id
10605: ,p_name => 'P_MIRROR_CONT_INFORMATION11')
10606: --
10607: ,P_MIRROR_CONT_INFORMATION12 =>
10608: hr_transaction_api.get_VARCHAR2_value
10609: (p_transaction_step_id => p_transaction_step_id
10610: ,p_name => 'P_MIRROR_CONT_INFORMATION12')
10611: --
10612: ,P_MIRROR_CONT_INFORMATION13 =>

Line 10613: hr_transaction_api.get_VARCHAR2_value

10609: (p_transaction_step_id => p_transaction_step_id
10610: ,p_name => 'P_MIRROR_CONT_INFORMATION12')
10611: --
10612: ,P_MIRROR_CONT_INFORMATION13 =>
10613: hr_transaction_api.get_VARCHAR2_value
10614: (p_transaction_step_id => p_transaction_step_id
10615: ,p_name => 'P_MIRROR_CONT_INFORMATION13')
10616: --
10617: ,P_MIRROR_CONT_INFORMATION14 =>

Line 10618: hr_transaction_api.get_VARCHAR2_value

10614: (p_transaction_step_id => p_transaction_step_id
10615: ,p_name => 'P_MIRROR_CONT_INFORMATION13')
10616: --
10617: ,P_MIRROR_CONT_INFORMATION14 =>
10618: hr_transaction_api.get_VARCHAR2_value
10619: (p_transaction_step_id => p_transaction_step_id
10620: ,p_name => 'P_MIRROR_CONT_INFORMATION14')
10621: --
10622: ,P_MIRROR_CONT_INFORMATION15 =>

Line 10623: hr_transaction_api.get_VARCHAR2_value

10619: (p_transaction_step_id => p_transaction_step_id
10620: ,p_name => 'P_MIRROR_CONT_INFORMATION14')
10621: --
10622: ,P_MIRROR_CONT_INFORMATION15 =>
10623: hr_transaction_api.get_VARCHAR2_value
10624: (p_transaction_step_id => p_transaction_step_id
10625: ,p_name => 'P_MIRROR_CONT_INFORMATION15')
10626: --
10627: ,P_MIRROR_CONT_INFORMATION16 =>

Line 10628: hr_transaction_api.get_VARCHAR2_value

10624: (p_transaction_step_id => p_transaction_step_id
10625: ,p_name => 'P_MIRROR_CONT_INFORMATION15')
10626: --
10627: ,P_MIRROR_CONT_INFORMATION16 =>
10628: hr_transaction_api.get_VARCHAR2_value
10629: (p_transaction_step_id => p_transaction_step_id
10630: ,p_name => 'P_MIRROR_CONT_INFORMATION16')
10631: --
10632: ,P_MIRROR_CONT_INFORMATION17 =>

Line 10633: hr_transaction_api.get_VARCHAR2_value

10629: (p_transaction_step_id => p_transaction_step_id
10630: ,p_name => 'P_MIRROR_CONT_INFORMATION16')
10631: --
10632: ,P_MIRROR_CONT_INFORMATION17 =>
10633: hr_transaction_api.get_VARCHAR2_value
10634: (p_transaction_step_id => p_transaction_step_id
10635: ,p_name => 'P_MIRROR_CONT_INFORMATION17')
10636: --
10637: ,P_MIRROR_CONT_INFORMATION18 =>

Line 10638: hr_transaction_api.get_VARCHAR2_value

10634: (p_transaction_step_id => p_transaction_step_id
10635: ,p_name => 'P_MIRROR_CONT_INFORMATION17')
10636: --
10637: ,P_MIRROR_CONT_INFORMATION18 =>
10638: hr_transaction_api.get_VARCHAR2_value
10639: (p_transaction_step_id => p_transaction_step_id
10640: ,p_name => 'P_MIRROR_CONT_INFORMATION18')
10641: --
10642: ,P_MIRROR_CONT_INFORMATION19 =>

Line 10643: hr_transaction_api.get_VARCHAR2_value

10639: (p_transaction_step_id => p_transaction_step_id
10640: ,p_name => 'P_MIRROR_CONT_INFORMATION18')
10641: --
10642: ,P_MIRROR_CONT_INFORMATION19 =>
10643: hr_transaction_api.get_VARCHAR2_value
10644: (p_transaction_step_id => p_transaction_step_id
10645: ,p_name => 'P_MIRROR_CONT_INFORMATION19')
10646: --
10647: ,P_MIRROR_CONT_INFORMATION20 =>

Line 10648: hr_transaction_api.get_VARCHAR2_value

10644: (p_transaction_step_id => p_transaction_step_id
10645: ,p_name => 'P_MIRROR_CONT_INFORMATION19')
10646: --
10647: ,P_MIRROR_CONT_INFORMATION20 =>
10648: hr_transaction_api.get_VARCHAR2_value
10649: (p_transaction_step_id => p_transaction_step_id
10650: ,p_name => 'P_MIRROR_CONT_INFORMATION20')
10651: );
10652: --

Line 10692: hr_transaction_api.get_date_value

10688: ,p_employee_number => l_employee_number
10689: -- Bug 2652114
10690: /*
10691: ,p_adjusted_svc_date =>
10692: hr_transaction_api.get_date_value
10693: (p_transaction_step_id => p_transaction_step_id
10694: ,p_name =>upper('p_adjusted_svc_date'))
10695: */
10696: --

Line 10698: hr_transaction_api.get_varchar2_value

10694: ,p_name =>upper('p_adjusted_svc_date'))
10695: */
10696: --
10697: ,p_applicant_number =>
10698: hr_transaction_api.get_varchar2_value
10699: (p_transaction_step_id => p_transaction_step_id
10700: ,p_name =>upper('p_applicant_number'))
10701: --
10702: ,p_background_check_status =>

Line 10703: hr_transaction_api.get_varchar2_value

10699: (p_transaction_step_id => p_transaction_step_id
10700: ,p_name =>upper('p_applicant_number'))
10701: --
10702: ,p_background_check_status =>
10703: hr_transaction_api.get_varchar2_value
10704: (p_transaction_step_id => p_transaction_step_id
10705: ,p_name =>upper('p_background_check_status'))
10706: --
10707: ,p_background_date_check =>

Line 10708: hr_transaction_api.get_date_value

10704: (p_transaction_step_id => p_transaction_step_id
10705: ,p_name =>upper('p_background_check_status'))
10706: --
10707: ,p_background_date_check =>
10708: hr_transaction_api.get_date_value
10709: (p_transaction_step_id => p_transaction_step_id
10710: ,p_name =>upper('p_background_date_check'))
10711: --
10712: ,p_benefit_group_id =>

Line 10713: hr_transaction_api.get_number_value

10709: (p_transaction_step_id => p_transaction_step_id
10710: ,p_name =>upper('p_background_date_check'))
10711: --
10712: ,p_benefit_group_id =>
10713: hr_transaction_api.get_number_value
10714: (p_transaction_step_id => p_transaction_step_id
10715: ,p_name =>upper('p_benefit_group_id'))
10716: --
10717: ,p_blood_type =>

Line 10718: hr_transaction_api.get_varchar2_value

10714: (p_transaction_step_id => p_transaction_step_id
10715: ,p_name =>upper('p_benefit_group_id'))
10716: --
10717: ,p_blood_type =>
10718: hr_transaction_api.get_varchar2_value
10719: (p_transaction_step_id => p_transaction_step_id
10720: ,p_name =>upper('p_blood_type'))
10721: --
10722: ,p_coord_ben_med_pln_no =>

Line 10723: hr_transaction_api.get_varchar2_value

10719: (p_transaction_step_id => p_transaction_step_id
10720: ,p_name =>upper('p_blood_type'))
10721: --
10722: ,p_coord_ben_med_pln_no =>
10723: hr_transaction_api.get_varchar2_value
10724: (p_transaction_step_id => p_transaction_step_id
10725: ,p_name =>upper('p_coord_ben_med_pln_no'))
10726: --
10727: ,p_coord_ben_no_cvg_flag =>

Line 10728: hr_transaction_api.get_varchar2_value

10724: (p_transaction_step_id => p_transaction_step_id
10725: ,p_name =>upper('p_coord_ben_med_pln_no'))
10726: --
10727: ,p_coord_ben_no_cvg_flag =>
10728: hr_transaction_api.get_varchar2_value
10729: (p_transaction_step_id => p_transaction_step_id
10730: ,p_name =>upper('p_coord_ben_no_cvg_flag'))
10731: --
10732: ,p_country_of_birth =>

Line 10733: hr_transaction_api.get_varchar2_value

10729: (p_transaction_step_id => p_transaction_step_id
10730: ,p_name =>upper('p_coord_ben_no_cvg_flag'))
10731: --
10732: ,p_country_of_birth =>
10733: hr_transaction_api.get_varchar2_value
10734: (p_transaction_step_id => p_transaction_step_id
10735: ,p_name =>upper('p_country_of_birth'))
10736: --
10737: ,p_date_employee_data_verified =>

Line 10738: hr_transaction_api.get_date_value

10734: (p_transaction_step_id => p_transaction_step_id
10735: ,p_name =>upper('p_country_of_birth'))
10736: --
10737: ,p_date_employee_data_verified =>
10738: hr_transaction_api.get_date_value
10739: (p_transaction_step_id => p_transaction_step_id
10740: ,p_name =>upper('p_date_employee_data_verified'))
10741: --
10742: ,p_date_of_death =>

Line 10743: hr_transaction_api.get_date_value

10739: (p_transaction_step_id => p_transaction_step_id
10740: ,p_name =>upper('p_date_employee_data_verified'))
10741: --
10742: ,p_date_of_death =>
10743: hr_transaction_api.get_date_value
10744: (p_transaction_step_id => p_transaction_step_id
10745: ,p_name =>upper('p_date_of_death'))
10746: --
10747: ,p_dpdnt_adoption_date =>

Line 10748: hr_transaction_api.get_date_value

10744: (p_transaction_step_id => p_transaction_step_id
10745: ,p_name =>upper('p_date_of_death'))
10746: --
10747: ,p_dpdnt_adoption_date =>
10748: hr_transaction_api.get_date_value
10749: (p_transaction_step_id => p_transaction_step_id
10750: ,p_name =>upper('p_dpdnt_adoption_date'))
10751: --
10752: ,p_dpdnt_vlntry_svce_flag =>

Line 10753: hr_transaction_api.get_varchar2_value

10749: (p_transaction_step_id => p_transaction_step_id
10750: ,p_name =>upper('p_dpdnt_adoption_date'))
10751: --
10752: ,p_dpdnt_vlntry_svce_flag =>
10753: hr_transaction_api.get_varchar2_value
10754: (p_transaction_step_id => p_transaction_step_id
10755: ,p_name =>upper('p_dpdnt_vlntry_svce_flag'))
10756: --
10757: ,p_expense_check_send_to_addres =>

Line 10758: hr_transaction_api.get_varchar2_value

10754: (p_transaction_step_id => p_transaction_step_id
10755: ,p_name =>upper('p_dpdnt_vlntry_svce_flag'))
10756: --
10757: ,p_expense_check_send_to_addres =>
10758: hr_transaction_api.get_varchar2_value
10759: (p_transaction_step_id => p_transaction_step_id
10760: ,p_name =>upper('p_expense_check_send_to_addres'))
10761: --
10762: ,p_fast_path_employee =>

Line 10763: hr_transaction_api.get_varchar2_value

10759: (p_transaction_step_id => p_transaction_step_id
10760: ,p_name =>upper('p_expense_check_send_to_addres'))
10761: --
10762: ,p_fast_path_employee =>
10763: hr_transaction_api.get_varchar2_value
10764: (p_transaction_step_id => p_transaction_step_id
10765: ,p_name =>upper('p_fast_path_employee'))
10766: --
10767: ,p_fte_capacity =>

Line 10768: hr_transaction_api.get_number_value

10764: (p_transaction_step_id => p_transaction_step_id
10765: ,p_name =>upper('p_fast_path_employee'))
10766: --
10767: ,p_fte_capacity =>
10768: hr_transaction_api.get_number_value
10769: (p_transaction_step_id => p_transaction_step_id
10770: ,p_name =>upper('p_fte_capacity'))
10771: --
10772: ,p_global_person_id =>

Line 10773: hr_transaction_api.get_varchar2_value

10769: (p_transaction_step_id => p_transaction_step_id
10770: ,p_name =>upper('p_fte_capacity'))
10771: --
10772: ,p_global_person_id =>
10773: hr_transaction_api.get_varchar2_value
10774: (p_transaction_step_id => p_transaction_step_id
10775: ,p_name =>upper('p_global_person_id'))
10776: --
10777: ,p_hold_applicant_date_until =>

Line 10778: hr_transaction_api.get_date_value

10774: (p_transaction_step_id => p_transaction_step_id
10775: ,p_name =>upper('p_global_person_id'))
10776: --
10777: ,p_hold_applicant_date_until =>
10778: hr_transaction_api.get_date_value
10779: (p_transaction_step_id => p_transaction_step_id
10780: ,p_name =>upper('p_hold_applicant_date_until'))
10781: --
10782: ,p_internal_location =>

Line 10783: hr_transaction_api.get_varchar2_value

10779: (p_transaction_step_id => p_transaction_step_id
10780: ,p_name =>upper('p_hold_applicant_date_until'))
10781: --
10782: ,p_internal_location =>
10783: hr_transaction_api.get_varchar2_value
10784: (p_transaction_step_id => p_transaction_step_id
10785: ,p_name =>upper('p_internal_location'))
10786: --
10787: ,p_last_medical_test_by =>

Line 10788: hr_transaction_api.get_varchar2_value

10784: (p_transaction_step_id => p_transaction_step_id
10785: ,p_name =>upper('p_internal_location'))
10786: --
10787: ,p_last_medical_test_by =>
10788: hr_transaction_api.get_varchar2_value
10789: (p_transaction_step_id => p_transaction_step_id
10790: ,p_name =>upper('p_last_medical_test_by'))
10791: --
10792: ,p_last_medical_test_date =>

Line 10793: hr_transaction_api.get_date_value

10789: (p_transaction_step_id => p_transaction_step_id
10790: ,p_name =>upper('p_last_medical_test_by'))
10791: --
10792: ,p_last_medical_test_date =>
10793: hr_transaction_api.get_date_value
10794: (p_transaction_step_id => p_transaction_step_id
10795: ,p_name =>upper('p_last_medical_test_date'))
10796: --
10797: ,p_mailstop =>

Line 10798: hr_transaction_api.get_varchar2_value

10794: (p_transaction_step_id => p_transaction_step_id
10795: ,p_name =>upper('p_last_medical_test_date'))
10796: --
10797: ,p_mailstop =>
10798: hr_transaction_api.get_varchar2_value
10799: (p_transaction_step_id => p_transaction_step_id
10800: ,p_name =>upper('p_mailstop'))
10801: --
10802: ,p_office_number =>

Line 10803: hr_transaction_api.get_varchar2_value

10799: (p_transaction_step_id => p_transaction_step_id
10800: ,p_name =>upper('p_mailstop'))
10801: --
10802: ,p_office_number =>
10803: hr_transaction_api.get_varchar2_value
10804: (p_transaction_step_id => p_transaction_step_id
10805: ,p_name =>upper('p_office_number'))
10806: --
10807: ,p_on_military_service =>

Line 10808: hr_transaction_api.get_varchar2_value

10804: (p_transaction_step_id => p_transaction_step_id
10805: ,p_name =>upper('p_office_number'))
10806: --
10807: ,p_on_military_service =>
10808: hr_transaction_api.get_varchar2_value
10809: (p_transaction_step_id => p_transaction_step_id
10810: ,p_name =>upper('p_on_military_service'))
10811: --
10812: -- Bug 2652114

Line 10815: hr_transaction_api.get_date_value

10811: --
10812: -- Bug 2652114
10813: /*
10814: ,p_original_date_of_hire =>
10815: hr_transaction_api.get_date_value
10816: (p_transaction_step_id => p_transaction_step_id
10817: ,p_name =>upper('p_original_date_of_hire'))
10818: */
10819: --

Line 10821: hr_transaction_api.get_date_value

10817: ,p_name =>upper('p_original_date_of_hire'))
10818: */
10819: --
10820: ,p_projected_start_date =>
10821: hr_transaction_api.get_date_value
10822: (p_transaction_step_id => p_transaction_step_id
10823: ,p_name =>upper('p_projected_start_date'))
10824: --
10825: ,p_receipt_of_death_cert_date =>

Line 10826: hr_transaction_api.get_date_value

10822: (p_transaction_step_id => p_transaction_step_id
10823: ,p_name =>upper('p_projected_start_date'))
10824: --
10825: ,p_receipt_of_death_cert_date =>
10826: hr_transaction_api.get_date_value
10827: (p_transaction_step_id => p_transaction_step_id
10828: ,p_name =>upper('p_receipt_of_death_cert_date'))
10829: --
10830: ,p_region_of_birth =>

Line 10831: hr_transaction_api.get_varchar2_value

10827: (p_transaction_step_id => p_transaction_step_id
10828: ,p_name =>upper('p_receipt_of_death_cert_date'))
10829: --
10830: ,p_region_of_birth =>
10831: hr_transaction_api.get_varchar2_value
10832: (p_transaction_step_id => p_transaction_step_id
10833: ,p_name =>upper('p_region_of_birth'))
10834: --
10835: ,p_rehire_authorizor =>

Line 10836: hr_transaction_api.get_varchar2_value

10832: (p_transaction_step_id => p_transaction_step_id
10833: ,p_name =>upper('p_region_of_birth'))
10834: --
10835: ,p_rehire_authorizor =>
10836: hr_transaction_api.get_varchar2_value
10837: (p_transaction_step_id => p_transaction_step_id
10838: ,p_name =>upper('p_rehire_authorizor'))
10839: --
10840: ,p_rehire_recommendation =>

Line 10841: hr_transaction_api.get_varchar2_value

10837: (p_transaction_step_id => p_transaction_step_id
10838: ,p_name =>upper('p_rehire_authorizor'))
10839: --
10840: ,p_rehire_recommendation =>
10841: hr_transaction_api.get_varchar2_value
10842: (p_transaction_step_id => p_transaction_step_id
10843: ,p_name =>upper('p_rehire_recommendation'))
10844: --
10845: ,p_rehire_reason =>

Line 10846: hr_transaction_api.get_varchar2_value

10842: (p_transaction_step_id => p_transaction_step_id
10843: ,p_name =>upper('p_rehire_recommendation'))
10844: --
10845: ,p_rehire_reason =>
10846: hr_transaction_api.get_varchar2_value
10847: (p_transaction_step_id => p_transaction_step_id
10848: ,p_name =>upper('p_rehire_reason'))
10849: --
10850: ,p_resume_exists =>

Line 10851: hr_transaction_api.get_varchar2_value

10847: (p_transaction_step_id => p_transaction_step_id
10848: ,p_name =>upper('p_rehire_reason'))
10849: --
10850: ,p_resume_exists =>
10851: hr_transaction_api.get_varchar2_value
10852: (p_transaction_step_id => p_transaction_step_id
10853: ,p_name =>upper('p_resume_exists'))
10854: --
10855: ,p_resume_last_updated =>

Line 10856: hr_transaction_api.get_date_value

10852: (p_transaction_step_id => p_transaction_step_id
10853: ,p_name =>upper('p_resume_exists'))
10854: --
10855: ,p_resume_last_updated =>
10856: hr_transaction_api.get_date_value
10857: (p_transaction_step_id => p_transaction_step_id
10858: ,p_name =>upper('p_resume_last_updated'))
10859: --
10860: ,p_second_passport_exists =>

Line 10861: hr_transaction_api.get_varchar2_value

10857: (p_transaction_step_id => p_transaction_step_id
10858: ,p_name =>upper('p_resume_last_updated'))
10859: --
10860: ,p_second_passport_exists =>
10861: hr_transaction_api.get_varchar2_value
10862: (p_transaction_step_id => p_transaction_step_id
10863: ,p_name =>upper('p_second_passport_exists'))
10864: --
10865: ,p_student_status =>

Line 10866: hr_transaction_api.get_varchar2_value

10862: (p_transaction_step_id => p_transaction_step_id
10863: ,p_name =>upper('p_second_passport_exists'))
10864: --
10865: ,p_student_status =>
10866: hr_transaction_api.get_varchar2_value
10867: (p_transaction_step_id => p_transaction_step_id
10868: ,p_name =>upper('p_student_status'))
10869: --
10870: ,p_town_of_birth =>

Line 10871: hr_transaction_api.get_varchar2_value

10867: (p_transaction_step_id => p_transaction_step_id
10868: ,p_name =>upper('p_student_status'))
10869: --
10870: ,p_town_of_birth =>
10871: hr_transaction_api.get_varchar2_value
10872: (p_transaction_step_id => p_transaction_step_id
10873: ,p_name =>upper('p_town_of_birth'))
10874: --
10875: ,p_uses_tobacco_flag =>

Line 10876: hr_transaction_api.get_varchar2_value

10872: (p_transaction_step_id => p_transaction_step_id
10873: ,p_name =>upper('p_town_of_birth'))
10874: --
10875: ,p_uses_tobacco_flag =>
10876: hr_transaction_api.get_varchar2_value
10877: (p_transaction_step_id => p_transaction_step_id
10878: ,p_name =>upper('p_uses_tobacco_flag'))
10879: --
10880: ,p_vendor_id =>

Line 10881: hr_transaction_api.get_number_value

10877: (p_transaction_step_id => p_transaction_step_id
10878: ,p_name =>upper('p_uses_tobacco_flag'))
10879: --
10880: ,p_vendor_id =>
10881: hr_transaction_api.get_number_value
10882: (p_transaction_step_id => p_transaction_step_id
10883: ,p_name =>upper('p_vendor_id'))
10884: --
10885: ,p_work_schedule =>

Line 10886: hr_transaction_api.get_varchar2_value

10882: (p_transaction_step_id => p_transaction_step_id
10883: ,p_name =>upper('p_vendor_id'))
10884: --
10885: ,p_work_schedule =>
10886: hr_transaction_api.get_varchar2_value
10887: (p_transaction_step_id => p_transaction_step_id
10888: ,p_name =>upper('p_work_schedule'))
10889: --
10890: ,p_effective_start_date => l_per_effective_start_date

Line 10941: hr_transaction_api.get_VARCHAR2_value

10937:
10938: l_addl_primary_contact_flag := 'N';
10939: else
10940: l_addl_primary_contact_flag :=
10941: hr_transaction_api.get_VARCHAR2_value
10942: (p_transaction_step_id => p_transaction_step_id
10943: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
10944: end if;
10945: --

Line 10953: hr_transaction_api.get_NUMBER_value

10949: --
10950: ,P_START_DATE => l_effective_date
10951: --
10952: ,P_BUSINESS_GROUP_ID =>
10953: hr_transaction_api.get_NUMBER_value
10954: (p_transaction_step_id => p_transaction_step_id
10955: ,p_name => 'P_BUSINESS_GROUP_ID')
10956: --
10957: ,P_PERSON_ID => l_person_id

Line 10964: hr_transaction_api.get_VARCHAR2_value

10960: --
10961: ,P_CONTACT_TYPE => l_dpdnt_bnf_contact_type
10962: --
10963: ,P_CTR_COMMENTS =>
10964: hr_transaction_api.get_VARCHAR2_value
10965: (p_transaction_step_id => p_transaction_step_id
10966: ,p_name => 'P_CTR_COMMENTS')
10967: --
10968: -- Bug # 2115552

Line 10972: hr_transaction_api.get_VARCHAR2_value

10968: -- Bug # 2115552
10969: ,P_PRIMARY_CONTACT_FLAG => l_addl_primary_contact_flag
10970:
10971: /* ,P_PRIMARY_CONTACT_FLAG =>
10972: hr_transaction_api.get_VARCHAR2_value
10973: (p_transaction_step_id => p_transaction_step_id
10974: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
10975: */
10976: --

Line 10978: hr_transaction_api.get_DATE_value

10974: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
10975: */
10976: --
10977: ,P_DATE_START =>
10978: hr_transaction_api.get_DATE_value
10979: (p_transaction_step_id => p_transaction_step_id
10980: ,p_name => 'P_DATE_START')
10981: --
10982: ,P_START_LIFE_REASON_ID =>

Line 10983: hr_transaction_api.get_NUMBER_value

10979: (p_transaction_step_id => p_transaction_step_id
10980: ,p_name => 'P_DATE_START')
10981: --
10982: ,P_START_LIFE_REASON_ID =>
10983: hr_transaction_api.get_NUMBER_value
10984: (p_transaction_step_id => p_transaction_step_id
10985: ,p_name => 'P_START_LIFE_REASON_ID')
10986: --
10987: ,P_DATE_END =>

Line 10988: hr_transaction_api.get_DATE_value

10984: (p_transaction_step_id => p_transaction_step_id
10985: ,p_name => 'P_START_LIFE_REASON_ID')
10986: --
10987: ,P_DATE_END =>
10988: hr_transaction_api.get_DATE_value
10989: (p_transaction_step_id => p_transaction_step_id
10990: ,p_name => 'P_DATE_END')
10991: --
10992: ,P_END_LIFE_REASON_ID =>

Line 10993: hr_transaction_api.get_NUMBER_value

10989: (p_transaction_step_id => p_transaction_step_id
10990: ,p_name => 'P_DATE_END')
10991: --
10992: ,P_END_LIFE_REASON_ID =>
10993: hr_transaction_api.get_NUMBER_value
10994: (p_transaction_step_id => p_transaction_step_id
10995: ,p_name => 'P_END_LIFE_REASON_ID')
10996: --
10997: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 10998: hr_transaction_api.get_VARCHAR2_value

10994: (p_transaction_step_id => p_transaction_step_id
10995: ,p_name => 'P_END_LIFE_REASON_ID')
10996: --
10997: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
10998: hr_transaction_api.get_VARCHAR2_value
10999: (p_transaction_step_id => p_transaction_step_id
11000: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
11001: --
11002: ,P_PERSONAL_FLAG => l_dpdnt_bnf_personal_flag

Line 11005: hr_transaction_api.get_NUMBER_value

11001: --
11002: ,P_PERSONAL_FLAG => l_dpdnt_bnf_personal_flag
11003: --
11004: ,P_SEQUENCE_NUMBER =>
11005: hr_transaction_api.get_NUMBER_value
11006: (p_transaction_step_id => p_transaction_step_id
11007: ,p_name => 'P_SEQUENCE_NUMBER')
11008: --
11009: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 11010: hr_transaction_api.get_VARCHAR2_value

11006: (p_transaction_step_id => p_transaction_step_id
11007: ,p_name => 'P_SEQUENCE_NUMBER')
11008: --
11009: ,P_CONT_ATTRIBUTE_CATEGORY =>
11010: hr_transaction_api.get_VARCHAR2_value
11011: (p_transaction_step_id => p_transaction_step_id
11012: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
11013: --
11014: ,P_CONT_ATTRIBUTE1 =>

Line 11015: hr_transaction_api.get_VARCHAR2_value

11011: (p_transaction_step_id => p_transaction_step_id
11012: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
11013: --
11014: ,P_CONT_ATTRIBUTE1 =>
11015: hr_transaction_api.get_VARCHAR2_value
11016: (p_transaction_step_id => p_transaction_step_id
11017: ,p_name => 'P_CONT_ATTRIBUTE1')
11018: --
11019: ,P_CONT_ATTRIBUTE2 =>

Line 11020: hr_transaction_api.get_VARCHAR2_value

11016: (p_transaction_step_id => p_transaction_step_id
11017: ,p_name => 'P_CONT_ATTRIBUTE1')
11018: --
11019: ,P_CONT_ATTRIBUTE2 =>
11020: hr_transaction_api.get_VARCHAR2_value
11021: (p_transaction_step_id => p_transaction_step_id
11022: ,p_name => 'P_CONT_ATTRIBUTE2')
11023: --
11024: ,P_CONT_ATTRIBUTE3 =>

Line 11025: hr_transaction_api.get_VARCHAR2_value

11021: (p_transaction_step_id => p_transaction_step_id
11022: ,p_name => 'P_CONT_ATTRIBUTE2')
11023: --
11024: ,P_CONT_ATTRIBUTE3 =>
11025: hr_transaction_api.get_VARCHAR2_value
11026: (p_transaction_step_id => p_transaction_step_id
11027: ,p_name => 'P_CONT_ATTRIBUTE3')
11028: --
11029: ,P_CONT_ATTRIBUTE4 =>

Line 11030: hr_transaction_api.get_VARCHAR2_value

11026: (p_transaction_step_id => p_transaction_step_id
11027: ,p_name => 'P_CONT_ATTRIBUTE3')
11028: --
11029: ,P_CONT_ATTRIBUTE4 =>
11030: hr_transaction_api.get_VARCHAR2_value
11031: (p_transaction_step_id => p_transaction_step_id
11032: ,p_name => 'P_CONT_ATTRIBUTE4')
11033: --
11034: ,P_CONT_ATTRIBUTE5 =>

Line 11035: hr_transaction_api.get_VARCHAR2_value

11031: (p_transaction_step_id => p_transaction_step_id
11032: ,p_name => 'P_CONT_ATTRIBUTE4')
11033: --
11034: ,P_CONT_ATTRIBUTE5 =>
11035: hr_transaction_api.get_VARCHAR2_value
11036: (p_transaction_step_id => p_transaction_step_id
11037: ,p_name => 'P_CONT_ATTRIBUTE5')
11038: --
11039: ,P_CONT_ATTRIBUTE6 =>

Line 11040: hr_transaction_api.get_VARCHAR2_value

11036: (p_transaction_step_id => p_transaction_step_id
11037: ,p_name => 'P_CONT_ATTRIBUTE5')
11038: --
11039: ,P_CONT_ATTRIBUTE6 =>
11040: hr_transaction_api.get_VARCHAR2_value
11041: (p_transaction_step_id => p_transaction_step_id
11042: ,p_name => 'P_CONT_ATTRIBUTE6')
11043: --
11044: ,P_CONT_ATTRIBUTE7 =>

Line 11045: hr_transaction_api.get_VARCHAR2_value

11041: (p_transaction_step_id => p_transaction_step_id
11042: ,p_name => 'P_CONT_ATTRIBUTE6')
11043: --
11044: ,P_CONT_ATTRIBUTE7 =>
11045: hr_transaction_api.get_VARCHAR2_value
11046: (p_transaction_step_id => p_transaction_step_id
11047: ,p_name => 'P_CONT_ATTRIBUTE7')
11048: --
11049: ,P_CONT_ATTRIBUTE8 =>

Line 11050: hr_transaction_api.get_VARCHAR2_value

11046: (p_transaction_step_id => p_transaction_step_id
11047: ,p_name => 'P_CONT_ATTRIBUTE7')
11048: --
11049: ,P_CONT_ATTRIBUTE8 =>
11050: hr_transaction_api.get_VARCHAR2_value
11051: (p_transaction_step_id => p_transaction_step_id
11052: ,p_name => 'P_CONT_ATTRIBUTE8')
11053: --
11054: ,P_CONT_ATTRIBUTE9 =>

Line 11055: hr_transaction_api.get_VARCHAR2_value

11051: (p_transaction_step_id => p_transaction_step_id
11052: ,p_name => 'P_CONT_ATTRIBUTE8')
11053: --
11054: ,P_CONT_ATTRIBUTE9 =>
11055: hr_transaction_api.get_VARCHAR2_value
11056: (p_transaction_step_id => p_transaction_step_id
11057: ,p_name => 'P_CONT_ATTRIBUTE9')
11058: --
11059: ,P_CONT_ATTRIBUTE10 =>

Line 11060: hr_transaction_api.get_VARCHAR2_value

11056: (p_transaction_step_id => p_transaction_step_id
11057: ,p_name => 'P_CONT_ATTRIBUTE9')
11058: --
11059: ,P_CONT_ATTRIBUTE10 =>
11060: hr_transaction_api.get_VARCHAR2_value
11061: (p_transaction_step_id => p_transaction_step_id
11062: ,p_name => 'P_CONT_ATTRIBUTE10')
11063: --
11064: ,P_CONT_ATTRIBUTE11 =>

Line 11065: hr_transaction_api.get_VARCHAR2_value

11061: (p_transaction_step_id => p_transaction_step_id
11062: ,p_name => 'P_CONT_ATTRIBUTE10')
11063: --
11064: ,P_CONT_ATTRIBUTE11 =>
11065: hr_transaction_api.get_VARCHAR2_value
11066: (p_transaction_step_id => p_transaction_step_id
11067: ,p_name => 'P_CONT_ATTRIBUTE11')
11068: --
11069: ,P_CONT_ATTRIBUTE12 =>

Line 11070: hr_transaction_api.get_VARCHAR2_value

11066: (p_transaction_step_id => p_transaction_step_id
11067: ,p_name => 'P_CONT_ATTRIBUTE11')
11068: --
11069: ,P_CONT_ATTRIBUTE12 =>
11070: hr_transaction_api.get_VARCHAR2_value
11071: (p_transaction_step_id => p_transaction_step_id
11072: ,p_name => 'P_CONT_ATTRIBUTE12')
11073: --
11074: ,P_CONT_ATTRIBUTE13 =>

Line 11075: hr_transaction_api.get_VARCHAR2_value

11071: (p_transaction_step_id => p_transaction_step_id
11072: ,p_name => 'P_CONT_ATTRIBUTE12')
11073: --
11074: ,P_CONT_ATTRIBUTE13 =>
11075: hr_transaction_api.get_VARCHAR2_value
11076: (p_transaction_step_id => p_transaction_step_id
11077: ,p_name => 'P_CONT_ATTRIBUTE13')
11078: --
11079: ,P_CONT_ATTRIBUTE14 =>

Line 11080: hr_transaction_api.get_VARCHAR2_value

11076: (p_transaction_step_id => p_transaction_step_id
11077: ,p_name => 'P_CONT_ATTRIBUTE13')
11078: --
11079: ,P_CONT_ATTRIBUTE14 =>
11080: hr_transaction_api.get_VARCHAR2_value
11081: (p_transaction_step_id => p_transaction_step_id
11082: ,p_name => 'P_CONT_ATTRIBUTE14')
11083: --
11084: ,P_CONT_ATTRIBUTE15 =>

Line 11085: hr_transaction_api.get_VARCHAR2_value

11081: (p_transaction_step_id => p_transaction_step_id
11082: ,p_name => 'P_CONT_ATTRIBUTE14')
11083: --
11084: ,P_CONT_ATTRIBUTE15 =>
11085: hr_transaction_api.get_VARCHAR2_value
11086: (p_transaction_step_id => p_transaction_step_id
11087: ,p_name => 'P_CONT_ATTRIBUTE15')
11088: --
11089: ,P_CONT_ATTRIBUTE16 =>

Line 11090: hr_transaction_api.get_VARCHAR2_value

11086: (p_transaction_step_id => p_transaction_step_id
11087: ,p_name => 'P_CONT_ATTRIBUTE15')
11088: --
11089: ,P_CONT_ATTRIBUTE16 =>
11090: hr_transaction_api.get_VARCHAR2_value
11091: (p_transaction_step_id => p_transaction_step_id
11092: ,p_name => 'P_CONT_ATTRIBUTE16')
11093: --
11094: ,P_CONT_ATTRIBUTE17 =>

Line 11095: hr_transaction_api.get_VARCHAR2_value

11091: (p_transaction_step_id => p_transaction_step_id
11092: ,p_name => 'P_CONT_ATTRIBUTE16')
11093: --
11094: ,P_CONT_ATTRIBUTE17 =>
11095: hr_transaction_api.get_VARCHAR2_value
11096: (p_transaction_step_id => p_transaction_step_id
11097: ,p_name => 'P_CONT_ATTRIBUTE17')
11098: --
11099: ,P_CONT_ATTRIBUTE18 =>

Line 11100: hr_transaction_api.get_VARCHAR2_value

11096: (p_transaction_step_id => p_transaction_step_id
11097: ,p_name => 'P_CONT_ATTRIBUTE17')
11098: --
11099: ,P_CONT_ATTRIBUTE18 =>
11100: hr_transaction_api.get_VARCHAR2_value
11101: (p_transaction_step_id => p_transaction_step_id
11102: ,p_name => 'P_CONT_ATTRIBUTE18')
11103: --
11104: ,P_CONT_ATTRIBUTE19 =>

Line 11105: hr_transaction_api.get_VARCHAR2_value

11101: (p_transaction_step_id => p_transaction_step_id
11102: ,p_name => 'P_CONT_ATTRIBUTE18')
11103: --
11104: ,P_CONT_ATTRIBUTE19 =>
11105: hr_transaction_api.get_VARCHAR2_value
11106: (p_transaction_step_id => p_transaction_step_id
11107: ,p_name => 'P_CONT_ATTRIBUTE19')
11108: --
11109: ,P_CONT_ATTRIBUTE20 =>

Line 11110: hr_transaction_api.get_VARCHAR2_value

11106: (p_transaction_step_id => p_transaction_step_id
11107: ,p_name => 'P_CONT_ATTRIBUTE19')
11108: --
11109: ,P_CONT_ATTRIBUTE20 =>
11110: hr_transaction_api.get_VARCHAR2_value
11111: (p_transaction_step_id => p_transaction_step_id
11112: ,p_name => 'P_CONT_ATTRIBUTE20')
11113: --
11114: ,P_THIRD_PARTY_PAY_FLAG =>

Line 11115: hr_transaction_api.get_VARCHAR2_value

11111: (p_transaction_step_id => p_transaction_step_id
11112: ,p_name => 'P_CONT_ATTRIBUTE20')
11113: --
11114: ,P_THIRD_PARTY_PAY_FLAG =>
11115: hr_transaction_api.get_VARCHAR2_value
11116: (p_transaction_step_id => p_transaction_step_id
11117: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
11118: --
11119: ,P_BONDHOLDER_FLAG =>

Line 11120: hr_transaction_api.get_VARCHAR2_value

11116: (p_transaction_step_id => p_transaction_step_id
11117: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
11118: --
11119: ,P_BONDHOLDER_FLAG =>
11120: hr_transaction_api.get_VARCHAR2_value
11121: (p_transaction_step_id => p_transaction_step_id
11122: ,p_name => 'P_BONDHOLDER_FLAG')
11123: --
11124: ,P_DEPENDENT_FLAG =>

Line 11125: hr_transaction_api.get_VARCHAR2_value

11121: (p_transaction_step_id => p_transaction_step_id
11122: ,p_name => 'P_BONDHOLDER_FLAG')
11123: --
11124: ,P_DEPENDENT_FLAG =>
11125: hr_transaction_api.get_VARCHAR2_value
11126: (p_transaction_step_id => p_transaction_step_id
11127: ,p_name => 'P_DEPENDENT_FLAG')
11128: --
11129: ,P_BENEFICIARY_FLAG =>

Line 11130: hr_transaction_api.get_VARCHAR2_value

11126: (p_transaction_step_id => p_transaction_step_id
11127: ,p_name => 'P_DEPENDENT_FLAG')
11128: --
11129: ,P_BENEFICIARY_FLAG =>
11130: hr_transaction_api.get_VARCHAR2_value
11131: (p_transaction_step_id => p_transaction_step_id
11132: ,p_name => 'P_BENEFICIARY_FLAG')
11133: --
11134: ,P_CREATE_MIRROR_FLAG => l_CREATE_MIRROR_FLAG

Line 11139: hr_transaction_api.get_VARCHAR2_value

11135: --
11136: ,P_MIRROR_TYPE => l_MIRROR_TYPE
11137: --
11138: ,P_MIRROR_CONT_ATTRIBUTE_CAT =>
11139: hr_transaction_api.get_VARCHAR2_value
11140: (p_transaction_step_id => p_transaction_step_id
11141: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
11142: --
11143: ,P_MIRROR_CONT_ATTRIBUTE1 =>

Line 11144: hr_transaction_api.get_VARCHAR2_value

11140: (p_transaction_step_id => p_transaction_step_id
11141: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
11142: --
11143: ,P_MIRROR_CONT_ATTRIBUTE1 =>
11144: hr_transaction_api.get_VARCHAR2_value
11145: (p_transaction_step_id => p_transaction_step_id
11146: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
11147: --
11148: ,P_MIRROR_CONT_ATTRIBUTE2 =>

Line 11149: hr_transaction_api.get_VARCHAR2_value

11145: (p_transaction_step_id => p_transaction_step_id
11146: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
11147: --
11148: ,P_MIRROR_CONT_ATTRIBUTE2 =>
11149: hr_transaction_api.get_VARCHAR2_value
11150: (p_transaction_step_id => p_transaction_step_id
11151: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
11152: --
11153: ,P_MIRROR_CONT_ATTRIBUTE3 =>

Line 11154: hr_transaction_api.get_VARCHAR2_value

11150: (p_transaction_step_id => p_transaction_step_id
11151: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
11152: --
11153: ,P_MIRROR_CONT_ATTRIBUTE3 =>
11154: hr_transaction_api.get_VARCHAR2_value
11155: (p_transaction_step_id => p_transaction_step_id
11156: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
11157: --
11158: ,P_MIRROR_CONT_ATTRIBUTE4 =>

Line 11159: hr_transaction_api.get_VARCHAR2_value

11155: (p_transaction_step_id => p_transaction_step_id
11156: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
11157: --
11158: ,P_MIRROR_CONT_ATTRIBUTE4 =>
11159: hr_transaction_api.get_VARCHAR2_value
11160: (p_transaction_step_id => p_transaction_step_id
11161: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
11162: --
11163: ,P_MIRROR_CONT_ATTRIBUTE5 =>

Line 11164: hr_transaction_api.get_VARCHAR2_value

11160: (p_transaction_step_id => p_transaction_step_id
11161: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
11162: --
11163: ,P_MIRROR_CONT_ATTRIBUTE5 =>
11164: hr_transaction_api.get_VARCHAR2_value
11165: (p_transaction_step_id => p_transaction_step_id
11166: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
11167: --
11168: ,P_MIRROR_CONT_ATTRIBUTE6 =>

Line 11169: hr_transaction_api.get_VARCHAR2_value

11165: (p_transaction_step_id => p_transaction_step_id
11166: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
11167: --
11168: ,P_MIRROR_CONT_ATTRIBUTE6 =>
11169: hr_transaction_api.get_VARCHAR2_value
11170: (p_transaction_step_id => p_transaction_step_id
11171: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
11172: --
11173: ,P_MIRROR_CONT_ATTRIBUTE7 =>

Line 11174: hr_transaction_api.get_VARCHAR2_value

11170: (p_transaction_step_id => p_transaction_step_id
11171: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
11172: --
11173: ,P_MIRROR_CONT_ATTRIBUTE7 =>
11174: hr_transaction_api.get_VARCHAR2_value
11175: (p_transaction_step_id => p_transaction_step_id
11176: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
11177: --
11178: ,P_MIRROR_CONT_ATTRIBUTE8 =>

Line 11179: hr_transaction_api.get_VARCHAR2_value

11175: (p_transaction_step_id => p_transaction_step_id
11176: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
11177: --
11178: ,P_MIRROR_CONT_ATTRIBUTE8 =>
11179: hr_transaction_api.get_VARCHAR2_value
11180: (p_transaction_step_id => p_transaction_step_id
11181: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
11182: --
11183: ,P_MIRROR_CONT_ATTRIBUTE9 =>

Line 11184: hr_transaction_api.get_VARCHAR2_value

11180: (p_transaction_step_id => p_transaction_step_id
11181: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
11182: --
11183: ,P_MIRROR_CONT_ATTRIBUTE9 =>
11184: hr_transaction_api.get_VARCHAR2_value
11185: (p_transaction_step_id => p_transaction_step_id
11186: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
11187: --
11188: ,P_MIRROR_CONT_ATTRIBUTE10 =>

Line 11189: hr_transaction_api.get_VARCHAR2_value

11185: (p_transaction_step_id => p_transaction_step_id
11186: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
11187: --
11188: ,P_MIRROR_CONT_ATTRIBUTE10 =>
11189: hr_transaction_api.get_VARCHAR2_value
11190: (p_transaction_step_id => p_transaction_step_id
11191: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
11192: --
11193: ,P_MIRROR_CONT_ATTRIBUTE11 =>

Line 11194: hr_transaction_api.get_VARCHAR2_value

11190: (p_transaction_step_id => p_transaction_step_id
11191: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
11192: --
11193: ,P_MIRROR_CONT_ATTRIBUTE11 =>
11194: hr_transaction_api.get_VARCHAR2_value
11195: (p_transaction_step_id => p_transaction_step_id
11196: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
11197: --
11198: ,P_MIRROR_CONT_ATTRIBUTE12 =>

Line 11199: hr_transaction_api.get_VARCHAR2_value

11195: (p_transaction_step_id => p_transaction_step_id
11196: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
11197: --
11198: ,P_MIRROR_CONT_ATTRIBUTE12 =>
11199: hr_transaction_api.get_VARCHAR2_value
11200: (p_transaction_step_id => p_transaction_step_id
11201: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
11202: --
11203: ,P_MIRROR_CONT_ATTRIBUTE13 =>

Line 11204: hr_transaction_api.get_VARCHAR2_value

11200: (p_transaction_step_id => p_transaction_step_id
11201: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
11202: --
11203: ,P_MIRROR_CONT_ATTRIBUTE13 =>
11204: hr_transaction_api.get_VARCHAR2_value
11205: (p_transaction_step_id => p_transaction_step_id
11206: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
11207: --
11208: ,P_MIRROR_CONT_ATTRIBUTE14 =>

Line 11209: hr_transaction_api.get_VARCHAR2_value

11205: (p_transaction_step_id => p_transaction_step_id
11206: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
11207: --
11208: ,P_MIRROR_CONT_ATTRIBUTE14 =>
11209: hr_transaction_api.get_VARCHAR2_value
11210: (p_transaction_step_id => p_transaction_step_id
11211: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
11212: --
11213: ,P_MIRROR_CONT_ATTRIBUTE15 =>

Line 11214: hr_transaction_api.get_VARCHAR2_value

11210: (p_transaction_step_id => p_transaction_step_id
11211: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
11212: --
11213: ,P_MIRROR_CONT_ATTRIBUTE15 =>
11214: hr_transaction_api.get_VARCHAR2_value
11215: (p_transaction_step_id => p_transaction_step_id
11216: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
11217: --
11218: ,P_MIRROR_CONT_ATTRIBUTE16 =>

Line 11219: hr_transaction_api.get_VARCHAR2_value

11215: (p_transaction_step_id => p_transaction_step_id
11216: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
11217: --
11218: ,P_MIRROR_CONT_ATTRIBUTE16 =>
11219: hr_transaction_api.get_VARCHAR2_value
11220: (p_transaction_step_id => p_transaction_step_id
11221: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
11222: --
11223: ,P_MIRROR_CONT_ATTRIBUTE17 =>

Line 11224: hr_transaction_api.get_VARCHAR2_value

11220: (p_transaction_step_id => p_transaction_step_id
11221: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
11222: --
11223: ,P_MIRROR_CONT_ATTRIBUTE17 =>
11224: hr_transaction_api.get_VARCHAR2_value
11225: (p_transaction_step_id => p_transaction_step_id
11226: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
11227: --
11228: ,P_MIRROR_CONT_ATTRIBUTE18 =>

Line 11229: hr_transaction_api.get_VARCHAR2_value

11225: (p_transaction_step_id => p_transaction_step_id
11226: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
11227: --
11228: ,P_MIRROR_CONT_ATTRIBUTE18 =>
11229: hr_transaction_api.get_VARCHAR2_value
11230: (p_transaction_step_id => p_transaction_step_id
11231: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
11232: --
11233: ,P_MIRROR_CONT_ATTRIBUTE19 =>

Line 11234: hr_transaction_api.get_VARCHAR2_value

11230: (p_transaction_step_id => p_transaction_step_id
11231: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
11232: --
11233: ,P_MIRROR_CONT_ATTRIBUTE19 =>
11234: hr_transaction_api.get_VARCHAR2_value
11235: (p_transaction_step_id => p_transaction_step_id
11236: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
11237: --
11238: ,P_MIRROR_CONT_ATTRIBUTE20 =>

Line 11239: hr_transaction_api.get_VARCHAR2_value

11235: (p_transaction_step_id => p_transaction_step_id
11236: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
11237: --
11238: ,P_MIRROR_CONT_ATTRIBUTE20 =>
11239: hr_transaction_api.get_VARCHAR2_value
11240: (p_transaction_step_id => p_transaction_step_id
11241: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE20')
11242: --
11243:

Line 11265: hr_transaction_api.get_VARCHAR2_value

11261: --
11262: ,P_ORIG_HIRE_WARNING => L_CON_ORIG_HIRE_WARNING1
11263: --
11264: ,P_CONT_INFORMATION_CATEGORY =>
11265: hr_transaction_api.get_VARCHAR2_value
11266: (p_transaction_step_id => p_transaction_step_id
11267: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
11268: --
11269: ,P_CONT_INFORMATION1 =>

Line 11270: hr_transaction_api.get_VARCHAR2_value

11266: (p_transaction_step_id => p_transaction_step_id
11267: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
11268: --
11269: ,P_CONT_INFORMATION1 =>
11270: hr_transaction_api.get_VARCHAR2_value
11271: (p_transaction_step_id => p_transaction_step_id
11272: ,p_name => 'P_CONT_INFORMATION1')
11273: --
11274: ,P_CONT_INFORMATION2 =>

Line 11275: hr_transaction_api.get_VARCHAR2_value

11271: (p_transaction_step_id => p_transaction_step_id
11272: ,p_name => 'P_CONT_INFORMATION1')
11273: --
11274: ,P_CONT_INFORMATION2 =>
11275: hr_transaction_api.get_VARCHAR2_value
11276: (p_transaction_step_id => p_transaction_step_id
11277: ,p_name => 'P_CONT_INFORMATION2')
11278: --
11279: ,P_CONT_INFORMATION3 =>

Line 11280: hr_transaction_api.get_VARCHAR2_value

11276: (p_transaction_step_id => p_transaction_step_id
11277: ,p_name => 'P_CONT_INFORMATION2')
11278: --
11279: ,P_CONT_INFORMATION3 =>
11280: hr_transaction_api.get_VARCHAR2_value
11281: (p_transaction_step_id => p_transaction_step_id
11282: ,p_name => 'P_CONT_INFORMATION3')
11283: --
11284: ,P_CONT_INFORMATION4 =>

Line 11285: hr_transaction_api.get_VARCHAR2_value

11281: (p_transaction_step_id => p_transaction_step_id
11282: ,p_name => 'P_CONT_INFORMATION3')
11283: --
11284: ,P_CONT_INFORMATION4 =>
11285: hr_transaction_api.get_VARCHAR2_value
11286: (p_transaction_step_id => p_transaction_step_id
11287: ,p_name => 'P_CONT_INFORMATION4')
11288: --
11289: ,P_CONT_INFORMATION5 =>

Line 11290: hr_transaction_api.get_VARCHAR2_value

11286: (p_transaction_step_id => p_transaction_step_id
11287: ,p_name => 'P_CONT_INFORMATION4')
11288: --
11289: ,P_CONT_INFORMATION5 =>
11290: hr_transaction_api.get_VARCHAR2_value
11291: (p_transaction_step_id => p_transaction_step_id
11292: ,p_name => 'P_CONT_INFORMATION5')
11293: --
11294: ,P_CONT_INFORMATION6 =>

Line 11295: hr_transaction_api.get_VARCHAR2_value

11291: (p_transaction_step_id => p_transaction_step_id
11292: ,p_name => 'P_CONT_INFORMATION5')
11293: --
11294: ,P_CONT_INFORMATION6 =>
11295: hr_transaction_api.get_VARCHAR2_value
11296: (p_transaction_step_id => p_transaction_step_id
11297: ,p_name => 'P_CONT_INFORMATION6')
11298: --
11299: ,P_CONT_INFORMATION7 =>

Line 11300: hr_transaction_api.get_VARCHAR2_value

11296: (p_transaction_step_id => p_transaction_step_id
11297: ,p_name => 'P_CONT_INFORMATION6')
11298: --
11299: ,P_CONT_INFORMATION7 =>
11300: hr_transaction_api.get_VARCHAR2_value
11301: (p_transaction_step_id => p_transaction_step_id
11302: ,p_name => 'P_CONT_INFORMATION7')
11303: --
11304: ,P_CONT_INFORMATION8 =>

Line 11305: hr_transaction_api.get_VARCHAR2_value

11301: (p_transaction_step_id => p_transaction_step_id
11302: ,p_name => 'P_CONT_INFORMATION7')
11303: --
11304: ,P_CONT_INFORMATION8 =>
11305: hr_transaction_api.get_VARCHAR2_value
11306: (p_transaction_step_id => p_transaction_step_id
11307: ,p_name => 'P_CONT_INFORMATION8')
11308: --
11309: ,P_CONT_INFORMATION9 =>

Line 11310: hr_transaction_api.get_VARCHAR2_value

11306: (p_transaction_step_id => p_transaction_step_id
11307: ,p_name => 'P_CONT_INFORMATION8')
11308: --
11309: ,P_CONT_INFORMATION9 =>
11310: hr_transaction_api.get_VARCHAR2_value
11311: (p_transaction_step_id => p_transaction_step_id
11312: ,p_name => 'P_CONT_INFORMATION9')
11313: --
11314: ,P_CONT_INFORMATION10 =>

Line 11315: hr_transaction_api.get_VARCHAR2_value

11311: (p_transaction_step_id => p_transaction_step_id
11312: ,p_name => 'P_CONT_INFORMATION9')
11313: --
11314: ,P_CONT_INFORMATION10 =>
11315: hr_transaction_api.get_VARCHAR2_value
11316: (p_transaction_step_id => p_transaction_step_id
11317: ,p_name => 'P_CONT_INFORMATION10')
11318: --
11319: ,P_CONT_INFORMATION11 =>

Line 11320: hr_transaction_api.get_VARCHAR2_value

11316: (p_transaction_step_id => p_transaction_step_id
11317: ,p_name => 'P_CONT_INFORMATION10')
11318: --
11319: ,P_CONT_INFORMATION11 =>
11320: hr_transaction_api.get_VARCHAR2_value
11321: (p_transaction_step_id => p_transaction_step_id
11322: ,p_name => 'P_CONT_INFORMATION11')
11323: --
11324: ,P_CONT_INFORMATION12 =>

Line 11325: hr_transaction_api.get_VARCHAR2_value

11321: (p_transaction_step_id => p_transaction_step_id
11322: ,p_name => 'P_CONT_INFORMATION11')
11323: --
11324: ,P_CONT_INFORMATION12 =>
11325: hr_transaction_api.get_VARCHAR2_value
11326: (p_transaction_step_id => p_transaction_step_id
11327: ,p_name => 'P_CONT_INFORMATION12')
11328: --
11329: ,P_CONT_INFORMATION13 =>

Line 11330: hr_transaction_api.get_VARCHAR2_value

11326: (p_transaction_step_id => p_transaction_step_id
11327: ,p_name => 'P_CONT_INFORMATION12')
11328: --
11329: ,P_CONT_INFORMATION13 =>
11330: hr_transaction_api.get_VARCHAR2_value
11331: (p_transaction_step_id => p_transaction_step_id
11332: ,p_name => 'P_CONT_INFORMATION13')
11333: --
11334: ,P_CONT_INFORMATION14 =>

Line 11335: hr_transaction_api.get_VARCHAR2_value

11331: (p_transaction_step_id => p_transaction_step_id
11332: ,p_name => 'P_CONT_INFORMATION13')
11333: --
11334: ,P_CONT_INFORMATION14 =>
11335: hr_transaction_api.get_VARCHAR2_value
11336: (p_transaction_step_id => p_transaction_step_id
11337: ,p_name => 'P_CONT_INFORMATION14')
11338: --
11339: ,P_CONT_INFORMATION15 =>

Line 11340: hr_transaction_api.get_VARCHAR2_value

11336: (p_transaction_step_id => p_transaction_step_id
11337: ,p_name => 'P_CONT_INFORMATION14')
11338: --
11339: ,P_CONT_INFORMATION15 =>
11340: hr_transaction_api.get_VARCHAR2_value
11341: (p_transaction_step_id => p_transaction_step_id
11342: ,p_name => 'P_CONT_INFORMATION15')
11343: --
11344: ,P_CONT_INFORMATION16 =>

Line 11345: hr_transaction_api.get_VARCHAR2_value

11341: (p_transaction_step_id => p_transaction_step_id
11342: ,p_name => 'P_CONT_INFORMATION15')
11343: --
11344: ,P_CONT_INFORMATION16 =>
11345: hr_transaction_api.get_VARCHAR2_value
11346: (p_transaction_step_id => p_transaction_step_id
11347: ,p_name => 'P_CONT_INFORMATION16')
11348: --
11349: ,P_CONT_INFORMATION17 =>

Line 11350: hr_transaction_api.get_VARCHAR2_value

11346: (p_transaction_step_id => p_transaction_step_id
11347: ,p_name => 'P_CONT_INFORMATION16')
11348: --
11349: ,P_CONT_INFORMATION17 =>
11350: hr_transaction_api.get_VARCHAR2_value
11351: (p_transaction_step_id => p_transaction_step_id
11352: ,p_name => 'P_CONT_INFORMATION17')
11353: --
11354: ,P_CONT_INFORMATION18 =>

Line 11355: hr_transaction_api.get_VARCHAR2_value

11351: (p_transaction_step_id => p_transaction_step_id
11352: ,p_name => 'P_CONT_INFORMATION17')
11353: --
11354: ,P_CONT_INFORMATION18 =>
11355: hr_transaction_api.get_VARCHAR2_value
11356: (p_transaction_step_id => p_transaction_step_id
11357: ,p_name => 'P_CONT_INFORMATION18')
11358: --
11359: ,P_CONT_INFORMATION19 =>

Line 11360: hr_transaction_api.get_VARCHAR2_value

11356: (p_transaction_step_id => p_transaction_step_id
11357: ,p_name => 'P_CONT_INFORMATION18')
11358: --
11359: ,P_CONT_INFORMATION19 =>
11360: hr_transaction_api.get_VARCHAR2_value
11361: (p_transaction_step_id => p_transaction_step_id
11362: ,p_name => 'P_CONT_INFORMATION19')
11363: --
11364: ,P_CONT_INFORMATION20 =>

Line 11365: hr_transaction_api.get_VARCHAR2_value

11361: (p_transaction_step_id => p_transaction_step_id
11362: ,p_name => 'P_CONT_INFORMATION19')
11363: --
11364: ,P_CONT_INFORMATION20 =>
11365: hr_transaction_api.get_VARCHAR2_value
11366: (p_transaction_step_id => p_transaction_step_id
11367: ,p_name => 'P_CONT_INFORMATION20')
11368: --
11369: ,P_MIRROR_CONT_INFORMATION_CAT =>

Line 11370: hr_transaction_api.get_VARCHAR2_value

11366: (p_transaction_step_id => p_transaction_step_id
11367: ,p_name => 'P_CONT_INFORMATION20')
11368: --
11369: ,P_MIRROR_CONT_INFORMATION_CAT =>
11370: hr_transaction_api.get_VARCHAR2_value
11371: (p_transaction_step_id => p_transaction_step_id
11372: ,p_name => 'P_MIRROR_CONT_INFORMATION_CAT')
11373: --
11374: ,P_MIRROR_CONT_INFORMATION1 =>

Line 11375: hr_transaction_api.get_VARCHAR2_value

11371: (p_transaction_step_id => p_transaction_step_id
11372: ,p_name => 'P_MIRROR_CONT_INFORMATION_CAT')
11373: --
11374: ,P_MIRROR_CONT_INFORMATION1 =>
11375: hr_transaction_api.get_VARCHAR2_value
11376: (p_transaction_step_id => p_transaction_step_id
11377: ,p_name => 'P_MIRROR_CONT_INFORMATION1')
11378: --
11379: ,P_MIRROR_CONT_INFORMATION2 =>

Line 11380: hr_transaction_api.get_VARCHAR2_value

11376: (p_transaction_step_id => p_transaction_step_id
11377: ,p_name => 'P_MIRROR_CONT_INFORMATION1')
11378: --
11379: ,P_MIRROR_CONT_INFORMATION2 =>
11380: hr_transaction_api.get_VARCHAR2_value
11381: (p_transaction_step_id => p_transaction_step_id
11382: ,p_name => 'P_MIRROR_CONT_INFORMATION2')
11383: --
11384: ,P_MIRROR_CONT_INFORMATION3 =>

Line 11385: hr_transaction_api.get_VARCHAR2_value

11381: (p_transaction_step_id => p_transaction_step_id
11382: ,p_name => 'P_MIRROR_CONT_INFORMATION2')
11383: --
11384: ,P_MIRROR_CONT_INFORMATION3 =>
11385: hr_transaction_api.get_VARCHAR2_value
11386: (p_transaction_step_id => p_transaction_step_id
11387: ,p_name => 'P_MIRROR_CONT_INFORMATION3')
11388: --
11389: ,P_MIRROR_CONT_INFORMATION4 =>

Line 11390: hr_transaction_api.get_VARCHAR2_value

11386: (p_transaction_step_id => p_transaction_step_id
11387: ,p_name => 'P_MIRROR_CONT_INFORMATION3')
11388: --
11389: ,P_MIRROR_CONT_INFORMATION4 =>
11390: hr_transaction_api.get_VARCHAR2_value
11391: (p_transaction_step_id => p_transaction_step_id
11392: ,p_name => 'P_MIRROR_CONT_INFORMATION4')
11393: --
11394: ,P_MIRROR_CONT_INFORMATION5 =>

Line 11395: hr_transaction_api.get_VARCHAR2_value

11391: (p_transaction_step_id => p_transaction_step_id
11392: ,p_name => 'P_MIRROR_CONT_INFORMATION4')
11393: --
11394: ,P_MIRROR_CONT_INFORMATION5 =>
11395: hr_transaction_api.get_VARCHAR2_value
11396: (p_transaction_step_id => p_transaction_step_id
11397: ,p_name => 'P_MIRROR_CONT_INFORMATION5')
11398: --
11399: ,P_MIRROR_CONT_INFORMATION6 =>

Line 11400: hr_transaction_api.get_VARCHAR2_value

11396: (p_transaction_step_id => p_transaction_step_id
11397: ,p_name => 'P_MIRROR_CONT_INFORMATION5')
11398: --
11399: ,P_MIRROR_CONT_INFORMATION6 =>
11400: hr_transaction_api.get_VARCHAR2_value
11401: (p_transaction_step_id => p_transaction_step_id
11402: ,p_name => 'P_MIRROR_CONT_INFORMATION6')
11403: --
11404: ,P_MIRROR_CONT_INFORMATION7 =>

Line 11405: hr_transaction_api.get_VARCHAR2_value

11401: (p_transaction_step_id => p_transaction_step_id
11402: ,p_name => 'P_MIRROR_CONT_INFORMATION6')
11403: --
11404: ,P_MIRROR_CONT_INFORMATION7 =>
11405: hr_transaction_api.get_VARCHAR2_value
11406: (p_transaction_step_id => p_transaction_step_id
11407: ,p_name => 'P_MIRROR_CONT_INFORMATION7')
11408: --
11409: ,P_MIRROR_CONT_INFORMATION8 =>

Line 11410: hr_transaction_api.get_VARCHAR2_value

11406: (p_transaction_step_id => p_transaction_step_id
11407: ,p_name => 'P_MIRROR_CONT_INFORMATION7')
11408: --
11409: ,P_MIRROR_CONT_INFORMATION8 =>
11410: hr_transaction_api.get_VARCHAR2_value
11411: (p_transaction_step_id => p_transaction_step_id
11412: ,p_name => 'P_MIRROR_CONT_INFORMATION8')
11413: --
11414: ,P_MIRROR_CONT_INFORMATION9 =>

Line 11415: hr_transaction_api.get_VARCHAR2_value

11411: (p_transaction_step_id => p_transaction_step_id
11412: ,p_name => 'P_MIRROR_CONT_INFORMATION8')
11413: --
11414: ,P_MIRROR_CONT_INFORMATION9 =>
11415: hr_transaction_api.get_VARCHAR2_value
11416: (p_transaction_step_id => p_transaction_step_id
11417: ,p_name => 'P_MIRROR_CONT_INFORMATION9')
11418: --
11419: ,P_MIRROR_CONT_INFORMATION10 =>

Line 11420: hr_transaction_api.get_VARCHAR2_value

11416: (p_transaction_step_id => p_transaction_step_id
11417: ,p_name => 'P_MIRROR_CONT_INFORMATION9')
11418: --
11419: ,P_MIRROR_CONT_INFORMATION10 =>
11420: hr_transaction_api.get_VARCHAR2_value
11421: (p_transaction_step_id => p_transaction_step_id
11422: ,p_name => 'P_MIRROR_CONT_INFORMATION10')
11423: --
11424: ,P_MIRROR_CONT_INFORMATION11 =>

Line 11425: hr_transaction_api.get_VARCHAR2_value

11421: (p_transaction_step_id => p_transaction_step_id
11422: ,p_name => 'P_MIRROR_CONT_INFORMATION10')
11423: --
11424: ,P_MIRROR_CONT_INFORMATION11 =>
11425: hr_transaction_api.get_VARCHAR2_value
11426: (p_transaction_step_id => p_transaction_step_id
11427: ,p_name => 'P_MIRROR_CONT_INFORMATION11')
11428: --
11429: ,P_MIRROR_CONT_INFORMATION12 =>

Line 11430: hr_transaction_api.get_VARCHAR2_value

11426: (p_transaction_step_id => p_transaction_step_id
11427: ,p_name => 'P_MIRROR_CONT_INFORMATION11')
11428: --
11429: ,P_MIRROR_CONT_INFORMATION12 =>
11430: hr_transaction_api.get_VARCHAR2_value
11431: (p_transaction_step_id => p_transaction_step_id
11432: ,p_name => 'P_MIRROR_CONT_INFORMATION12')
11433: --
11434: ,P_MIRROR_CONT_INFORMATION13 =>

Line 11435: hr_transaction_api.get_VARCHAR2_value

11431: (p_transaction_step_id => p_transaction_step_id
11432: ,p_name => 'P_MIRROR_CONT_INFORMATION12')
11433: --
11434: ,P_MIRROR_CONT_INFORMATION13 =>
11435: hr_transaction_api.get_VARCHAR2_value
11436: (p_transaction_step_id => p_transaction_step_id
11437: ,p_name => 'P_MIRROR_CONT_INFORMATION13')
11438: --
11439: ,P_MIRROR_CONT_INFORMATION14 =>

Line 11440: hr_transaction_api.get_VARCHAR2_value

11436: (p_transaction_step_id => p_transaction_step_id
11437: ,p_name => 'P_MIRROR_CONT_INFORMATION13')
11438: --
11439: ,P_MIRROR_CONT_INFORMATION14 =>
11440: hr_transaction_api.get_VARCHAR2_value
11441: (p_transaction_step_id => p_transaction_step_id
11442: ,p_name => 'P_MIRROR_CONT_INFORMATION14')
11443: --
11444: ,P_MIRROR_CONT_INFORMATION15 =>

Line 11445: hr_transaction_api.get_VARCHAR2_value

11441: (p_transaction_step_id => p_transaction_step_id
11442: ,p_name => 'P_MIRROR_CONT_INFORMATION14')
11443: --
11444: ,P_MIRROR_CONT_INFORMATION15 =>
11445: hr_transaction_api.get_VARCHAR2_value
11446: (p_transaction_step_id => p_transaction_step_id
11447: ,p_name => 'P_MIRROR_CONT_INFORMATION15')
11448: --
11449: ,P_MIRROR_CONT_INFORMATION16 =>

Line 11450: hr_transaction_api.get_VARCHAR2_value

11446: (p_transaction_step_id => p_transaction_step_id
11447: ,p_name => 'P_MIRROR_CONT_INFORMATION15')
11448: --
11449: ,P_MIRROR_CONT_INFORMATION16 =>
11450: hr_transaction_api.get_VARCHAR2_value
11451: (p_transaction_step_id => p_transaction_step_id
11452: ,p_name => 'P_MIRROR_CONT_INFORMATION16')
11453: --
11454: ,P_MIRROR_CONT_INFORMATION17 =>

Line 11455: hr_transaction_api.get_VARCHAR2_value

11451: (p_transaction_step_id => p_transaction_step_id
11452: ,p_name => 'P_MIRROR_CONT_INFORMATION16')
11453: --
11454: ,P_MIRROR_CONT_INFORMATION17 =>
11455: hr_transaction_api.get_VARCHAR2_value
11456: (p_transaction_step_id => p_transaction_step_id
11457: ,p_name => 'P_MIRROR_CONT_INFORMATION17')
11458: --
11459: ,P_MIRROR_CONT_INFORMATION18 =>

Line 11460: hr_transaction_api.get_VARCHAR2_value

11456: (p_transaction_step_id => p_transaction_step_id
11457: ,p_name => 'P_MIRROR_CONT_INFORMATION17')
11458: --
11459: ,P_MIRROR_CONT_INFORMATION18 =>
11460: hr_transaction_api.get_VARCHAR2_value
11461: (p_transaction_step_id => p_transaction_step_id
11462: ,p_name => 'P_MIRROR_CONT_INFORMATION18')
11463: --
11464: ,P_MIRROR_CONT_INFORMATION19 =>

Line 11465: hr_transaction_api.get_VARCHAR2_value

11461: (p_transaction_step_id => p_transaction_step_id
11462: ,p_name => 'P_MIRROR_CONT_INFORMATION18')
11463: --
11464: ,P_MIRROR_CONT_INFORMATION19 =>
11465: hr_transaction_api.get_VARCHAR2_value
11466: (p_transaction_step_id => p_transaction_step_id
11467: ,p_name => 'P_MIRROR_CONT_INFORMATION19')
11468: --
11469: ,P_MIRROR_CONT_INFORMATION20 =>

Line 11470: hr_transaction_api.get_VARCHAR2_value

11466: (p_transaction_step_id => p_transaction_step_id
11467: ,p_name => 'P_MIRROR_CONT_INFORMATION19')
11468: --
11469: ,P_MIRROR_CONT_INFORMATION20 =>
11470: hr_transaction_api.get_VARCHAR2_value
11471: (p_transaction_step_id => p_transaction_step_id
11472: ,p_name => 'P_MIRROR_CONT_INFORMATION20')
11473: );
11474: --

Line 11619: l_process_section := hr_transaction_api.get_varchar2_value

11615:
11616: -- Change for Approvals for contact.
11617: -- Get the process section.
11618: --
11619: l_process_section := hr_transaction_api.get_varchar2_value
11620: (p_transaction_step_id => p_transaction_step_id
11621: ,p_name =>upper( 'P_PROCESS_SECTION_NAME'));
11622: --
11623: if l_process_section = 'DELETE_CONTACTS' then

Line 11642: P_CONTACT_RELATIONSHIP_ID => hr_transaction_api.get_NUMBER_value

11638: --
11639: -- SFL changes
11640:
11641: is_address_updated(
11642: P_CONTACT_RELATIONSHIP_ID => hr_transaction_api.get_NUMBER_value
11643: (p_transaction_step_id => p_transaction_step_id
11644: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
11645: ,P_DATE_START => hr_transaction_api.get_DATE_value
11646: (p_transaction_step_id => p_transaction_step_id

Line 11645: ,P_DATE_START => hr_transaction_api.get_DATE_value

11641: is_address_updated(
11642: P_CONTACT_RELATIONSHIP_ID => hr_transaction_api.get_NUMBER_value
11643: (p_transaction_step_id => p_transaction_step_id
11644: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
11645: ,P_DATE_START => hr_transaction_api.get_DATE_value
11646: (p_transaction_step_id => p_transaction_step_id
11647: ,p_name => 'P_DATE_START')
11648: ,p_transaction_step_id => p_transaction_step_id
11649: ,p_CONTACT_PERSON_ID => hr_transaction_api.get_NUMBER_value

Line 11649: ,p_CONTACT_PERSON_ID => hr_transaction_api.get_NUMBER_value

11645: ,P_DATE_START => hr_transaction_api.get_DATE_value
11646: (p_transaction_step_id => p_transaction_step_id
11647: ,p_name => 'P_DATE_START')
11648: ,p_transaction_step_id => p_transaction_step_id
11649: ,p_CONTACT_PERSON_ID => hr_transaction_api.get_NUMBER_value
11650: (p_transaction_step_id => p_transaction_step_id
11651: ,p_name => 'P_CONTACT_PERSON_ID')
11652: , p_PERSON_ID => hr_transaction_api.get_NUMBER_value
11653: (p_transaction_step_id => p_transaction_step_id

Line 11652: , p_PERSON_ID => hr_transaction_api.get_NUMBER_value

11648: ,p_transaction_step_id => p_transaction_step_id
11649: ,p_CONTACT_PERSON_ID => hr_transaction_api.get_NUMBER_value
11650: (p_transaction_step_id => p_transaction_step_id
11651: ,p_name => 'P_CONTACT_PERSON_ID')
11652: , p_PERSON_ID => hr_transaction_api.get_NUMBER_value
11653: (p_transaction_step_id => p_transaction_step_id
11654: ,p_name => 'P_PERSON_ID'));
11655: begin
11656: --

Line 11657: l_per_rec_changed := hr_transaction_api.get_varchar2_value

11653: (p_transaction_step_id => p_transaction_step_id
11654: ,p_name => 'P_PERSON_ID'));
11655: begin
11656: --
11657: l_per_rec_changed := hr_transaction_api.get_varchar2_value
11658: (p_transaction_step_id => p_transaction_step_id
11659: ,p_name => 'p_per_rec_changed') ;
11660: --
11661: exception

Line 11668: l_per_ovn := hr_transaction_api.get_number_value

11664: end;
11665:
11666: IF l_per_rec_changed = 'CHANGED' THEN
11667: --
11668: l_per_ovn := hr_transaction_api.get_number_value
11669: (p_transaction_step_id => p_transaction_step_id
11670: ,p_name => 'p_per_object_version_number') ;
11671: --
11672: l_employee_number := hr_transaction_api.get_varchar2_value

Line 11672: l_employee_number := hr_transaction_api.get_varchar2_value

11668: l_per_ovn := hr_transaction_api.get_number_value
11669: (p_transaction_step_id => p_transaction_step_id
11670: ,p_name => 'p_per_object_version_number') ;
11671: --
11672: l_employee_number := hr_transaction_api.get_varchar2_value
11673: (p_transaction_step_id => p_transaction_step_id
11674: ,p_name => 'p_employee_number') ;
11675:
11676: l_datetrack_update_mode :=

Line 11677: hr_transaction_api.get_varchar2_value

11673: (p_transaction_step_id => p_transaction_step_id
11674: ,p_name => 'p_employee_number') ;
11675:
11676: l_datetrack_update_mode :=
11677: hr_transaction_api.get_varchar2_value
11678: (p_transaction_step_id => p_transaction_step_id
11679: ,p_name =>upper('p_datetrack_update_mode'));
11680: --
11681: if l_datetrack_update_mode = 'CORRECT' then

Line 11690: l_effective_date := hr_transaction_api.get_DATE_value

11686: end if;
11687: --
11688: if not p_validate then
11689: --
11690: l_effective_date := hr_transaction_api.get_DATE_value
11691: (p_transaction_step_id => p_transaction_step_id
11692: ,p_name => 'P_PER_EFFECTIVE_DATE');
11693: --
11694: end if;

Line 11702: hr_transaction_api.get_date_value

11698: p_validate => p_validate
11699: --
11700: ,p_effective_date => l_effective_date
11701: /*
11702: hr_transaction_api.get_date_value
11703: (p_transaction_step_id => p_transaction_step_id
11704: ,p_name =>upper('p_per_effective_date'))
11705: */
11706: --

Line 11709: -- hr_transaction_api.get_varchar2_value

11705: */
11706: --
11707: ,p_datetrack_update_mode => l_datetrack_update_mode
11708: -- 9999
11709: -- hr_transaction_api.get_varchar2_value
11710: -- (p_transaction_step_id => p_transaction_step_id
11711: -- ,p_name =>upper('p_datetrack_update_mode'))
11712: --
11713: ,p_person_id =>

Line 11714: hr_transaction_api.get_number_value

11710: -- (p_transaction_step_id => p_transaction_step_id
11711: -- ,p_name =>upper('p_datetrack_update_mode'))
11712: --
11713: ,p_person_id =>
11714: hr_transaction_api.get_number_value
11715: (p_transaction_step_id => p_transaction_step_id
11716: ,p_name =>upper('p_cont_person_id'))
11717: --
11718: ,p_object_version_number => l_per_ovn

Line 11742: hr_transaction_api.get_number_value

11738: -- per_person_type_usages_f table.
11739: ---------------------------------------------------------------------------
11740: /*
11741: ,p_person_type_id =>
11742: hr_transaction_api.get_number_value
11743: (p_transaction_step_id => p_transaction_step_id
11744: ,p_name =>upper('p_person_type_id'))
11745: */
11746: --

Line 11748: hr_transaction_api.get_varchar2_value

11744: ,p_name =>upper('p_person_type_id'))
11745: */
11746: --
11747: ,p_last_name =>
11748: hr_transaction_api.get_varchar2_value
11749: (p_transaction_step_id => p_transaction_step_id
11750: ,p_name =>upper('p_last_name'))
11751: --
11752: ,p_applicant_number =>

Line 11753: hr_transaction_api.get_varchar2_value

11749: (p_transaction_step_id => p_transaction_step_id
11750: ,p_name =>upper('p_last_name'))
11751: --
11752: ,p_applicant_number =>
11753: hr_transaction_api.get_varchar2_value
11754: (p_transaction_step_id => p_transaction_step_id
11755: ,p_name =>upper('p_applicant_number'))
11756: --
11757: ,p_comments =>

Line 11758: hr_transaction_api.get_varchar2_value

11754: (p_transaction_step_id => p_transaction_step_id
11755: ,p_name =>upper('p_applicant_number'))
11756: --
11757: ,p_comments =>
11758: hr_transaction_api.get_varchar2_value
11759: (p_transaction_step_id => p_transaction_step_id
11760: ,p_name =>upper('p_per_comments'))
11761: --
11762: ,p_date_employee_data_verified =>

Line 11763: hr_transaction_api.get_date_value

11759: (p_transaction_step_id => p_transaction_step_id
11760: ,p_name =>upper('p_per_comments'))
11761: --
11762: ,p_date_employee_data_verified =>
11763: hr_transaction_api.get_date_value
11764: (p_transaction_step_id => p_transaction_step_id
11765: ,p_name =>upper('p_date_employee_data_verified'))
11766: --
11767: ,p_date_of_birth =>

Line 11768: hr_transaction_api.get_date_value

11764: (p_transaction_step_id => p_transaction_step_id
11765: ,p_name =>upper('p_date_employee_data_verified'))
11766: --
11767: ,p_date_of_birth =>
11768: hr_transaction_api.get_date_value
11769: (p_transaction_step_id => p_transaction_step_id
11770: ,p_name =>upper('p_date_of_birth'))
11771: --
11772: ,p_email_address =>

Line 11773: hr_transaction_api.get_varchar2_value

11769: (p_transaction_step_id => p_transaction_step_id
11770: ,p_name =>upper('p_date_of_birth'))
11771: --
11772: ,p_email_address =>
11773: hr_transaction_api.get_varchar2_value
11774: (p_transaction_step_id => p_transaction_step_id
11775: ,p_name =>upper('p_email_address'))
11776: --
11777: ,p_employee_number => l_employee_number

Line 11780: hr_transaction_api.get_varchar2_value

11776: --
11777: ,p_employee_number => l_employee_number
11778: --
11779: ,p_expense_check_send_to_addres =>
11780: hr_transaction_api.get_varchar2_value
11781: (p_transaction_step_id => p_transaction_step_id
11782: ,p_name =>upper('p_expense_check_send_to_addres'))
11783: --
11784: ,p_first_name =>

Line 11785: hr_transaction_api.get_varchar2_value

11781: (p_transaction_step_id => p_transaction_step_id
11782: ,p_name =>upper('p_expense_check_send_to_addres'))
11783: --
11784: ,p_first_name =>
11785: hr_transaction_api.get_varchar2_value
11786: (p_transaction_step_id => p_transaction_step_id
11787: ,p_name =>upper('p_first_name'))
11788: --
11789: ,p_known_as =>

Line 11790: hr_transaction_api.get_varchar2_value

11786: (p_transaction_step_id => p_transaction_step_id
11787: ,p_name =>upper('p_first_name'))
11788: --
11789: ,p_known_as =>
11790: hr_transaction_api.get_varchar2_value
11791: (p_transaction_step_id => p_transaction_step_id
11792: ,p_name =>upper('p_known_as'))
11793: --
11794: ,p_marital_status =>

Line 11795: hr_transaction_api.get_varchar2_value

11791: (p_transaction_step_id => p_transaction_step_id
11792: ,p_name =>upper('p_known_as'))
11793: --
11794: ,p_marital_status =>
11795: hr_transaction_api.get_varchar2_value
11796: (p_transaction_step_id => p_transaction_step_id
11797: ,p_name =>upper('p_marital_status'))
11798: --
11799: ,p_middle_names =>

Line 11800: hr_transaction_api.get_varchar2_value

11796: (p_transaction_step_id => p_transaction_step_id
11797: ,p_name =>upper('p_marital_status'))
11798: --
11799: ,p_middle_names =>
11800: hr_transaction_api.get_varchar2_value
11801: (p_transaction_step_id => p_transaction_step_id
11802: ,p_name =>upper('p_middle_names'))
11803: --
11804: ,p_nationality =>

Line 11805: hr_transaction_api.get_varchar2_value

11801: (p_transaction_step_id => p_transaction_step_id
11802: ,p_name =>upper('p_middle_names'))
11803: --
11804: ,p_nationality =>
11805: hr_transaction_api.get_varchar2_value
11806: (p_transaction_step_id => p_transaction_step_id
11807: ,p_name =>upper('p_nationality'))
11808: --
11809: ,p_national_identifier =>

Line 11810: hr_transaction_api.get_varchar2_value

11806: (p_transaction_step_id => p_transaction_step_id
11807: ,p_name =>upper('p_nationality'))
11808: --
11809: ,p_national_identifier =>
11810: hr_transaction_api.get_varchar2_value
11811: (p_transaction_step_id => p_transaction_step_id
11812: ,p_name =>upper('p_national_identifier'))
11813: --
11814: ,p_previous_last_name =>

Line 11815: hr_transaction_api.get_varchar2_value

11811: (p_transaction_step_id => p_transaction_step_id
11812: ,p_name =>upper('p_national_identifier'))
11813: --
11814: ,p_previous_last_name =>
11815: hr_transaction_api.get_varchar2_value
11816: (p_transaction_step_id => p_transaction_step_id
11817: ,p_name =>upper('p_previous_last_name'))
11818: --
11819: ,p_registered_disabled_flag =>

Line 11820: hr_transaction_api.get_varchar2_value

11816: (p_transaction_step_id => p_transaction_step_id
11817: ,p_name =>upper('p_previous_last_name'))
11818: --
11819: ,p_registered_disabled_flag =>
11820: hr_transaction_api.get_varchar2_value
11821: (p_transaction_step_id => p_transaction_step_id
11822: ,p_name =>upper('p_registered_disabled_flag'))
11823: --
11824: ,p_sex =>

Line 11825: hr_transaction_api.get_varchar2_value

11821: (p_transaction_step_id => p_transaction_step_id
11822: ,p_name =>upper('p_registered_disabled_flag'))
11823: --
11824: ,p_sex =>
11825: hr_transaction_api.get_varchar2_value
11826: (p_transaction_step_id => p_transaction_step_id
11827: ,p_name =>upper('p_sex'))
11828: --
11829: ,p_title =>

Line 11830: hr_transaction_api.get_varchar2_value

11826: (p_transaction_step_id => p_transaction_step_id
11827: ,p_name =>upper('p_sex'))
11828: --
11829: ,p_title =>
11830: hr_transaction_api.get_varchar2_value
11831: (p_transaction_step_id => p_transaction_step_id
11832: ,p_name =>upper('p_title'))
11833: --
11834: ,p_vendor_id =>

Line 11835: hr_transaction_api.get_number_value

11831: (p_transaction_step_id => p_transaction_step_id
11832: ,p_name =>upper('p_title'))
11833: --
11834: ,p_vendor_id =>
11835: hr_transaction_api.get_number_value
11836: (p_transaction_step_id => p_transaction_step_id
11837: ,p_name =>upper('p_vendor_id'))
11838: --
11839: ,p_work_telephone =>

Line 11840: hr_transaction_api.get_varchar2_value

11836: (p_transaction_step_id => p_transaction_step_id
11837: ,p_name =>upper('p_vendor_id'))
11838: --
11839: ,p_work_telephone =>
11840: hr_transaction_api.get_varchar2_value
11841: (p_transaction_step_id => p_transaction_step_id
11842: ,p_name =>upper('p_work_telephone'))
11843: --
11844: ,p_attribute_category =>

Line 11845: hr_transaction_api.get_varchar2_value

11841: (p_transaction_step_id => p_transaction_step_id
11842: ,p_name =>upper('p_work_telephone'))
11843: --
11844: ,p_attribute_category =>
11845: hr_transaction_api.get_varchar2_value
11846: (p_transaction_step_id => p_transaction_step_id
11847: ,p_name =>upper('p_attribute_category'))
11848: --
11849: ,p_attribute1 =>

Line 11850: hr_transaction_api.get_varchar2_value

11846: (p_transaction_step_id => p_transaction_step_id
11847: ,p_name =>upper('p_attribute_category'))
11848: --
11849: ,p_attribute1 =>
11850: hr_transaction_api.get_varchar2_value
11851: (p_transaction_step_id => p_transaction_step_id
11852: ,p_name =>upper('p_attribute1'))
11853: --
11854: ,p_attribute2 =>

Line 11855: hr_transaction_api.get_varchar2_value

11851: (p_transaction_step_id => p_transaction_step_id
11852: ,p_name =>upper('p_attribute1'))
11853: --
11854: ,p_attribute2 =>
11855: hr_transaction_api.get_varchar2_value
11856: (p_transaction_step_id => p_transaction_step_id
11857: ,p_name =>upper('p_attribute2'))
11858: --
11859: ,p_attribute3 =>

Line 11860: hr_transaction_api.get_varchar2_value

11856: (p_transaction_step_id => p_transaction_step_id
11857: ,p_name =>upper('p_attribute2'))
11858: --
11859: ,p_attribute3 =>
11860: hr_transaction_api.get_varchar2_value
11861: (p_transaction_step_id => p_transaction_step_id
11862: ,p_name =>upper('p_attribute3'))
11863: --
11864: ,p_attribute4 =>

Line 11865: hr_transaction_api.get_varchar2_value

11861: (p_transaction_step_id => p_transaction_step_id
11862: ,p_name =>upper('p_attribute3'))
11863: --
11864: ,p_attribute4 =>
11865: hr_transaction_api.get_varchar2_value
11866: (p_transaction_step_id => p_transaction_step_id
11867: ,p_name =>upper('p_attribute4'))
11868: --
11869: ,p_attribute5 =>

Line 11870: hr_transaction_api.get_varchar2_value

11866: (p_transaction_step_id => p_transaction_step_id
11867: ,p_name =>upper('p_attribute4'))
11868: --
11869: ,p_attribute5 =>
11870: hr_transaction_api.get_varchar2_value
11871: (p_transaction_step_id => p_transaction_step_id
11872: ,p_name =>upper('p_attribute5'))
11873: --
11874: ,p_attribute6 =>

Line 11875: hr_transaction_api.get_varchar2_value

11871: (p_transaction_step_id => p_transaction_step_id
11872: ,p_name =>upper('p_attribute5'))
11873: --
11874: ,p_attribute6 =>
11875: hr_transaction_api.get_varchar2_value
11876: (p_transaction_step_id => p_transaction_step_id
11877: ,p_name =>upper('p_attribute6'))
11878: --
11879: ,p_attribute7 =>

Line 11880: hr_transaction_api.get_varchar2_value

11876: (p_transaction_step_id => p_transaction_step_id
11877: ,p_name =>upper('p_attribute6'))
11878: --
11879: ,p_attribute7 =>
11880: hr_transaction_api.get_varchar2_value
11881: (p_transaction_step_id => p_transaction_step_id
11882: ,p_name =>upper('p_attribute7'))
11883: --
11884: ,p_attribute8 =>

Line 11885: hr_transaction_api.get_varchar2_value

11881: (p_transaction_step_id => p_transaction_step_id
11882: ,p_name =>upper('p_attribute7'))
11883: --
11884: ,p_attribute8 =>
11885: hr_transaction_api.get_varchar2_value
11886: (p_transaction_step_id => p_transaction_step_id
11887: ,p_name =>upper('p_attribute8'))
11888: --
11889: ,p_attribute9 =>

Line 11890: hr_transaction_api.get_varchar2_value

11886: (p_transaction_step_id => p_transaction_step_id
11887: ,p_name =>upper('p_attribute8'))
11888: --
11889: ,p_attribute9 =>
11890: hr_transaction_api.get_varchar2_value
11891: (p_transaction_step_id => p_transaction_step_id
11892: ,p_name =>upper('p_attribute9'))
11893: --
11894: ,p_attribute10 =>

Line 11895: hr_transaction_api.get_varchar2_value

11891: (p_transaction_step_id => p_transaction_step_id
11892: ,p_name =>upper('p_attribute9'))
11893: --
11894: ,p_attribute10 =>
11895: hr_transaction_api.get_varchar2_value
11896: (p_transaction_step_id => p_transaction_step_id
11897: ,p_name =>upper('p_attribute10'))
11898: --
11899: ,p_attribute11 =>

Line 11900: hr_transaction_api.get_varchar2_value

11896: (p_transaction_step_id => p_transaction_step_id
11897: ,p_name =>upper('p_attribute10'))
11898: --
11899: ,p_attribute11 =>
11900: hr_transaction_api.get_varchar2_value
11901: (p_transaction_step_id => p_transaction_step_id
11902: ,p_name =>upper('p_attribute11'))
11903: --
11904: ,p_attribute12 =>

Line 11905: hr_transaction_api.get_varchar2_value

11901: (p_transaction_step_id => p_transaction_step_id
11902: ,p_name =>upper('p_attribute11'))
11903: --
11904: ,p_attribute12 =>
11905: hr_transaction_api.get_varchar2_value
11906: (p_transaction_step_id => p_transaction_step_id
11907: ,p_name =>upper('p_attribute12'))
11908: --
11909: ,p_attribute13 =>

Line 11910: hr_transaction_api.get_varchar2_value

11906: (p_transaction_step_id => p_transaction_step_id
11907: ,p_name =>upper('p_attribute12'))
11908: --
11909: ,p_attribute13 =>
11910: hr_transaction_api.get_varchar2_value
11911: (p_transaction_step_id => p_transaction_step_id
11912: ,p_name =>upper('p_attribute13'))
11913: --
11914: ,p_attribute14 =>

Line 11915: hr_transaction_api.get_varchar2_value

11911: (p_transaction_step_id => p_transaction_step_id
11912: ,p_name =>upper('p_attribute13'))
11913: --
11914: ,p_attribute14 =>
11915: hr_transaction_api.get_varchar2_value
11916: (p_transaction_step_id => p_transaction_step_id
11917: ,p_name =>upper('p_attribute14'))
11918: --
11919: ,p_attribute15 =>

Line 11920: hr_transaction_api.get_varchar2_value

11916: (p_transaction_step_id => p_transaction_step_id
11917: ,p_name =>upper('p_attribute14'))
11918: --
11919: ,p_attribute15 =>
11920: hr_transaction_api.get_varchar2_value
11921: (p_transaction_step_id => p_transaction_step_id
11922: ,p_name =>upper('p_attribute15'))
11923: --
11924: ,p_attribute16 =>

Line 11925: hr_transaction_api.get_varchar2_value

11921: (p_transaction_step_id => p_transaction_step_id
11922: ,p_name =>upper('p_attribute15'))
11923: --
11924: ,p_attribute16 =>
11925: hr_transaction_api.get_varchar2_value
11926: (p_transaction_step_id => p_transaction_step_id
11927: ,p_name =>upper('p_attribute16'))
11928: --
11929: ,p_attribute17 =>

Line 11930: hr_transaction_api.get_varchar2_value

11926: (p_transaction_step_id => p_transaction_step_id
11927: ,p_name =>upper('p_attribute16'))
11928: --
11929: ,p_attribute17 =>
11930: hr_transaction_api.get_varchar2_value
11931: (p_transaction_step_id => p_transaction_step_id
11932: ,p_name =>upper('p_attribute17'))
11933: --
11934: ,p_attribute18 =>

Line 11935: hr_transaction_api.get_varchar2_value

11931: (p_transaction_step_id => p_transaction_step_id
11932: ,p_name =>upper('p_attribute17'))
11933: --
11934: ,p_attribute18 =>
11935: hr_transaction_api.get_varchar2_value
11936: (p_transaction_step_id => p_transaction_step_id
11937: ,p_name =>upper('p_attribute18'))
11938: --
11939: ,p_attribute19 =>

Line 11940: hr_transaction_api.get_varchar2_value

11936: (p_transaction_step_id => p_transaction_step_id
11937: ,p_name =>upper('p_attribute18'))
11938: --
11939: ,p_attribute19 =>
11940: hr_transaction_api.get_varchar2_value
11941: (p_transaction_step_id => p_transaction_step_id
11942: ,p_name =>upper('p_attribute19'))
11943: --
11944: ,p_attribute20 =>

Line 11945: hr_transaction_api.get_varchar2_value

11941: (p_transaction_step_id => p_transaction_step_id
11942: ,p_name =>upper('p_attribute19'))
11943: --
11944: ,p_attribute20 =>
11945: hr_transaction_api.get_varchar2_value
11946: (p_transaction_step_id => p_transaction_step_id
11947: ,p_name =>upper('p_attribute20'))
11948: --
11949: ,p_attribute21 =>

Line 11950: hr_transaction_api.get_varchar2_value

11946: (p_transaction_step_id => p_transaction_step_id
11947: ,p_name =>upper('p_attribute20'))
11948: --
11949: ,p_attribute21 =>
11950: hr_transaction_api.get_varchar2_value
11951: (p_transaction_step_id => p_transaction_step_id
11952: ,p_name =>upper('p_attribute21'))
11953: --
11954: ,p_attribute22 =>

Line 11955: hr_transaction_api.get_varchar2_value

11951: (p_transaction_step_id => p_transaction_step_id
11952: ,p_name =>upper('p_attribute21'))
11953: --
11954: ,p_attribute22 =>
11955: hr_transaction_api.get_varchar2_value
11956: (p_transaction_step_id => p_transaction_step_id
11957: ,p_name =>upper('p_attribute22'))
11958: --
11959: ,p_attribute23 =>

Line 11960: hr_transaction_api.get_varchar2_value

11956: (p_transaction_step_id => p_transaction_step_id
11957: ,p_name =>upper('p_attribute22'))
11958: --
11959: ,p_attribute23 =>
11960: hr_transaction_api.get_varchar2_value
11961: (p_transaction_step_id => p_transaction_step_id
11962: ,p_name =>upper('p_attribute23'))
11963: --
11964: ,p_attribute24 =>

Line 11965: hr_transaction_api.get_varchar2_value

11961: (p_transaction_step_id => p_transaction_step_id
11962: ,p_name =>upper('p_attribute23'))
11963: --
11964: ,p_attribute24 =>
11965: hr_transaction_api.get_varchar2_value
11966: (p_transaction_step_id => p_transaction_step_id
11967: ,p_name =>upper('p_attribute24'))
11968: --
11969: ,p_attribute25 =>

Line 11970: hr_transaction_api.get_varchar2_value

11966: (p_transaction_step_id => p_transaction_step_id
11967: ,p_name =>upper('p_attribute24'))
11968: --
11969: ,p_attribute25 =>
11970: hr_transaction_api.get_varchar2_value
11971: (p_transaction_step_id => p_transaction_step_id
11972: ,p_name =>upper('p_attribute25'))
11973: --
11974: ,p_attribute26 =>

Line 11975: hr_transaction_api.get_varchar2_value

11971: (p_transaction_step_id => p_transaction_step_id
11972: ,p_name =>upper('p_attribute25'))
11973: --
11974: ,p_attribute26 =>
11975: hr_transaction_api.get_varchar2_value
11976: (p_transaction_step_id => p_transaction_step_id
11977: ,p_name =>upper('p_attribute26'))
11978: --
11979: ,p_attribute27 =>

Line 11980: hr_transaction_api.get_varchar2_value

11976: (p_transaction_step_id => p_transaction_step_id
11977: ,p_name =>upper('p_attribute26'))
11978: --
11979: ,p_attribute27 =>
11980: hr_transaction_api.get_varchar2_value
11981: (p_transaction_step_id => p_transaction_step_id
11982: ,p_name =>upper('p_attribute27'))
11983: --
11984: ,p_attribute28 =>

Line 11985: hr_transaction_api.get_varchar2_value

11981: (p_transaction_step_id => p_transaction_step_id
11982: ,p_name =>upper('p_attribute27'))
11983: --
11984: ,p_attribute28 =>
11985: hr_transaction_api.get_varchar2_value
11986: (p_transaction_step_id => p_transaction_step_id
11987: ,p_name =>upper('p_attribute28'))
11988: --
11989: ,p_attribute29 =>

Line 11990: hr_transaction_api.get_varchar2_value

11986: (p_transaction_step_id => p_transaction_step_id
11987: ,p_name =>upper('p_attribute28'))
11988: --
11989: ,p_attribute29 =>
11990: hr_transaction_api.get_varchar2_value
11991: (p_transaction_step_id => p_transaction_step_id
11992: ,p_name =>upper('p_attribute29'))
11993: --
11994: ,p_attribute30 =>

Line 11995: hr_transaction_api.get_varchar2_value

11991: (p_transaction_step_id => p_transaction_step_id
11992: ,p_name =>upper('p_attribute29'))
11993: --
11994: ,p_attribute30 =>
11995: hr_transaction_api.get_varchar2_value
11996: (p_transaction_step_id => p_transaction_step_id
11997: ,p_name =>upper('p_attribute30'))
11998: --
11999: ,p_per_information_category =>

Line 12000: hr_transaction_api.get_varchar2_value

11996: (p_transaction_step_id => p_transaction_step_id
11997: ,p_name =>upper('p_attribute30'))
11998: --
11999: ,p_per_information_category =>
12000: hr_transaction_api.get_varchar2_value
12001: (p_transaction_step_id => p_transaction_step_id
12002: ,p_name =>upper('p_per_information_category'))
12003: --
12004: ,p_per_information1 =>

Line 12005: hr_transaction_api.get_varchar2_value

12001: (p_transaction_step_id => p_transaction_step_id
12002: ,p_name =>upper('p_per_information_category'))
12003: --
12004: ,p_per_information1 =>
12005: hr_transaction_api.get_varchar2_value
12006: (p_transaction_step_id => p_transaction_step_id
12007: ,p_name =>upper('p_per_information1'))
12008: --
12009: ,p_per_information2 =>

Line 12010: hr_transaction_api.get_varchar2_value

12006: (p_transaction_step_id => p_transaction_step_id
12007: ,p_name =>upper('p_per_information1'))
12008: --
12009: ,p_per_information2 =>
12010: hr_transaction_api.get_varchar2_value
12011: (p_transaction_step_id => p_transaction_step_id
12012: ,p_name =>upper('p_per_information2'))
12013: --
12014: ,p_per_information3 =>

Line 12015: hr_transaction_api.get_varchar2_value

12011: (p_transaction_step_id => p_transaction_step_id
12012: ,p_name =>upper('p_per_information2'))
12013: --
12014: ,p_per_information3 =>
12015: hr_transaction_api.get_varchar2_value
12016: (p_transaction_step_id => p_transaction_step_id
12017: ,p_name =>upper('p_per_information3'))
12018: --
12019: ,p_per_information4 =>

Line 12020: hr_transaction_api.get_varchar2_value

12016: (p_transaction_step_id => p_transaction_step_id
12017: ,p_name =>upper('p_per_information3'))
12018: --
12019: ,p_per_information4 =>
12020: hr_transaction_api.get_varchar2_value
12021: (p_transaction_step_id => p_transaction_step_id
12022: ,p_name =>upper('p_per_information4'))
12023: --
12024: ,p_per_information5 =>

Line 12025: hr_transaction_api.get_varchar2_value

12021: (p_transaction_step_id => p_transaction_step_id
12022: ,p_name =>upper('p_per_information4'))
12023: --
12024: ,p_per_information5 =>
12025: hr_transaction_api.get_varchar2_value
12026: (p_transaction_step_id => p_transaction_step_id
12027: ,p_name =>upper('p_per_information5'))
12028: --
12029: ,p_per_information6 =>

Line 12030: hr_transaction_api.get_varchar2_value

12026: (p_transaction_step_id => p_transaction_step_id
12027: ,p_name =>upper('p_per_information5'))
12028: --
12029: ,p_per_information6 =>
12030: hr_transaction_api.get_varchar2_value
12031: (p_transaction_step_id => p_transaction_step_id
12032: ,p_name =>upper('p_per_information6'))
12033: --
12034: ,p_per_information7 =>

Line 12035: hr_transaction_api.get_varchar2_value

12031: (p_transaction_step_id => p_transaction_step_id
12032: ,p_name =>upper('p_per_information6'))
12033: --
12034: ,p_per_information7 =>
12035: hr_transaction_api.get_varchar2_value
12036: (p_transaction_step_id => p_transaction_step_id
12037: ,p_name =>upper('p_per_information7'))
12038: --
12039: ,p_per_information8 =>

Line 12040: hr_transaction_api.get_varchar2_value

12036: (p_transaction_step_id => p_transaction_step_id
12037: ,p_name =>upper('p_per_information7'))
12038: --
12039: ,p_per_information8 =>
12040: hr_transaction_api.get_varchar2_value
12041: (p_transaction_step_id => p_transaction_step_id
12042: ,p_name =>upper('p_per_information8'))
12043: --
12044: ,p_per_information9 =>

Line 12045: hr_transaction_api.get_varchar2_value

12041: (p_transaction_step_id => p_transaction_step_id
12042: ,p_name =>upper('p_per_information8'))
12043: --
12044: ,p_per_information9 =>
12045: hr_transaction_api.get_varchar2_value
12046: (p_transaction_step_id => p_transaction_step_id
12047: ,p_name =>upper('p_per_information9'))
12048: --
12049: ,p_per_information10 =>

Line 12050: hr_transaction_api.get_varchar2_value

12046: (p_transaction_step_id => p_transaction_step_id
12047: ,p_name =>upper('p_per_information9'))
12048: --
12049: ,p_per_information10 =>
12050: hr_transaction_api.get_varchar2_value
12051: (p_transaction_step_id => p_transaction_step_id
12052: ,p_name =>upper('p_per_information10'))
12053: --
12054: ,p_per_information11 =>

Line 12055: hr_transaction_api.get_varchar2_value

12051: (p_transaction_step_id => p_transaction_step_id
12052: ,p_name =>upper('p_per_information10'))
12053: --
12054: ,p_per_information11 =>
12055: hr_transaction_api.get_varchar2_value
12056: (p_transaction_step_id => p_transaction_step_id
12057: ,p_name =>upper('p_per_information11'))
12058: --
12059: ,p_per_information12 =>

Line 12060: hr_transaction_api.get_varchar2_value

12056: (p_transaction_step_id => p_transaction_step_id
12057: ,p_name =>upper('p_per_information11'))
12058: --
12059: ,p_per_information12 =>
12060: hr_transaction_api.get_varchar2_value
12061: (p_transaction_step_id => p_transaction_step_id
12062: ,p_name =>upper('p_per_information12'))
12063: --
12064: ,p_per_information13 =>

Line 12065: hr_transaction_api.get_varchar2_value

12061: (p_transaction_step_id => p_transaction_step_id
12062: ,p_name =>upper('p_per_information12'))
12063: --
12064: ,p_per_information13 =>
12065: hr_transaction_api.get_varchar2_value
12066: (p_transaction_step_id => p_transaction_step_id
12067: ,p_name =>upper('p_per_information13'))
12068: --
12069: ,p_per_information14 =>

Line 12070: hr_transaction_api.get_varchar2_value

12066: (p_transaction_step_id => p_transaction_step_id
12067: ,p_name =>upper('p_per_information13'))
12068: --
12069: ,p_per_information14 =>
12070: hr_transaction_api.get_varchar2_value
12071: (p_transaction_step_id => p_transaction_step_id
12072: ,p_name =>upper('p_per_information14'))
12073: --
12074: ,p_per_information15 =>

Line 12075: hr_transaction_api.get_varchar2_value

12071: (p_transaction_step_id => p_transaction_step_id
12072: ,p_name =>upper('p_per_information14'))
12073: --
12074: ,p_per_information15 =>
12075: hr_transaction_api.get_varchar2_value
12076: (p_transaction_step_id => p_transaction_step_id
12077: ,p_name =>upper('p_per_information15'))
12078: --
12079: ,p_per_information16 =>

Line 12080: hr_transaction_api.get_varchar2_value

12076: (p_transaction_step_id => p_transaction_step_id
12077: ,p_name =>upper('p_per_information15'))
12078: --
12079: ,p_per_information16 =>
12080: hr_transaction_api.get_varchar2_value
12081: (p_transaction_step_id => p_transaction_step_id
12082: ,p_name =>upper('p_per_information16'))
12083: --
12084: ,p_per_information17 =>

Line 12085: hr_transaction_api.get_varchar2_value

12081: (p_transaction_step_id => p_transaction_step_id
12082: ,p_name =>upper('p_per_information16'))
12083: --
12084: ,p_per_information17 =>
12085: hr_transaction_api.get_varchar2_value
12086: (p_transaction_step_id => p_transaction_step_id
12087: ,p_name =>upper('p_per_information17'))
12088: --
12089: ,p_per_information18 =>

Line 12090: hr_transaction_api.get_varchar2_value

12086: (p_transaction_step_id => p_transaction_step_id
12087: ,p_name =>upper('p_per_information17'))
12088: --
12089: ,p_per_information18 =>
12090: hr_transaction_api.get_varchar2_value
12091: (p_transaction_step_id => p_transaction_step_id
12092: ,p_name =>upper('p_per_information18'))
12093: --
12094: ,p_per_information19 =>

Line 12095: hr_transaction_api.get_varchar2_value

12091: (p_transaction_step_id => p_transaction_step_id
12092: ,p_name =>upper('p_per_information18'))
12093: --
12094: ,p_per_information19 =>
12095: hr_transaction_api.get_varchar2_value
12096: (p_transaction_step_id => p_transaction_step_id
12097: ,p_name =>upper('p_per_information19'))
12098: --
12099: ,p_per_information20 =>

Line 12100: hr_transaction_api.get_varchar2_value

12096: (p_transaction_step_id => p_transaction_step_id
12097: ,p_name =>upper('p_per_information19'))
12098: --
12099: ,p_per_information20 =>
12100: hr_transaction_api.get_varchar2_value
12101: (p_transaction_step_id => p_transaction_step_id
12102: ,p_name =>upper('p_per_information20'))
12103: --
12104: ,p_per_information21 =>

Line 12105: hr_transaction_api.get_varchar2_value

12101: (p_transaction_step_id => p_transaction_step_id
12102: ,p_name =>upper('p_per_information20'))
12103: --
12104: ,p_per_information21 =>
12105: hr_transaction_api.get_varchar2_value
12106: (p_transaction_step_id => p_transaction_step_id
12107: ,p_name =>upper('p_per_information21'))
12108: --
12109: ,p_per_information22 =>

Line 12110: hr_transaction_api.get_varchar2_value

12106: (p_transaction_step_id => p_transaction_step_id
12107: ,p_name =>upper('p_per_information21'))
12108: --
12109: ,p_per_information22 =>
12110: hr_transaction_api.get_varchar2_value
12111: (p_transaction_step_id => p_transaction_step_id
12112: ,p_name =>upper('p_per_information22'))
12113: --
12114: ,p_per_information23 =>

Line 12115: hr_transaction_api.get_varchar2_value

12111: (p_transaction_step_id => p_transaction_step_id
12112: ,p_name =>upper('p_per_information22'))
12113: --
12114: ,p_per_information23 =>
12115: hr_transaction_api.get_varchar2_value
12116: (p_transaction_step_id => p_transaction_step_id
12117: ,p_name =>upper('p_per_information23'))
12118: --
12119: ,p_per_information24 =>

Line 12120: hr_transaction_api.get_varchar2_value

12116: (p_transaction_step_id => p_transaction_step_id
12117: ,p_name =>upper('p_per_information23'))
12118: --
12119: ,p_per_information24 =>
12120: hr_transaction_api.get_varchar2_value
12121: (p_transaction_step_id => p_transaction_step_id
12122: ,p_name =>upper('p_per_information24'))
12123: --
12124: ,p_per_information25 =>

Line 12125: hr_transaction_api.get_varchar2_value

12121: (p_transaction_step_id => p_transaction_step_id
12122: ,p_name =>upper('p_per_information24'))
12123: --
12124: ,p_per_information25 =>
12125: hr_transaction_api.get_varchar2_value
12126: (p_transaction_step_id => p_transaction_step_id
12127: ,p_name =>upper('p_per_information25'))
12128: --
12129: ,p_per_information26 =>

Line 12130: hr_transaction_api.get_varchar2_value

12126: (p_transaction_step_id => p_transaction_step_id
12127: ,p_name =>upper('p_per_information25'))
12128: --
12129: ,p_per_information26 =>
12130: hr_transaction_api.get_varchar2_value
12131: (p_transaction_step_id => p_transaction_step_id
12132: ,p_name =>upper('p_per_information26'))
12133: --
12134: ,p_per_information27 =>

Line 12135: hr_transaction_api.get_varchar2_value

12131: (p_transaction_step_id => p_transaction_step_id
12132: ,p_name =>upper('p_per_information26'))
12133: --
12134: ,p_per_information27 =>
12135: hr_transaction_api.get_varchar2_value
12136: (p_transaction_step_id => p_transaction_step_id
12137: ,p_name =>upper('p_per_information27'))
12138: --
12139: ,p_per_information28 =>

Line 12140: hr_transaction_api.get_varchar2_value

12136: (p_transaction_step_id => p_transaction_step_id
12137: ,p_name =>upper('p_per_information27'))
12138: --
12139: ,p_per_information28 =>
12140: hr_transaction_api.get_varchar2_value
12141: (p_transaction_step_id => p_transaction_step_id
12142: ,p_name =>upper('p_per_information28'))
12143: --
12144: ,p_per_information29 =>

Line 12145: hr_transaction_api.get_varchar2_value

12141: (p_transaction_step_id => p_transaction_step_id
12142: ,p_name =>upper('p_per_information28'))
12143: --
12144: ,p_per_information29 =>
12145: hr_transaction_api.get_varchar2_value
12146: (p_transaction_step_id => p_transaction_step_id
12147: ,p_name =>upper('p_per_information29'))
12148: --
12149: ,p_per_information30 =>

Line 12150: hr_transaction_api.get_varchar2_value

12146: (p_transaction_step_id => p_transaction_step_id
12147: ,p_name =>upper('p_per_information29'))
12148: --
12149: ,p_per_information30 =>
12150: hr_transaction_api.get_varchar2_value
12151: (p_transaction_step_id => p_transaction_step_id
12152: ,p_name =>upper('p_per_information30'))
12153: --
12154: ,p_date_of_death =>

Line 12155: hr_transaction_api.get_date_value

12151: (p_transaction_step_id => p_transaction_step_id
12152: ,p_name =>upper('p_per_information30'))
12153: --
12154: ,p_date_of_death =>
12155: hr_transaction_api.get_date_value
12156: (p_transaction_step_id => p_transaction_step_id
12157: ,p_name =>upper('p_date_of_death'))
12158: --
12159: ,p_background_check_status =>

Line 12160: hr_transaction_api.get_varchar2_value

12156: (p_transaction_step_id => p_transaction_step_id
12157: ,p_name =>upper('p_date_of_death'))
12158: --
12159: ,p_background_check_status =>
12160: hr_transaction_api.get_varchar2_value
12161: (p_transaction_step_id => p_transaction_step_id
12162: ,p_name =>upper('p_background_check_status'))
12163: --
12164: ,p_background_date_check =>

Line 12165: hr_transaction_api.get_date_value

12161: (p_transaction_step_id => p_transaction_step_id
12162: ,p_name =>upper('p_background_check_status'))
12163: --
12164: ,p_background_date_check =>
12165: hr_transaction_api.get_date_value
12166: (p_transaction_step_id => p_transaction_step_id
12167: ,p_name =>upper('p_background_date_check'))
12168: --
12169: ,p_blood_type =>

Line 12170: hr_transaction_api.get_varchar2_value

12166: (p_transaction_step_id => p_transaction_step_id
12167: ,p_name =>upper('p_background_date_check'))
12168: --
12169: ,p_blood_type =>
12170: hr_transaction_api.get_varchar2_value
12171: (p_transaction_step_id => p_transaction_step_id
12172: ,p_name =>upper('p_blood_type'))
12173: --
12174: ,p_correspondence_language =>

Line 12175: hr_transaction_api.get_varchar2_value

12171: (p_transaction_step_id => p_transaction_step_id
12172: ,p_name =>upper('p_blood_type'))
12173: --
12174: ,p_correspondence_language =>
12175: hr_transaction_api.get_varchar2_value
12176: (p_transaction_step_id => p_transaction_step_id
12177: ,p_name =>upper('p_correspondence_language'))
12178: --
12179: ,p_fast_path_employee =>

Line 12180: hr_transaction_api.get_varchar2_value

12176: (p_transaction_step_id => p_transaction_step_id
12177: ,p_name =>upper('p_correspondence_language'))
12178: --
12179: ,p_fast_path_employee =>
12180: hr_transaction_api.get_varchar2_value
12181: (p_transaction_step_id => p_transaction_step_id
12182: ,p_name =>upper('p_fast_path_employee'))
12183: --
12184: ,p_fte_capacity =>

Line 12185: hr_transaction_api.get_number_value

12181: (p_transaction_step_id => p_transaction_step_id
12182: ,p_name =>upper('p_fast_path_employee'))
12183: --
12184: ,p_fte_capacity =>
12185: hr_transaction_api.get_number_value
12186: (p_transaction_step_id => p_transaction_step_id
12187: ,p_name =>upper('p_fte_capacity'))
12188: --
12189: ,p_hold_applicant_date_until =>

Line 12190: hr_transaction_api.get_date_value

12186: (p_transaction_step_id => p_transaction_step_id
12187: ,p_name =>upper('p_fte_capacity'))
12188: --
12189: ,p_hold_applicant_date_until =>
12190: hr_transaction_api.get_date_value
12191: (p_transaction_step_id => p_transaction_step_id
12192: ,p_name =>upper('p_hold_applicant_date_until'))
12193: --
12194: ,p_honors =>

Line 12195: hr_transaction_api.get_varchar2_value

12191: (p_transaction_step_id => p_transaction_step_id
12192: ,p_name =>upper('p_hold_applicant_date_until'))
12193: --
12194: ,p_honors =>
12195: hr_transaction_api.get_varchar2_value
12196: (p_transaction_step_id => p_transaction_step_id
12197: ,p_name =>upper('p_honors'))
12198: --
12199: ,p_internal_location =>

Line 12200: hr_transaction_api.get_varchar2_value

12196: (p_transaction_step_id => p_transaction_step_id
12197: ,p_name =>upper('p_honors'))
12198: --
12199: ,p_internal_location =>
12200: hr_transaction_api.get_varchar2_value
12201: (p_transaction_step_id => p_transaction_step_id
12202: ,p_name =>upper('p_internal_location'))
12203: --
12204: ,p_last_medical_test_by =>

Line 12205: hr_transaction_api.get_varchar2_value

12201: (p_transaction_step_id => p_transaction_step_id
12202: ,p_name =>upper('p_internal_location'))
12203: --
12204: ,p_last_medical_test_by =>
12205: hr_transaction_api.get_varchar2_value
12206: (p_transaction_step_id => p_transaction_step_id
12207: ,p_name =>upper('p_last_medical_test_by'))
12208: --
12209: ,p_last_medical_test_date =>

Line 12210: hr_transaction_api.get_date_value

12206: (p_transaction_step_id => p_transaction_step_id
12207: ,p_name =>upper('p_last_medical_test_by'))
12208: --
12209: ,p_last_medical_test_date =>
12210: hr_transaction_api.get_date_value
12211: (p_transaction_step_id => p_transaction_step_id
12212: ,p_name =>upper('p_last_medical_test_date'))
12213: --
12214: ,p_mailstop =>

Line 12215: hr_transaction_api.get_varchar2_value

12211: (p_transaction_step_id => p_transaction_step_id
12212: ,p_name =>upper('p_last_medical_test_date'))
12213: --
12214: ,p_mailstop =>
12215: hr_transaction_api.get_varchar2_value
12216: (p_transaction_step_id => p_transaction_step_id
12217: ,p_name =>upper('p_mailstop'))
12218: --
12219: ,p_office_number =>

Line 12220: hr_transaction_api.get_varchar2_value

12216: (p_transaction_step_id => p_transaction_step_id
12217: ,p_name =>upper('p_mailstop'))
12218: --
12219: ,p_office_number =>
12220: hr_transaction_api.get_varchar2_value
12221: (p_transaction_step_id => p_transaction_step_id
12222: ,p_name =>upper('p_office_number'))
12223: --
12224: ,p_on_military_service =>

Line 12225: hr_transaction_api.get_varchar2_value

12221: (p_transaction_step_id => p_transaction_step_id
12222: ,p_name =>upper('p_office_number'))
12223: --
12224: ,p_on_military_service =>
12225: hr_transaction_api.get_varchar2_value
12226: (p_transaction_step_id => p_transaction_step_id
12227: ,p_name =>upper('p_on_military_service'))
12228: --
12229: ,p_pre_name_adjunct =>

Line 12230: hr_transaction_api.get_varchar2_value

12226: (p_transaction_step_id => p_transaction_step_id
12227: ,p_name =>upper('p_on_military_service'))
12228: --
12229: ,p_pre_name_adjunct =>
12230: hr_transaction_api.get_varchar2_value
12231: (p_transaction_step_id => p_transaction_step_id
12232: ,p_name =>upper('p_pre_name_adjunct'))
12233: --
12234: ,p_projected_start_date =>

Line 12235: hr_transaction_api.get_date_value

12231: (p_transaction_step_id => p_transaction_step_id
12232: ,p_name =>upper('p_pre_name_adjunct'))
12233: --
12234: ,p_projected_start_date =>
12235: hr_transaction_api.get_date_value
12236: (p_transaction_step_id => p_transaction_step_id
12237: ,p_name =>upper('p_projected_start_date'))
12238: --
12239: ,p_rehire_authorizor =>

Line 12240: hr_transaction_api.get_varchar2_value

12236: (p_transaction_step_id => p_transaction_step_id
12237: ,p_name =>upper('p_projected_start_date'))
12238: --
12239: ,p_rehire_authorizor =>
12240: hr_transaction_api.get_varchar2_value
12241: (p_transaction_step_id => p_transaction_step_id
12242: ,p_name =>upper('p_rehire_authorizor'))
12243: --
12244: ,p_rehire_recommendation =>

Line 12245: hr_transaction_api.get_varchar2_value

12241: (p_transaction_step_id => p_transaction_step_id
12242: ,p_name =>upper('p_rehire_authorizor'))
12243: --
12244: ,p_rehire_recommendation =>
12245: hr_transaction_api.get_varchar2_value
12246: (p_transaction_step_id => p_transaction_step_id
12247: ,p_name =>upper('p_rehire_recommendation'))
12248: --
12249: ,p_resume_exists =>

Line 12250: hr_transaction_api.get_varchar2_value

12246: (p_transaction_step_id => p_transaction_step_id
12247: ,p_name =>upper('p_rehire_recommendation'))
12248: --
12249: ,p_resume_exists =>
12250: hr_transaction_api.get_varchar2_value
12251: (p_transaction_step_id => p_transaction_step_id
12252: ,p_name =>upper('p_resume_exists'))
12253: --
12254: ,p_resume_last_updated =>

Line 12255: hr_transaction_api.get_date_value

12251: (p_transaction_step_id => p_transaction_step_id
12252: ,p_name =>upper('p_resume_exists'))
12253: --
12254: ,p_resume_last_updated =>
12255: hr_transaction_api.get_date_value
12256: (p_transaction_step_id => p_transaction_step_id
12257: ,p_name =>upper('p_resume_last_updated'))
12258: --
12259: ,p_second_passport_exists =>

Line 12260: hr_transaction_api.get_varchar2_value

12256: (p_transaction_step_id => p_transaction_step_id
12257: ,p_name =>upper('p_resume_last_updated'))
12258: --
12259: ,p_second_passport_exists =>
12260: hr_transaction_api.get_varchar2_value
12261: (p_transaction_step_id => p_transaction_step_id
12262: ,p_name =>upper('p_second_passport_exists'))
12263: --
12264: ,p_student_status =>

Line 12265: hr_transaction_api.get_varchar2_value

12261: (p_transaction_step_id => p_transaction_step_id
12262: ,p_name =>upper('p_second_passport_exists'))
12263: --
12264: ,p_student_status =>
12265: hr_transaction_api.get_varchar2_value
12266: (p_transaction_step_id => p_transaction_step_id
12267: ,p_name =>upper('p_student_status'))
12268: --
12269: ,p_work_schedule =>

Line 12270: hr_transaction_api.get_varchar2_value

12266: (p_transaction_step_id => p_transaction_step_id
12267: ,p_name =>upper('p_student_status'))
12268: --
12269: ,p_work_schedule =>
12270: hr_transaction_api.get_varchar2_value
12271: (p_transaction_step_id => p_transaction_step_id
12272: ,p_name =>upper('p_work_schedule'))
12273: --
12274: ,p_rehire_reason =>

Line 12275: hr_transaction_api.get_varchar2_value

12271: (p_transaction_step_id => p_transaction_step_id
12272: ,p_name =>upper('p_work_schedule'))
12273: --
12274: ,p_rehire_reason =>
12275: hr_transaction_api.get_varchar2_value
12276: (p_transaction_step_id => p_transaction_step_id
12277: ,p_name =>upper('p_rehire_reason'))
12278: --
12279: ,p_suffix =>

Line 12280: hr_transaction_api.get_varchar2_value

12276: (p_transaction_step_id => p_transaction_step_id
12277: ,p_name =>upper('p_rehire_reason'))
12278: --
12279: ,p_suffix =>
12280: hr_transaction_api.get_varchar2_value
12281: (p_transaction_step_id => p_transaction_step_id
12282: ,p_name =>upper('p_suffix'))
12283: --
12284: ,p_benefit_group_id =>

Line 12285: hr_transaction_api.get_number_value

12281: (p_transaction_step_id => p_transaction_step_id
12282: ,p_name =>upper('p_suffix'))
12283: --
12284: ,p_benefit_group_id =>
12285: hr_transaction_api.get_number_value
12286: (p_transaction_step_id => p_transaction_step_id
12287: ,p_name =>upper('p_benefit_group_id'))
12288: --
12289: ,p_receipt_of_death_cert_date =>

Line 12290: hr_transaction_api.get_date_value

12286: (p_transaction_step_id => p_transaction_step_id
12287: ,p_name =>upper('p_benefit_group_id'))
12288: --
12289: ,p_receipt_of_death_cert_date =>
12290: hr_transaction_api.get_date_value
12291: (p_transaction_step_id => p_transaction_step_id
12292: ,p_name =>upper('p_receipt_of_death_cert_date'))
12293: --
12294: ,p_coord_ben_med_pln_no =>

Line 12295: hr_transaction_api.get_varchar2_value

12291: (p_transaction_step_id => p_transaction_step_id
12292: ,p_name =>upper('p_receipt_of_death_cert_date'))
12293: --
12294: ,p_coord_ben_med_pln_no =>
12295: hr_transaction_api.get_varchar2_value
12296: (p_transaction_step_id => p_transaction_step_id
12297: ,p_name =>upper('p_coord_ben_med_pln_no'))
12298: --
12299: ,p_coord_ben_no_cvg_flag =>

Line 12300: hr_transaction_api.get_varchar2_value

12296: (p_transaction_step_id => p_transaction_step_id
12297: ,p_name =>upper('p_coord_ben_med_pln_no'))
12298: --
12299: ,p_coord_ben_no_cvg_flag =>
12300: hr_transaction_api.get_varchar2_value
12301: (p_transaction_step_id => p_transaction_step_id
12302: ,p_name =>upper('p_coord_ben_no_cvg_flag'))
12303: --
12304: ,p_uses_tobacco_flag =>

Line 12305: hr_transaction_api.get_varchar2_value

12301: (p_transaction_step_id => p_transaction_step_id
12302: ,p_name =>upper('p_coord_ben_no_cvg_flag'))
12303: --
12304: ,p_uses_tobacco_flag =>
12305: hr_transaction_api.get_varchar2_value
12306: (p_transaction_step_id => p_transaction_step_id
12307: ,p_name =>upper('p_uses_tobacco_flag'))
12308: --
12309: ,p_dpdnt_adoption_date =>

Line 12310: hr_transaction_api.get_date_value

12306: (p_transaction_step_id => p_transaction_step_id
12307: ,p_name =>upper('p_uses_tobacco_flag'))
12308: --
12309: ,p_dpdnt_adoption_date =>
12310: hr_transaction_api.get_date_value
12311: (p_transaction_step_id => p_transaction_step_id
12312: ,p_name =>upper('p_dpdnt_adoption_date'))
12313: --
12314: ,p_dpdnt_vlntry_svce_flag =>

Line 12315: hr_transaction_api.get_varchar2_value

12311: (p_transaction_step_id => p_transaction_step_id
12312: ,p_name =>upper('p_dpdnt_adoption_date'))
12313: --
12314: ,p_dpdnt_vlntry_svce_flag =>
12315: hr_transaction_api.get_varchar2_value
12316: (p_transaction_step_id => p_transaction_step_id
12317: ,p_name =>upper('p_dpdnt_vlntry_svce_flag'))
12318: --
12319: /*

Line 12326: hr_transaction_api.get_date_value

12322: -- and original_date_of_hire
12323: -- So not necessary to pass the parameter.
12324: --
12325: ,p_original_date_of_hire =>
12326: hr_transaction_api.get_date_value
12327: (p_transaction_step_id => p_transaction_step_id
12328: ,p_name =>upper('p_original_date_of_hire'))
12329: --
12330: ,p_adjusted_svc_date =>

Line 12331: hr_transaction_api.get_date_value

12327: (p_transaction_step_id => p_transaction_step_id
12328: ,p_name =>upper('p_original_date_of_hire'))
12329: --
12330: ,p_adjusted_svc_date =>
12331: hr_transaction_api.get_date_value
12332: (p_transaction_step_id => p_transaction_step_id
12333: ,p_name =>upper('p_adjusted_svc_date'))
12334: */
12335: --

Line 12337: hr_transaction_api.get_varchar2_value

12333: ,p_name =>upper('p_adjusted_svc_date'))
12334: */
12335: --
12336: ,p_town_of_birth =>
12337: hr_transaction_api.get_varchar2_value
12338: (p_transaction_step_id => p_transaction_step_id
12339: ,p_name =>upper('p_town_of_birth'))
12340: --
12341: ,p_region_of_birth =>

Line 12342: hr_transaction_api.get_varchar2_value

12338: (p_transaction_step_id => p_transaction_step_id
12339: ,p_name =>upper('p_town_of_birth'))
12340: --
12341: ,p_region_of_birth =>
12342: hr_transaction_api.get_varchar2_value
12343: (p_transaction_step_id => p_transaction_step_id
12344: ,p_name =>upper('p_region_of_birth'))
12345: --
12346: ,p_country_of_birth =>

Line 12347: hr_transaction_api.get_varchar2_value

12343: (p_transaction_step_id => p_transaction_step_id
12344: ,p_name =>upper('p_region_of_birth'))
12345: --
12346: ,p_country_of_birth =>
12347: hr_transaction_api.get_varchar2_value
12348: (p_transaction_step_id => p_transaction_step_id
12349: ,p_name =>upper('p_country_of_birth'))
12350: --
12351: ,p_global_person_id =>

Line 12352: hr_transaction_api.get_varchar2_value

12348: (p_transaction_step_id => p_transaction_step_id
12349: ,p_name =>upper('p_country_of_birth'))
12350: --
12351: ,p_global_person_id =>
12352: hr_transaction_api.get_varchar2_value
12353: (p_transaction_step_id => p_transaction_step_id
12354: ,p_name =>upper('p_global_person_id'))
12355: --
12356: ,p_effective_start_date => l_effective_start_date

Line 12390: l_effective_date := hr_transaction_api.get_DATE_value

12386: -- For normal commit the effective date should come from txn tbales.
12387: --
12388: if not p_validate then
12389: --
12390: l_effective_date := hr_transaction_api.get_DATE_value
12391: (p_transaction_step_id => p_transaction_step_id
12392: ,p_name => 'P_CONT_EFFECTIVE_DATE');
12393: --
12394: end if;

Line 12401: l_cont_rec_changed := hr_transaction_api.get_varchar2_value

12397: --
12398: -- Get the contact_relationship_id first. If it is null, that means
12399: -- this is error and raise the error. -- add the error name 99999.
12400: --
12401: l_cont_rec_changed := hr_transaction_api.get_varchar2_value
12402: (p_transaction_step_id => p_transaction_step_id
12403: ,p_name =>upper( 'p_cont_rec_changed'));
12404:
12405: --

Line 12406: l_contact_relationship_id := hr_transaction_api.get_number_value

12402: (p_transaction_step_id => p_transaction_step_id
12403: ,p_name =>upper( 'p_cont_rec_changed'));
12404:
12405: --
12406: l_contact_relationship_id := hr_transaction_api.get_number_value
12407: (p_transaction_step_id => p_transaction_step_id
12408: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
12409: --
12410: l_ovn := hr_transaction_api.get_number_value

Line 12410: l_ovn := hr_transaction_api.get_number_value

12406: l_contact_relationship_id := hr_transaction_api.get_number_value
12407: (p_transaction_step_id => p_transaction_step_id
12408: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
12409: --
12410: l_ovn := hr_transaction_api.get_number_value
12411: (p_transaction_step_id => p_transaction_step_id
12412: ,p_name => 'P_CONT_OBJECT_VERSION_NUMBER');
12413:
12414: --

Line 12415: l_action := hr_transaction_api.get_varchar2_value

12411: (p_transaction_step_id => p_transaction_step_id
12412: ,p_name => 'P_CONT_OBJECT_VERSION_NUMBER');
12413:
12414: --
12415: l_action := hr_transaction_api.get_varchar2_value
12416: (p_transaction_step_id => p_transaction_step_id
12417: ,p_name =>upper( 'p_action'));
12418: --
12419: l_orig_rel_type := hr_transaction_api.get_VARCHAR2_value

Line 12419: l_orig_rel_type := hr_transaction_api.get_VARCHAR2_value

12415: l_action := hr_transaction_api.get_varchar2_value
12416: (p_transaction_step_id => p_transaction_step_id
12417: ,p_name =>upper( 'p_action'));
12418: --
12419: l_orig_rel_type := hr_transaction_api.get_VARCHAR2_value
12420: (p_transaction_step_id => p_transaction_step_id
12421: ,p_name => upper('p_orig_rel_type'));
12422:
12423: --

Line 12425: hr_transaction_api.get_varchar2_value

12421: ,p_name => upper('p_orig_rel_type'));
12422:
12423: --
12424: l_contact_operation :=
12425: hr_transaction_api.get_varchar2_value
12426: (p_transaction_step_id => p_transaction_step_id
12427: ,p_name =>upper( 'p_contact_operation'));
12428:
12429:

Line 12437: if (hr_transaction_api.get_VARCHAR2_value

12433: --
12434: -- If shared residence flag is yes then delete the contacts primary
12435: -- address.
12436: --
12437: if (hr_transaction_api.get_VARCHAR2_value
12438: (p_transaction_step_id => p_transaction_step_id
12439: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG') = 'Y') then
12440: --
12441: p_del_cont_primary_addr

Line 12443: => hr_transaction_api.get_NUMBER_value

12439: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG') = 'Y') then
12440: --
12441: p_del_cont_primary_addr
12442: (p_contact_relationship_id
12443: => hr_transaction_api.get_NUMBER_value
12444: (p_transaction_step_id => p_transaction_step_id
12445: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12446: );
12447: --

Line 12450: l_date_sart := hr_transaction_api.get_DATE_value

12446: );
12447: --
12448: end if;
12449:
12450: l_date_sart := hr_transaction_api.get_DATE_value
12451: (p_transaction_step_id => p_transaction_step_id
12452: ,p_name => 'P_DATE_START');
12453: --
12454: l_primary_contact_flag :=

Line 12455: hr_transaction_api.get_VARCHAR2_value

12451: (p_transaction_step_id => p_transaction_step_id
12452: ,p_name => 'P_DATE_START');
12453: --
12454: l_primary_contact_flag :=
12455: hr_transaction_api.get_VARCHAR2_value
12456: (p_transaction_step_id => p_transaction_step_id
12457: ,p_name => 'P_PRIMARY_CONTACT_FLAG');
12458: if l_primary_contact_flag = null then
12459: l_primary_contact_flag := 'N';

Line 12471: hr_transaction_api.get_NUMBER_value

12467: ---if earlier start date of contact is greater than or equals to the new date, then delete the contact,
12468: ---and create a new one. Else update the contact, and then create one.
12469:
12470: l_old_contact_relationship_id :=
12471: hr_transaction_api.get_NUMBER_value
12472: (p_transaction_step_id => p_transaction_step_id
12473: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
12474:
12475: begin

Line 12502: hr_transaction_api.get_NUMBER_value

12498:
12499: /*hr_contact_rel_api.delete_contact_relationship(
12500: p_validate => p_validate
12501: ,P_CONTACT_RELATIONSHIP_ID =>
12502: hr_transaction_api.get_NUMBER_value
12503: (p_transaction_step_id => p_transaction_step_id
12504: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12505: ,p_object_version_number => l_ovn
12506: );

Line 12508: l_CONTACT_RELATIONSHIP_ID_1 := hr_transaction_api.get_number_value

12504: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12505: ,p_object_version_number => l_ovn
12506: );
12507: */
12508: l_CONTACT_RELATIONSHIP_ID_1 := hr_transaction_api.get_number_value
12509: (p_transaction_step_id => p_transaction_step_id
12510: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
12511:
12512: select rowid

Line 12522: , X_Business_Group_Id => hr_transaction_api.get_NUMBER_value

12518:
12519: PER_CONTACT_RELATIONSHIPS_PKG.Update_Row(
12520: X_Rowid => p_rowid
12521: , X_Contact_Relationship_Id => l_CONTACT_RELATIONSHIP_ID_1
12522: , X_Business_Group_Id => hr_transaction_api.get_NUMBER_value
12523: (p_transaction_step_id => p_transaction_step_id
12524: ,p_name => 'P_BUSINESS_GROUP_ID')
12525: , X_Person_Id => hr_transaction_api.get_number_value
12526: (p_transaction_step_id => p_transaction_step_id

Line 12525: , X_Person_Id => hr_transaction_api.get_number_value

12521: , X_Contact_Relationship_Id => l_CONTACT_RELATIONSHIP_ID_1
12522: , X_Business_Group_Id => hr_transaction_api.get_NUMBER_value
12523: (p_transaction_step_id => p_transaction_step_id
12524: ,p_name => 'P_BUSINESS_GROUP_ID')
12525: , X_Person_Id => hr_transaction_api.get_number_value
12526: (p_transaction_step_id => p_transaction_step_id
12527: ,p_name =>upper('p_person_id'))
12528: , X_Contact_Person_Id => hr_transaction_api.get_number_value
12529: (p_transaction_step_id => p_transaction_step_id

Line 12528: , X_Contact_Person_Id => hr_transaction_api.get_number_value

12524: ,p_name => 'P_BUSINESS_GROUP_ID')
12525: , X_Person_Id => hr_transaction_api.get_number_value
12526: (p_transaction_step_id => p_transaction_step_id
12527: ,p_name =>upper('p_person_id'))
12528: , X_Contact_Person_Id => hr_transaction_api.get_number_value
12529: (p_transaction_step_id => p_transaction_step_id
12530: ,p_name =>upper('p_cont_person_id'))
12531: , X_Contact_Type => hr_transaction_api.get_VARCHAR2_value
12532: (p_transaction_step_id => p_transaction_step_id

Line 12531: , X_Contact_Type => hr_transaction_api.get_VARCHAR2_value

12527: ,p_name =>upper('p_person_id'))
12528: , X_Contact_Person_Id => hr_transaction_api.get_number_value
12529: (p_transaction_step_id => p_transaction_step_id
12530: ,p_name =>upper('p_cont_person_id'))
12531: , X_Contact_Type => hr_transaction_api.get_VARCHAR2_value
12532: (p_transaction_step_id => p_transaction_step_id
12533: ,p_name => 'P_CONTACT_TYPE')
12534: , X_Comments => hr_transaction_api.get_VARCHAR2_value
12535: (p_transaction_step_id => p_transaction_step_id

Line 12534: , X_Comments => hr_transaction_api.get_VARCHAR2_value

12530: ,p_name =>upper('p_cont_person_id'))
12531: , X_Contact_Type => hr_transaction_api.get_VARCHAR2_value
12532: (p_transaction_step_id => p_transaction_step_id
12533: ,p_name => 'P_CONTACT_TYPE')
12534: , X_Comments => hr_transaction_api.get_VARCHAR2_value
12535: (p_transaction_step_id => p_transaction_step_id
12536: ,p_name => 'P_CTR_COMMENTS')
12537: , X_Bondholder_Flag => hr_transaction_api.get_VARCHAR2_value
12538: (p_transaction_step_id => p_transaction_step_id

Line 12537: , X_Bondholder_Flag => hr_transaction_api.get_VARCHAR2_value

12533: ,p_name => 'P_CONTACT_TYPE')
12534: , X_Comments => hr_transaction_api.get_VARCHAR2_value
12535: (p_transaction_step_id => p_transaction_step_id
12536: ,p_name => 'P_CTR_COMMENTS')
12537: , X_Bondholder_Flag => hr_transaction_api.get_VARCHAR2_value
12538: (p_transaction_step_id => p_transaction_step_id
12539: ,p_name => 'P_BONDHOLDER_FLAG')
12540: , X_Third_Party_Pay_Flag => hr_transaction_api.get_VARCHAR2_value
12541: (p_transaction_step_id => p_transaction_step_id

Line 12540: , X_Third_Party_Pay_Flag => hr_transaction_api.get_VARCHAR2_value

12536: ,p_name => 'P_CTR_COMMENTS')
12537: , X_Bondholder_Flag => hr_transaction_api.get_VARCHAR2_value
12538: (p_transaction_step_id => p_transaction_step_id
12539: ,p_name => 'P_BONDHOLDER_FLAG')
12540: , X_Third_Party_Pay_Flag => hr_transaction_api.get_VARCHAR2_value
12541: (p_transaction_step_id => p_transaction_step_id
12542: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
12543: , X_Primary_Contact_Flag => hr_transaction_api.get_VARCHAR2_value
12544: (p_transaction_step_id => p_transaction_step_id

Line 12543: , X_Primary_Contact_Flag => hr_transaction_api.get_VARCHAR2_value

12539: ,p_name => 'P_BONDHOLDER_FLAG')
12540: , X_Third_Party_Pay_Flag => hr_transaction_api.get_VARCHAR2_value
12541: (p_transaction_step_id => p_transaction_step_id
12542: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
12543: , X_Primary_Contact_Flag => hr_transaction_api.get_VARCHAR2_value
12544: (p_transaction_step_id => p_transaction_step_id
12545: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
12546: , X_Cont_Attribute_Category => hr_transaction_api.get_VARCHAR2_value
12547: (p_transaction_step_id => p_transaction_step_id

Line 12546: , X_Cont_Attribute_Category => hr_transaction_api.get_VARCHAR2_value

12542: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
12543: , X_Primary_Contact_Flag => hr_transaction_api.get_VARCHAR2_value
12544: (p_transaction_step_id => p_transaction_step_id
12545: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
12546: , X_Cont_Attribute_Category => hr_transaction_api.get_VARCHAR2_value
12547: (p_transaction_step_id => p_transaction_step_id
12548: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12549: , X_Cont_Attribute1 => hr_transaction_api.get_VARCHAR2_value
12550: (p_transaction_step_id => p_transaction_step_id

Line 12549: , X_Cont_Attribute1 => hr_transaction_api.get_VARCHAR2_value

12545: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
12546: , X_Cont_Attribute_Category => hr_transaction_api.get_VARCHAR2_value
12547: (p_transaction_step_id => p_transaction_step_id
12548: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12549: , X_Cont_Attribute1 => hr_transaction_api.get_VARCHAR2_value
12550: (p_transaction_step_id => p_transaction_step_id
12551: ,p_name => 'P_CONT_ATTRIBUTE1')
12552: , X_Cont_Attribute2 => hr_transaction_api.get_VARCHAR2_value
12553: (p_transaction_step_id => p_transaction_step_id

Line 12552: , X_Cont_Attribute2 => hr_transaction_api.get_VARCHAR2_value

12548: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12549: , X_Cont_Attribute1 => hr_transaction_api.get_VARCHAR2_value
12550: (p_transaction_step_id => p_transaction_step_id
12551: ,p_name => 'P_CONT_ATTRIBUTE1')
12552: , X_Cont_Attribute2 => hr_transaction_api.get_VARCHAR2_value
12553: (p_transaction_step_id => p_transaction_step_id
12554: ,p_name => 'P_CONT_ATTRIBUTE2')
12555: , X_Cont_Attribute3 => hr_transaction_api.get_VARCHAR2_value
12556: (p_transaction_step_id => p_transaction_step_id

Line 12555: , X_Cont_Attribute3 => hr_transaction_api.get_VARCHAR2_value

12551: ,p_name => 'P_CONT_ATTRIBUTE1')
12552: , X_Cont_Attribute2 => hr_transaction_api.get_VARCHAR2_value
12553: (p_transaction_step_id => p_transaction_step_id
12554: ,p_name => 'P_CONT_ATTRIBUTE2')
12555: , X_Cont_Attribute3 => hr_transaction_api.get_VARCHAR2_value
12556: (p_transaction_step_id => p_transaction_step_id
12557: ,p_name => 'P_CONT_ATTRIBUTE3')
12558: , X_Cont_Attribute4 => hr_transaction_api.get_VARCHAR2_value
12559: (p_transaction_step_id => p_transaction_step_id

Line 12558: , X_Cont_Attribute4 => hr_transaction_api.get_VARCHAR2_value

12554: ,p_name => 'P_CONT_ATTRIBUTE2')
12555: , X_Cont_Attribute3 => hr_transaction_api.get_VARCHAR2_value
12556: (p_transaction_step_id => p_transaction_step_id
12557: ,p_name => 'P_CONT_ATTRIBUTE3')
12558: , X_Cont_Attribute4 => hr_transaction_api.get_VARCHAR2_value
12559: (p_transaction_step_id => p_transaction_step_id
12560: ,p_name => 'P_CONT_ATTRIBUTE4')
12561: , X_Cont_Attribute5 => hr_transaction_api.get_VARCHAR2_value
12562: (p_transaction_step_id => p_transaction_step_id

Line 12561: , X_Cont_Attribute5 => hr_transaction_api.get_VARCHAR2_value

12557: ,p_name => 'P_CONT_ATTRIBUTE3')
12558: , X_Cont_Attribute4 => hr_transaction_api.get_VARCHAR2_value
12559: (p_transaction_step_id => p_transaction_step_id
12560: ,p_name => 'P_CONT_ATTRIBUTE4')
12561: , X_Cont_Attribute5 => hr_transaction_api.get_VARCHAR2_value
12562: (p_transaction_step_id => p_transaction_step_id
12563: ,p_name => 'P_CONT_ATTRIBUTE5')
12564: , X_Cont_Attribute6 => hr_transaction_api.get_VARCHAR2_value
12565: (p_transaction_step_id => p_transaction_step_id

Line 12564: , X_Cont_Attribute6 => hr_transaction_api.get_VARCHAR2_value

12560: ,p_name => 'P_CONT_ATTRIBUTE4')
12561: , X_Cont_Attribute5 => hr_transaction_api.get_VARCHAR2_value
12562: (p_transaction_step_id => p_transaction_step_id
12563: ,p_name => 'P_CONT_ATTRIBUTE5')
12564: , X_Cont_Attribute6 => hr_transaction_api.get_VARCHAR2_value
12565: (p_transaction_step_id => p_transaction_step_id
12566: ,p_name => 'P_CONT_ATTRIBUTE6')
12567: , X_Cont_Attribute7 => hr_transaction_api.get_VARCHAR2_value
12568: (p_transaction_step_id => p_transaction_step_id

Line 12567: , X_Cont_Attribute7 => hr_transaction_api.get_VARCHAR2_value

12563: ,p_name => 'P_CONT_ATTRIBUTE5')
12564: , X_Cont_Attribute6 => hr_transaction_api.get_VARCHAR2_value
12565: (p_transaction_step_id => p_transaction_step_id
12566: ,p_name => 'P_CONT_ATTRIBUTE6')
12567: , X_Cont_Attribute7 => hr_transaction_api.get_VARCHAR2_value
12568: (p_transaction_step_id => p_transaction_step_id
12569: ,p_name => 'P_CONT_ATTRIBUTE7')
12570: , X_Cont_Attribute8 => hr_transaction_api.get_VARCHAR2_value
12571: (p_transaction_step_id => p_transaction_step_id

Line 12570: , X_Cont_Attribute8 => hr_transaction_api.get_VARCHAR2_value

12566: ,p_name => 'P_CONT_ATTRIBUTE6')
12567: , X_Cont_Attribute7 => hr_transaction_api.get_VARCHAR2_value
12568: (p_transaction_step_id => p_transaction_step_id
12569: ,p_name => 'P_CONT_ATTRIBUTE7')
12570: , X_Cont_Attribute8 => hr_transaction_api.get_VARCHAR2_value
12571: (p_transaction_step_id => p_transaction_step_id
12572: ,p_name => 'P_CONT_ATTRIBUTE8')
12573: , X_Cont_Attribute9 => hr_transaction_api.get_VARCHAR2_value
12574: (p_transaction_step_id => p_transaction_step_id

Line 12573: , X_Cont_Attribute9 => hr_transaction_api.get_VARCHAR2_value

12569: ,p_name => 'P_CONT_ATTRIBUTE7')
12570: , X_Cont_Attribute8 => hr_transaction_api.get_VARCHAR2_value
12571: (p_transaction_step_id => p_transaction_step_id
12572: ,p_name => 'P_CONT_ATTRIBUTE8')
12573: , X_Cont_Attribute9 => hr_transaction_api.get_VARCHAR2_value
12574: (p_transaction_step_id => p_transaction_step_id
12575: ,p_name => 'P_CONT_ATTRIBUTE9')
12576: , X_Cont_Attribute10 => hr_transaction_api.get_VARCHAR2_value
12577: (p_transaction_step_id => p_transaction_step_id

Line 12576: , X_Cont_Attribute10 => hr_transaction_api.get_VARCHAR2_value

12572: ,p_name => 'P_CONT_ATTRIBUTE8')
12573: , X_Cont_Attribute9 => hr_transaction_api.get_VARCHAR2_value
12574: (p_transaction_step_id => p_transaction_step_id
12575: ,p_name => 'P_CONT_ATTRIBUTE9')
12576: , X_Cont_Attribute10 => hr_transaction_api.get_VARCHAR2_value
12577: (p_transaction_step_id => p_transaction_step_id
12578: ,p_name => 'P_CONT_ATTRIBUTE10')
12579: , X_Cont_Attribute11 => hr_transaction_api.get_VARCHAR2_value
12580: (p_transaction_step_id => p_transaction_step_id

Line 12579: , X_Cont_Attribute11 => hr_transaction_api.get_VARCHAR2_value

12575: ,p_name => 'P_CONT_ATTRIBUTE9')
12576: , X_Cont_Attribute10 => hr_transaction_api.get_VARCHAR2_value
12577: (p_transaction_step_id => p_transaction_step_id
12578: ,p_name => 'P_CONT_ATTRIBUTE10')
12579: , X_Cont_Attribute11 => hr_transaction_api.get_VARCHAR2_value
12580: (p_transaction_step_id => p_transaction_step_id
12581: ,p_name => 'P_CONT_ATTRIBUTE11')
12582: , X_Cont_Attribute12 => hr_transaction_api.get_VARCHAR2_value
12583: (p_transaction_step_id => p_transaction_step_id

Line 12582: , X_Cont_Attribute12 => hr_transaction_api.get_VARCHAR2_value

12578: ,p_name => 'P_CONT_ATTRIBUTE10')
12579: , X_Cont_Attribute11 => hr_transaction_api.get_VARCHAR2_value
12580: (p_transaction_step_id => p_transaction_step_id
12581: ,p_name => 'P_CONT_ATTRIBUTE11')
12582: , X_Cont_Attribute12 => hr_transaction_api.get_VARCHAR2_value
12583: (p_transaction_step_id => p_transaction_step_id
12584: ,p_name => 'P_CONT_ATTRIBUTE12')
12585: , X_Cont_Attribute13 => hr_transaction_api.get_VARCHAR2_value
12586: (p_transaction_step_id => p_transaction_step_id

Line 12585: , X_Cont_Attribute13 => hr_transaction_api.get_VARCHAR2_value

12581: ,p_name => 'P_CONT_ATTRIBUTE11')
12582: , X_Cont_Attribute12 => hr_transaction_api.get_VARCHAR2_value
12583: (p_transaction_step_id => p_transaction_step_id
12584: ,p_name => 'P_CONT_ATTRIBUTE12')
12585: , X_Cont_Attribute13 => hr_transaction_api.get_VARCHAR2_value
12586: (p_transaction_step_id => p_transaction_step_id
12587: ,p_name => 'P_CONT_ATTRIBUTE13')
12588: , X_Cont_Attribute14 => hr_transaction_api.get_VARCHAR2_value
12589: (p_transaction_step_id => p_transaction_step_id

Line 12588: , X_Cont_Attribute14 => hr_transaction_api.get_VARCHAR2_value

12584: ,p_name => 'P_CONT_ATTRIBUTE12')
12585: , X_Cont_Attribute13 => hr_transaction_api.get_VARCHAR2_value
12586: (p_transaction_step_id => p_transaction_step_id
12587: ,p_name => 'P_CONT_ATTRIBUTE13')
12588: , X_Cont_Attribute14 => hr_transaction_api.get_VARCHAR2_value
12589: (p_transaction_step_id => p_transaction_step_id
12590: ,p_name => 'P_CONT_ATTRIBUTE14')
12591: , X_Cont_Attribute15 => hr_transaction_api.get_VARCHAR2_value
12592: (p_transaction_step_id => p_transaction_step_id

Line 12591: , X_Cont_Attribute15 => hr_transaction_api.get_VARCHAR2_value

12587: ,p_name => 'P_CONT_ATTRIBUTE13')
12588: , X_Cont_Attribute14 => hr_transaction_api.get_VARCHAR2_value
12589: (p_transaction_step_id => p_transaction_step_id
12590: ,p_name => 'P_CONT_ATTRIBUTE14')
12591: , X_Cont_Attribute15 => hr_transaction_api.get_VARCHAR2_value
12592: (p_transaction_step_id => p_transaction_step_id
12593: ,p_name => 'P_CONT_ATTRIBUTE15')
12594: , X_Cont_Attribute16 => hr_transaction_api.get_VARCHAR2_value
12595: (p_transaction_step_id => p_transaction_step_id

Line 12594: , X_Cont_Attribute16 => hr_transaction_api.get_VARCHAR2_value

12590: ,p_name => 'P_CONT_ATTRIBUTE14')
12591: , X_Cont_Attribute15 => hr_transaction_api.get_VARCHAR2_value
12592: (p_transaction_step_id => p_transaction_step_id
12593: ,p_name => 'P_CONT_ATTRIBUTE15')
12594: , X_Cont_Attribute16 => hr_transaction_api.get_VARCHAR2_value
12595: (p_transaction_step_id => p_transaction_step_id
12596: ,p_name => 'P_CONT_ATTRIBUTE16')
12597: , X_Cont_Attribute17 => hr_transaction_api.get_VARCHAR2_value
12598: (p_transaction_step_id => p_transaction_step_id

Line 12597: , X_Cont_Attribute17 => hr_transaction_api.get_VARCHAR2_value

12593: ,p_name => 'P_CONT_ATTRIBUTE15')
12594: , X_Cont_Attribute16 => hr_transaction_api.get_VARCHAR2_value
12595: (p_transaction_step_id => p_transaction_step_id
12596: ,p_name => 'P_CONT_ATTRIBUTE16')
12597: , X_Cont_Attribute17 => hr_transaction_api.get_VARCHAR2_value
12598: (p_transaction_step_id => p_transaction_step_id
12599: ,p_name => 'P_CONT_ATTRIBUTE17')
12600: , X_Cont_Attribute18 => hr_transaction_api.get_VARCHAR2_value
12601: (p_transaction_step_id => p_transaction_step_id

Line 12600: , X_Cont_Attribute18 => hr_transaction_api.get_VARCHAR2_value

12596: ,p_name => 'P_CONT_ATTRIBUTE16')
12597: , X_Cont_Attribute17 => hr_transaction_api.get_VARCHAR2_value
12598: (p_transaction_step_id => p_transaction_step_id
12599: ,p_name => 'P_CONT_ATTRIBUTE17')
12600: , X_Cont_Attribute18 => hr_transaction_api.get_VARCHAR2_value
12601: (p_transaction_step_id => p_transaction_step_id
12602: ,p_name => 'P_CONT_ATTRIBUTE18')
12603: , X_Cont_Attribute19 => hr_transaction_api.get_VARCHAR2_value
12604: (p_transaction_step_id => p_transaction_step_id

Line 12603: , X_Cont_Attribute19 => hr_transaction_api.get_VARCHAR2_value

12599: ,p_name => 'P_CONT_ATTRIBUTE17')
12600: , X_Cont_Attribute18 => hr_transaction_api.get_VARCHAR2_value
12601: (p_transaction_step_id => p_transaction_step_id
12602: ,p_name => 'P_CONT_ATTRIBUTE18')
12603: , X_Cont_Attribute19 => hr_transaction_api.get_VARCHAR2_value
12604: (p_transaction_step_id => p_transaction_step_id
12605: ,p_name => 'P_CONT_ATTRIBUTE19')
12606: , X_Cont_Attribute20 => hr_transaction_api.get_VARCHAR2_value
12607: (p_transaction_step_id => p_transaction_step_id

Line 12606: , X_Cont_Attribute20 => hr_transaction_api.get_VARCHAR2_value

12602: ,p_name => 'P_CONT_ATTRIBUTE18')
12603: , X_Cont_Attribute19 => hr_transaction_api.get_VARCHAR2_value
12604: (p_transaction_step_id => p_transaction_step_id
12605: ,p_name => 'P_CONT_ATTRIBUTE19')
12606: , X_Cont_Attribute20 => hr_transaction_api.get_VARCHAR2_value
12607: (p_transaction_step_id => p_transaction_step_id
12608: ,p_name => 'P_CONT_ATTRIBUTE20')
12609: , X_Cont_Information_Category => hr_transaction_api.get_VARCHAR2_value
12610: (p_transaction_step_id => p_transaction_step_id

Line 12609: , X_Cont_Information_Category => hr_transaction_api.get_VARCHAR2_value

12605: ,p_name => 'P_CONT_ATTRIBUTE19')
12606: , X_Cont_Attribute20 => hr_transaction_api.get_VARCHAR2_value
12607: (p_transaction_step_id => p_transaction_step_id
12608: ,p_name => 'P_CONT_ATTRIBUTE20')
12609: , X_Cont_Information_Category => hr_transaction_api.get_VARCHAR2_value
12610: (p_transaction_step_id => p_transaction_step_id
12611: ,p_name => 'P_PER_INFORMATION_CATEGORY')
12612: , X_Cont_Information1 => hr_transaction_api.get_VARCHAR2_value
12613: (p_transaction_step_id => p_transaction_step_id

Line 12612: , X_Cont_Information1 => hr_transaction_api.get_VARCHAR2_value

12608: ,p_name => 'P_CONT_ATTRIBUTE20')
12609: , X_Cont_Information_Category => hr_transaction_api.get_VARCHAR2_value
12610: (p_transaction_step_id => p_transaction_step_id
12611: ,p_name => 'P_PER_INFORMATION_CATEGORY')
12612: , X_Cont_Information1 => hr_transaction_api.get_VARCHAR2_value
12613: (p_transaction_step_id => p_transaction_step_id
12614: ,p_name => 'P_CONT_INFORMATION1')
12615: , X_Cont_Information2 => hr_transaction_api.get_VARCHAR2_value
12616: (p_transaction_step_id => p_transaction_step_id

Line 12615: , X_Cont_Information2 => hr_transaction_api.get_VARCHAR2_value

12611: ,p_name => 'P_PER_INFORMATION_CATEGORY')
12612: , X_Cont_Information1 => hr_transaction_api.get_VARCHAR2_value
12613: (p_transaction_step_id => p_transaction_step_id
12614: ,p_name => 'P_CONT_INFORMATION1')
12615: , X_Cont_Information2 => hr_transaction_api.get_VARCHAR2_value
12616: (p_transaction_step_id => p_transaction_step_id
12617: ,p_name => 'P_CONT_INFORMATION2')
12618: , X_Cont_Information3 => hr_transaction_api.get_VARCHAR2_value
12619: (p_transaction_step_id => p_transaction_step_id

Line 12618: , X_Cont_Information3 => hr_transaction_api.get_VARCHAR2_value

12614: ,p_name => 'P_CONT_INFORMATION1')
12615: , X_Cont_Information2 => hr_transaction_api.get_VARCHAR2_value
12616: (p_transaction_step_id => p_transaction_step_id
12617: ,p_name => 'P_CONT_INFORMATION2')
12618: , X_Cont_Information3 => hr_transaction_api.get_VARCHAR2_value
12619: (p_transaction_step_id => p_transaction_step_id
12620: ,p_name => 'P_CONT_INFORMATION3')
12621: , X_Cont_Information4 => hr_transaction_api.get_VARCHAR2_value
12622: (p_transaction_step_id => p_transaction_step_id

Line 12621: , X_Cont_Information4 => hr_transaction_api.get_VARCHAR2_value

12617: ,p_name => 'P_CONT_INFORMATION2')
12618: , X_Cont_Information3 => hr_transaction_api.get_VARCHAR2_value
12619: (p_transaction_step_id => p_transaction_step_id
12620: ,p_name => 'P_CONT_INFORMATION3')
12621: , X_Cont_Information4 => hr_transaction_api.get_VARCHAR2_value
12622: (p_transaction_step_id => p_transaction_step_id
12623: ,p_name => 'P_CONT_INFORMATION4')
12624: , X_Cont_Information5 => hr_transaction_api.get_VARCHAR2_value
12625: (p_transaction_step_id => p_transaction_step_id

Line 12624: , X_Cont_Information5 => hr_transaction_api.get_VARCHAR2_value

12620: ,p_name => 'P_CONT_INFORMATION3')
12621: , X_Cont_Information4 => hr_transaction_api.get_VARCHAR2_value
12622: (p_transaction_step_id => p_transaction_step_id
12623: ,p_name => 'P_CONT_INFORMATION4')
12624: , X_Cont_Information5 => hr_transaction_api.get_VARCHAR2_value
12625: (p_transaction_step_id => p_transaction_step_id
12626: ,p_name => 'P_CONT_INFORMATION5')
12627: , X_Cont_Information6 => hr_transaction_api.get_VARCHAR2_value
12628: (p_transaction_step_id => p_transaction_step_id

Line 12627: , X_Cont_Information6 => hr_transaction_api.get_VARCHAR2_value

12623: ,p_name => 'P_CONT_INFORMATION4')
12624: , X_Cont_Information5 => hr_transaction_api.get_VARCHAR2_value
12625: (p_transaction_step_id => p_transaction_step_id
12626: ,p_name => 'P_CONT_INFORMATION5')
12627: , X_Cont_Information6 => hr_transaction_api.get_VARCHAR2_value
12628: (p_transaction_step_id => p_transaction_step_id
12629: ,p_name => 'P_CONT_INFORMATION6')
12630: , X_Cont_Information7 => hr_transaction_api.get_VARCHAR2_value
12631: (p_transaction_step_id => p_transaction_step_id

Line 12630: , X_Cont_Information7 => hr_transaction_api.get_VARCHAR2_value

12626: ,p_name => 'P_CONT_INFORMATION5')
12627: , X_Cont_Information6 => hr_transaction_api.get_VARCHAR2_value
12628: (p_transaction_step_id => p_transaction_step_id
12629: ,p_name => 'P_CONT_INFORMATION6')
12630: , X_Cont_Information7 => hr_transaction_api.get_VARCHAR2_value
12631: (p_transaction_step_id => p_transaction_step_id
12632: ,p_name => 'P_CONT_INFORMATION7')
12633: , X_Cont_Information8 => hr_transaction_api.get_VARCHAR2_value
12634: (p_transaction_step_id => p_transaction_step_id

Line 12633: , X_Cont_Information8 => hr_transaction_api.get_VARCHAR2_value

12629: ,p_name => 'P_CONT_INFORMATION6')
12630: , X_Cont_Information7 => hr_transaction_api.get_VARCHAR2_value
12631: (p_transaction_step_id => p_transaction_step_id
12632: ,p_name => 'P_CONT_INFORMATION7')
12633: , X_Cont_Information8 => hr_transaction_api.get_VARCHAR2_value
12634: (p_transaction_step_id => p_transaction_step_id
12635: ,p_name => 'P_CONT_INFORMATION8')
12636: , X_Cont_Information9 => hr_transaction_api.get_VARCHAR2_value
12637: (p_transaction_step_id => p_transaction_step_id

Line 12636: , X_Cont_Information9 => hr_transaction_api.get_VARCHAR2_value

12632: ,p_name => 'P_CONT_INFORMATION7')
12633: , X_Cont_Information8 => hr_transaction_api.get_VARCHAR2_value
12634: (p_transaction_step_id => p_transaction_step_id
12635: ,p_name => 'P_CONT_INFORMATION8')
12636: , X_Cont_Information9 => hr_transaction_api.get_VARCHAR2_value
12637: (p_transaction_step_id => p_transaction_step_id
12638: ,p_name => 'P_CONT_INFORMATION9')
12639: , X_Cont_Information10 => hr_transaction_api.get_VARCHAR2_value
12640: (p_transaction_step_id => p_transaction_step_id

Line 12639: , X_Cont_Information10 => hr_transaction_api.get_VARCHAR2_value

12635: ,p_name => 'P_CONT_INFORMATION8')
12636: , X_Cont_Information9 => hr_transaction_api.get_VARCHAR2_value
12637: (p_transaction_step_id => p_transaction_step_id
12638: ,p_name => 'P_CONT_INFORMATION9')
12639: , X_Cont_Information10 => hr_transaction_api.get_VARCHAR2_value
12640: (p_transaction_step_id => p_transaction_step_id
12641: ,p_name => 'P_CONT_INFORMATION10')
12642: , X_Cont_Information11 => hr_transaction_api.get_VARCHAR2_value
12643: (p_transaction_step_id => p_transaction_step_id

Line 12642: , X_Cont_Information11 => hr_transaction_api.get_VARCHAR2_value

12638: ,p_name => 'P_CONT_INFORMATION9')
12639: , X_Cont_Information10 => hr_transaction_api.get_VARCHAR2_value
12640: (p_transaction_step_id => p_transaction_step_id
12641: ,p_name => 'P_CONT_INFORMATION10')
12642: , X_Cont_Information11 => hr_transaction_api.get_VARCHAR2_value
12643: (p_transaction_step_id => p_transaction_step_id
12644: ,p_name => 'P_CONT_INFORMATION11')
12645: , X_Cont_Information12 => hr_transaction_api.get_VARCHAR2_value
12646: (p_transaction_step_id => p_transaction_step_id

Line 12645: , X_Cont_Information12 => hr_transaction_api.get_VARCHAR2_value

12641: ,p_name => 'P_CONT_INFORMATION10')
12642: , X_Cont_Information11 => hr_transaction_api.get_VARCHAR2_value
12643: (p_transaction_step_id => p_transaction_step_id
12644: ,p_name => 'P_CONT_INFORMATION11')
12645: , X_Cont_Information12 => hr_transaction_api.get_VARCHAR2_value
12646: (p_transaction_step_id => p_transaction_step_id
12647: ,p_name => 'P_CONT_INFORMATION12')
12648: , X_Cont_Information13 => hr_transaction_api.get_VARCHAR2_value
12649: (p_transaction_step_id => p_transaction_step_id

Line 12648: , X_Cont_Information13 => hr_transaction_api.get_VARCHAR2_value

12644: ,p_name => 'P_CONT_INFORMATION11')
12645: , X_Cont_Information12 => hr_transaction_api.get_VARCHAR2_value
12646: (p_transaction_step_id => p_transaction_step_id
12647: ,p_name => 'P_CONT_INFORMATION12')
12648: , X_Cont_Information13 => hr_transaction_api.get_VARCHAR2_value
12649: (p_transaction_step_id => p_transaction_step_id
12650: ,p_name => 'P_CONT_INFORMATION13')
12651: , X_Cont_Information14 => hr_transaction_api.get_VARCHAR2_value
12652: (p_transaction_step_id => p_transaction_step_id

Line 12651: , X_Cont_Information14 => hr_transaction_api.get_VARCHAR2_value

12647: ,p_name => 'P_CONT_INFORMATION12')
12648: , X_Cont_Information13 => hr_transaction_api.get_VARCHAR2_value
12649: (p_transaction_step_id => p_transaction_step_id
12650: ,p_name => 'P_CONT_INFORMATION13')
12651: , X_Cont_Information14 => hr_transaction_api.get_VARCHAR2_value
12652: (p_transaction_step_id => p_transaction_step_id
12653: ,p_name => 'P_CONT_INFORMATION14')
12654: , X_Cont_Information15 => hr_transaction_api.get_VARCHAR2_value
12655: (p_transaction_step_id => p_transaction_step_id

Line 12654: , X_Cont_Information15 => hr_transaction_api.get_VARCHAR2_value

12650: ,p_name => 'P_CONT_INFORMATION13')
12651: , X_Cont_Information14 => hr_transaction_api.get_VARCHAR2_value
12652: (p_transaction_step_id => p_transaction_step_id
12653: ,p_name => 'P_CONT_INFORMATION14')
12654: , X_Cont_Information15 => hr_transaction_api.get_VARCHAR2_value
12655: (p_transaction_step_id => p_transaction_step_id
12656: ,p_name => 'P_CONT_INFORMATION15')
12657: , X_Cont_Information16 => hr_transaction_api.get_VARCHAR2_value
12658: (p_transaction_step_id => p_transaction_step_id

Line 12657: , X_Cont_Information16 => hr_transaction_api.get_VARCHAR2_value

12653: ,p_name => 'P_CONT_INFORMATION14')
12654: , X_Cont_Information15 => hr_transaction_api.get_VARCHAR2_value
12655: (p_transaction_step_id => p_transaction_step_id
12656: ,p_name => 'P_CONT_INFORMATION15')
12657: , X_Cont_Information16 => hr_transaction_api.get_VARCHAR2_value
12658: (p_transaction_step_id => p_transaction_step_id
12659: ,p_name => 'P_CONT_INFORMATION16')
12660: , X_Cont_Information17 => hr_transaction_api.get_VARCHAR2_value
12661: (p_transaction_step_id => p_transaction_step_id

Line 12660: , X_Cont_Information17 => hr_transaction_api.get_VARCHAR2_value

12656: ,p_name => 'P_CONT_INFORMATION15')
12657: , X_Cont_Information16 => hr_transaction_api.get_VARCHAR2_value
12658: (p_transaction_step_id => p_transaction_step_id
12659: ,p_name => 'P_CONT_INFORMATION16')
12660: , X_Cont_Information17 => hr_transaction_api.get_VARCHAR2_value
12661: (p_transaction_step_id => p_transaction_step_id
12662: ,p_name => 'P_CONT_INFORMATION17')
12663: , X_Cont_Information18 => hr_transaction_api.get_VARCHAR2_value
12664: (p_transaction_step_id => p_transaction_step_id

Line 12663: , X_Cont_Information18 => hr_transaction_api.get_VARCHAR2_value

12659: ,p_name => 'P_CONT_INFORMATION16')
12660: , X_Cont_Information17 => hr_transaction_api.get_VARCHAR2_value
12661: (p_transaction_step_id => p_transaction_step_id
12662: ,p_name => 'P_CONT_INFORMATION17')
12663: , X_Cont_Information18 => hr_transaction_api.get_VARCHAR2_value
12664: (p_transaction_step_id => p_transaction_step_id
12665: ,p_name => 'P_CONT_INFORMATION18')
12666: , X_Cont_Information19 => hr_transaction_api.get_VARCHAR2_value
12667: (p_transaction_step_id => p_transaction_step_id

Line 12666: , X_Cont_Information19 => hr_transaction_api.get_VARCHAR2_value

12662: ,p_name => 'P_CONT_INFORMATION17')
12663: , X_Cont_Information18 => hr_transaction_api.get_VARCHAR2_value
12664: (p_transaction_step_id => p_transaction_step_id
12665: ,p_name => 'P_CONT_INFORMATION18')
12666: , X_Cont_Information19 => hr_transaction_api.get_VARCHAR2_value
12667: (p_transaction_step_id => p_transaction_step_id
12668: ,p_name => 'P_CONT_INFORMATION19')
12669: , X_Cont_Information20 => hr_transaction_api.get_VARCHAR2_value
12670: (p_transaction_step_id => p_transaction_step_id

Line 12669: , X_Cont_Information20 => hr_transaction_api.get_VARCHAR2_value

12665: ,p_name => 'P_CONT_INFORMATION18')
12666: , X_Cont_Information19 => hr_transaction_api.get_VARCHAR2_value
12667: (p_transaction_step_id => p_transaction_step_id
12668: ,p_name => 'P_CONT_INFORMATION19')
12669: , X_Cont_Information20 => hr_transaction_api.get_VARCHAR2_value
12670: (p_transaction_step_id => p_transaction_step_id
12671: ,p_name => 'P_CONT_INFORMATION20')
12672: , X_Session_Date => null --- this session_date is not used in PER_CONTACT_RELATIONSHIPS_PKG.update_row method, so null is pass here
12673: , X_Date_Start => hr_transaction_api.get_DATE_value

Line 12673: , X_Date_Start => hr_transaction_api.get_DATE_value

12669: , X_Cont_Information20 => hr_transaction_api.get_VARCHAR2_value
12670: (p_transaction_step_id => p_transaction_step_id
12671: ,p_name => 'P_CONT_INFORMATION20')
12672: , X_Session_Date => null --- this session_date is not used in PER_CONTACT_RELATIONSHIPS_PKG.update_row method, so null is pass here
12673: , X_Date_Start => hr_transaction_api.get_DATE_value
12674: (p_transaction_step_id => p_transaction_step_id
12675: ,p_name => 'P_DATE_START')
12676: , X_Start_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12677: (p_transaction_step_id => p_transaction_step_id

Line 12676: , X_Start_Life_Reason_Id => hr_transaction_api.get_NUMBER_value

12672: , X_Session_Date => null --- this session_date is not used in PER_CONTACT_RELATIONSHIPS_PKG.update_row method, so null is pass here
12673: , X_Date_Start => hr_transaction_api.get_DATE_value
12674: (p_transaction_step_id => p_transaction_step_id
12675: ,p_name => 'P_DATE_START')
12676: , X_Start_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12677: (p_transaction_step_id => p_transaction_step_id
12678: ,p_name => 'P_START_LIFE_REASON_ID')
12679: , X_Date_End => hr_transaction_api.get_DATE_value
12680: (p_transaction_step_id => p_transaction_step_id

Line 12679: , X_Date_End => hr_transaction_api.get_DATE_value

12675: ,p_name => 'P_DATE_START')
12676: , X_Start_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12677: (p_transaction_step_id => p_transaction_step_id
12678: ,p_name => 'P_START_LIFE_REASON_ID')
12679: , X_Date_End => hr_transaction_api.get_DATE_value
12680: (p_transaction_step_id => p_transaction_step_id
12681: ,p_name => 'P_DATE_END')
12682: , X_End_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12683: (p_transaction_step_id => p_transaction_step_id

Line 12682: , X_End_Life_Reason_Id => hr_transaction_api.get_NUMBER_value

12678: ,p_name => 'P_START_LIFE_REASON_ID')
12679: , X_Date_End => hr_transaction_api.get_DATE_value
12680: (p_transaction_step_id => p_transaction_step_id
12681: ,p_name => 'P_DATE_END')
12682: , X_End_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12683: (p_transaction_step_id => p_transaction_step_id
12684: ,p_name => 'P_END_LIFE_REASON_ID')
12685: , X_Rltd_Per_Rsds_W_Dsgntr_Flag => hr_transaction_api.get_VARCHAR2_value
12686: (p_transaction_step_id => p_transaction_step_id

Line 12685: , X_Rltd_Per_Rsds_W_Dsgntr_Flag => hr_transaction_api.get_VARCHAR2_value

12681: ,p_name => 'P_DATE_END')
12682: , X_End_Life_Reason_Id => hr_transaction_api.get_NUMBER_value
12683: (p_transaction_step_id => p_transaction_step_id
12684: ,p_name => 'P_END_LIFE_REASON_ID')
12685: , X_Rltd_Per_Rsds_W_Dsgntr_Flag => hr_transaction_api.get_VARCHAR2_value
12686: (p_transaction_step_id => p_transaction_step_id
12687: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12688: , X_Personal_Flag => hr_transaction_api.get_VARCHAR2_value
12689: (p_transaction_step_id => p_transaction_step_id

Line 12688: , X_Personal_Flag => hr_transaction_api.get_VARCHAR2_value

12684: ,p_name => 'P_END_LIFE_REASON_ID')
12685: , X_Rltd_Per_Rsds_W_Dsgntr_Flag => hr_transaction_api.get_VARCHAR2_value
12686: (p_transaction_step_id => p_transaction_step_id
12687: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12688: , X_Personal_Flag => hr_transaction_api.get_VARCHAR2_value
12689: (p_transaction_step_id => p_transaction_step_id
12690: ,p_name => 'P_PERSONAL_FLAG')
12691: , X_Sequence_Number => hr_transaction_api.get_NUMBER_value
12692: (p_transaction_step_id => p_transaction_step_id

Line 12691: , X_Sequence_Number => hr_transaction_api.get_NUMBER_value

12687: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12688: , X_Personal_Flag => hr_transaction_api.get_VARCHAR2_value
12689: (p_transaction_step_id => p_transaction_step_id
12690: ,p_name => 'P_PERSONAL_FLAG')
12691: , X_Sequence_Number => hr_transaction_api.get_NUMBER_value
12692: (p_transaction_step_id => p_transaction_step_id
12693: ,p_name => 'P_SEQUENCE_NUMBER')
12694: , X_Dependent_Flag => hr_transaction_api.get_varchar2_value
12695: (p_transaction_step_id => p_transaction_step_id

Line 12694: , X_Dependent_Flag => hr_transaction_api.get_varchar2_value

12690: ,p_name => 'P_PERSONAL_FLAG')
12691: , X_Sequence_Number => hr_transaction_api.get_NUMBER_value
12692: (p_transaction_step_id => p_transaction_step_id
12693: ,p_name => 'P_SEQUENCE_NUMBER')
12694: , X_Dependent_Flag => hr_transaction_api.get_varchar2_value
12695: (p_transaction_step_id => p_transaction_step_id
12696: ,p_name => 'P_DEPENDENT_FLAG')
12697: , X_Beneficiary_Flag => hr_transaction_api.get_varchar2_value
12698: (p_transaction_step_id => p_transaction_step_id

Line 12697: , X_Beneficiary_Flag => hr_transaction_api.get_varchar2_value

12693: ,p_name => 'P_SEQUENCE_NUMBER')
12694: , X_Dependent_Flag => hr_transaction_api.get_varchar2_value
12695: (p_transaction_step_id => p_transaction_step_id
12696: ,p_name => 'P_DEPENDENT_FLAG')
12697: , X_Beneficiary_Flag => hr_transaction_api.get_varchar2_value
12698: (p_transaction_step_id => p_transaction_step_id
12699: ,p_name => 'P_BENEFICIARY_FLAG')
12700: );
12701: skip_contact_create_flg := 1;

Line 12710: hr_transaction_api.get_NUMBER_value

12706: p_validate => p_validate
12707: ,P_EFFECTIVE_DATE =>l_effective_date
12708: ,p_object_version_number => l_ovn
12709: ,P_CONTACT_RELATIONSHIP_ID =>
12710: hr_transaction_api.get_NUMBER_value
12711: (p_transaction_step_id => p_transaction_step_id
12712: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12713: ,p_date_end => l_date_end
12714: );

Line 12727: hr_transaction_api.get_NUMBER_value

12723: p_validate => p_validate
12724: ,P_EFFECTIVE_DATE =>l_effective_date
12725: ,p_object_version_number => l_ovn
12726: ,P_CONTACT_RELATIONSHIP_ID =>
12727: hr_transaction_api.get_NUMBER_value
12728: (p_transaction_step_id => p_transaction_step_id
12729: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12730: ,p_date_end => l_date_end
12731: );

Line 12738: hr_transaction_api.get_NUMBER_value

12734: end if;
12735: -- if primary contact flag is checked/unchecked apply it emrg record and not for
12736: -- other personal relationship record
12737: open get_emrg_relid_ovn(
12738: hr_transaction_api.get_NUMBER_value
12739: (p_transaction_step_id => p_transaction_step_id
12740: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12741: ,hr_transaction_api.get_number_value
12742: (p_transaction_step_id => p_transaction_step_id

Line 12741: ,hr_transaction_api.get_number_value

12737: open get_emrg_relid_ovn(
12738: hr_transaction_api.get_NUMBER_value
12739: (p_transaction_step_id => p_transaction_step_id
12740: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12741: ,hr_transaction_api.get_number_value
12742: (p_transaction_step_id => p_transaction_step_id
12743: ,p_name => 'P_CONTACT_PERSON_ID')
12744: ,hr_transaction_api.get_number_value
12745: (p_transaction_step_id => p_transaction_step_id

Line 12744: ,hr_transaction_api.get_number_value

12740: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
12741: ,hr_transaction_api.get_number_value
12742: (p_transaction_step_id => p_transaction_step_id
12743: ,p_name => 'P_CONTACT_PERSON_ID')
12744: ,hr_transaction_api.get_number_value
12745: (p_transaction_step_id => p_transaction_step_id
12746: ,p_name => 'P_PERSON_ID'));
12747: fetch get_emrg_relid_ovn into l_emrg_relid, l_emrg_ovn, l_emrg_primary_cont_flag;
12748: if get_emrg_relid_ovn%found then

Line 12771: hr_transaction_api.get_NUMBER_value

12767: --
12768: ,P_START_DATE => l_effective_date
12769: --
12770: ,P_BUSINESS_GROUP_ID =>
12771: hr_transaction_api.get_NUMBER_value
12772: (p_transaction_step_id => p_transaction_step_id
12773: ,p_name => 'P_BUSINESS_GROUP_ID')
12774: --
12775: ,P_PERSON_ID =>

Line 12776: hr_transaction_api.get_number_value

12772: (p_transaction_step_id => p_transaction_step_id
12773: ,p_name => 'P_BUSINESS_GROUP_ID')
12774: --
12775: ,P_PERSON_ID =>
12776: hr_transaction_api.get_number_value
12777: (p_transaction_step_id => p_transaction_step_id
12778: ,p_name =>upper('p_person_id'))
12779: --
12780: ,P_CONTACT_PERSON_ID =>

Line 12781: hr_transaction_api.get_number_value

12777: (p_transaction_step_id => p_transaction_step_id
12778: ,p_name =>upper('p_person_id'))
12779: --
12780: ,P_CONTACT_PERSON_ID =>
12781: hr_transaction_api.get_number_value
12782: (p_transaction_step_id => p_transaction_step_id
12783: ,p_name =>upper('p_cont_person_id'))
12784: --
12785: ,P_CONTACT_TYPE =>

Line 12786: hr_transaction_api.get_VARCHAR2_value

12782: (p_transaction_step_id => p_transaction_step_id
12783: ,p_name =>upper('p_cont_person_id'))
12784: --
12785: ,P_CONTACT_TYPE =>
12786: hr_transaction_api.get_VARCHAR2_value
12787: (p_transaction_step_id => p_transaction_step_id
12788: ,p_name => 'P_CONTACT_TYPE')
12789: --
12790: ,P_CTR_COMMENTS =>

Line 12791: hr_transaction_api.get_VARCHAR2_value

12787: (p_transaction_step_id => p_transaction_step_id
12788: ,p_name => 'P_CONTACT_TYPE')
12789: --
12790: ,P_CTR_COMMENTS =>
12791: hr_transaction_api.get_VARCHAR2_value
12792: (p_transaction_step_id => p_transaction_step_id
12793: ,p_name => 'P_CTR_COMMENTS')
12794: --
12795: ,P_PRIMARY_CONTACT_FLAG => l_primary_contact_flag

Line 12801: hr_transaction_api.get_NUMBER_value

12797: ,P_DATE_START => l_date_sart
12798:
12799: --
12800: ,P_START_LIFE_REASON_ID =>
12801: hr_transaction_api.get_NUMBER_value
12802: (p_transaction_step_id => p_transaction_step_id
12803: ,p_name => 'P_START_LIFE_REASON_ID')
12804: --
12805: ,P_DATE_END =>

Line 12806: hr_transaction_api.get_DATE_value

12802: (p_transaction_step_id => p_transaction_step_id
12803: ,p_name => 'P_START_LIFE_REASON_ID')
12804: --
12805: ,P_DATE_END =>
12806: hr_transaction_api.get_DATE_value
12807: (p_transaction_step_id => p_transaction_step_id
12808: ,p_name => 'P_DATE_END')
12809: --
12810: ,P_END_LIFE_REASON_ID =>

Line 12811: hr_transaction_api.get_NUMBER_value

12807: (p_transaction_step_id => p_transaction_step_id
12808: ,p_name => 'P_DATE_END')
12809: --
12810: ,P_END_LIFE_REASON_ID =>
12811: hr_transaction_api.get_NUMBER_value
12812: (p_transaction_step_id => p_transaction_step_id
12813: ,p_name => 'P_END_LIFE_REASON_ID')
12814: --
12815: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 12816: hr_transaction_api.get_VARCHAR2_value

12812: (p_transaction_step_id => p_transaction_step_id
12813: ,p_name => 'P_END_LIFE_REASON_ID')
12814: --
12815: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
12816: hr_transaction_api.get_VARCHAR2_value
12817: (p_transaction_step_id => p_transaction_step_id
12818: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12819: --
12820: ,P_PERSONAL_FLAG =>

Line 12821: hr_transaction_api.get_VARCHAR2_value

12817: (p_transaction_step_id => p_transaction_step_id
12818: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
12819: --
12820: ,P_PERSONAL_FLAG =>
12821: hr_transaction_api.get_VARCHAR2_value
12822: (p_transaction_step_id => p_transaction_step_id
12823: ,p_name => 'P_PERSONAL_FLAG')
12824: --
12825: ,P_SEQUENCE_NUMBER =>

Line 12826: hr_transaction_api.get_NUMBER_value

12822: (p_transaction_step_id => p_transaction_step_id
12823: ,p_name => 'P_PERSONAL_FLAG')
12824: --
12825: ,P_SEQUENCE_NUMBER =>
12826: hr_transaction_api.get_NUMBER_value
12827: (p_transaction_step_id => p_transaction_step_id
12828: ,p_name => 'P_SEQUENCE_NUMBER')
12829: --
12830: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 12831: hr_transaction_api.get_VARCHAR2_value

12827: (p_transaction_step_id => p_transaction_step_id
12828: ,p_name => 'P_SEQUENCE_NUMBER')
12829: --
12830: ,P_CONT_ATTRIBUTE_CATEGORY =>
12831: hr_transaction_api.get_VARCHAR2_value
12832: (p_transaction_step_id => p_transaction_step_id
12833: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12834: --
12835: ,P_CONT_ATTRIBUTE1 =>

Line 12836: hr_transaction_api.get_VARCHAR2_value

12832: (p_transaction_step_id => p_transaction_step_id
12833: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
12834: --
12835: ,P_CONT_ATTRIBUTE1 =>
12836: hr_transaction_api.get_VARCHAR2_value
12837: (p_transaction_step_id => p_transaction_step_id
12838: ,p_name => 'P_CONT_ATTRIBUTE1')
12839: --
12840: ,P_CONT_ATTRIBUTE2 =>

Line 12841: hr_transaction_api.get_VARCHAR2_value

12837: (p_transaction_step_id => p_transaction_step_id
12838: ,p_name => 'P_CONT_ATTRIBUTE1')
12839: --
12840: ,P_CONT_ATTRIBUTE2 =>
12841: hr_transaction_api.get_VARCHAR2_value
12842: (p_transaction_step_id => p_transaction_step_id
12843: ,p_name => 'P_CONT_ATTRIBUTE2')
12844: --
12845: ,P_CONT_ATTRIBUTE3 =>

Line 12846: hr_transaction_api.get_VARCHAR2_value

12842: (p_transaction_step_id => p_transaction_step_id
12843: ,p_name => 'P_CONT_ATTRIBUTE2')
12844: --
12845: ,P_CONT_ATTRIBUTE3 =>
12846: hr_transaction_api.get_VARCHAR2_value
12847: (p_transaction_step_id => p_transaction_step_id
12848: ,p_name => 'P_CONT_ATTRIBUTE3')
12849: --
12850: ,P_CONT_ATTRIBUTE4 =>

Line 12851: hr_transaction_api.get_VARCHAR2_value

12847: (p_transaction_step_id => p_transaction_step_id
12848: ,p_name => 'P_CONT_ATTRIBUTE3')
12849: --
12850: ,P_CONT_ATTRIBUTE4 =>
12851: hr_transaction_api.get_VARCHAR2_value
12852: (p_transaction_step_id => p_transaction_step_id
12853: ,p_name => 'P_CONT_ATTRIBUTE4')
12854: --
12855: ,P_CONT_ATTRIBUTE5 =>

Line 12856: hr_transaction_api.get_VARCHAR2_value

12852: (p_transaction_step_id => p_transaction_step_id
12853: ,p_name => 'P_CONT_ATTRIBUTE4')
12854: --
12855: ,P_CONT_ATTRIBUTE5 =>
12856: hr_transaction_api.get_VARCHAR2_value
12857: (p_transaction_step_id => p_transaction_step_id
12858: ,p_name => 'P_CONT_ATTRIBUTE5')
12859: --
12860: ,P_CONT_ATTRIBUTE6 =>

Line 12861: hr_transaction_api.get_VARCHAR2_value

12857: (p_transaction_step_id => p_transaction_step_id
12858: ,p_name => 'P_CONT_ATTRIBUTE5')
12859: --
12860: ,P_CONT_ATTRIBUTE6 =>
12861: hr_transaction_api.get_VARCHAR2_value
12862: (p_transaction_step_id => p_transaction_step_id
12863: ,p_name => 'P_CONT_ATTRIBUTE6')
12864: --
12865: ,P_CONT_ATTRIBUTE7 =>

Line 12866: hr_transaction_api.get_VARCHAR2_value

12862: (p_transaction_step_id => p_transaction_step_id
12863: ,p_name => 'P_CONT_ATTRIBUTE6')
12864: --
12865: ,P_CONT_ATTRIBUTE7 =>
12866: hr_transaction_api.get_VARCHAR2_value
12867: (p_transaction_step_id => p_transaction_step_id
12868: ,p_name => 'P_CONT_ATTRIBUTE7')
12869: --
12870: ,P_CONT_ATTRIBUTE8 =>

Line 12871: hr_transaction_api.get_VARCHAR2_value

12867: (p_transaction_step_id => p_transaction_step_id
12868: ,p_name => 'P_CONT_ATTRIBUTE7')
12869: --
12870: ,P_CONT_ATTRIBUTE8 =>
12871: hr_transaction_api.get_VARCHAR2_value
12872: (p_transaction_step_id => p_transaction_step_id
12873: ,p_name => 'P_CONT_ATTRIBUTE8')
12874: --
12875: ,P_CONT_ATTRIBUTE9 =>

Line 12876: hr_transaction_api.get_VARCHAR2_value

12872: (p_transaction_step_id => p_transaction_step_id
12873: ,p_name => 'P_CONT_ATTRIBUTE8')
12874: --
12875: ,P_CONT_ATTRIBUTE9 =>
12876: hr_transaction_api.get_VARCHAR2_value
12877: (p_transaction_step_id => p_transaction_step_id
12878: ,p_name => 'P_CONT_ATTRIBUTE9')
12879: --
12880: ,P_CONT_ATTRIBUTE10 =>

Line 12881: hr_transaction_api.get_VARCHAR2_value

12877: (p_transaction_step_id => p_transaction_step_id
12878: ,p_name => 'P_CONT_ATTRIBUTE9')
12879: --
12880: ,P_CONT_ATTRIBUTE10 =>
12881: hr_transaction_api.get_VARCHAR2_value
12882: (p_transaction_step_id => p_transaction_step_id
12883: ,p_name => 'P_CONT_ATTRIBUTE10')
12884: --
12885: ,P_CONT_ATTRIBUTE11 =>

Line 12886: hr_transaction_api.get_VARCHAR2_value

12882: (p_transaction_step_id => p_transaction_step_id
12883: ,p_name => 'P_CONT_ATTRIBUTE10')
12884: --
12885: ,P_CONT_ATTRIBUTE11 =>
12886: hr_transaction_api.get_VARCHAR2_value
12887: (p_transaction_step_id => p_transaction_step_id
12888: ,p_name => 'P_CONT_ATTRIBUTE11')
12889: --
12890: ,P_CONT_ATTRIBUTE12 =>

Line 12891: hr_transaction_api.get_VARCHAR2_value

12887: (p_transaction_step_id => p_transaction_step_id
12888: ,p_name => 'P_CONT_ATTRIBUTE11')
12889: --
12890: ,P_CONT_ATTRIBUTE12 =>
12891: hr_transaction_api.get_VARCHAR2_value
12892: (p_transaction_step_id => p_transaction_step_id
12893: ,p_name => 'P_CONT_ATTRIBUTE12')
12894: --
12895: ,P_CONT_ATTRIBUTE13 =>

Line 12896: hr_transaction_api.get_VARCHAR2_value

12892: (p_transaction_step_id => p_transaction_step_id
12893: ,p_name => 'P_CONT_ATTRIBUTE12')
12894: --
12895: ,P_CONT_ATTRIBUTE13 =>
12896: hr_transaction_api.get_VARCHAR2_value
12897: (p_transaction_step_id => p_transaction_step_id
12898: ,p_name => 'P_CONT_ATTRIBUTE13')
12899: --
12900: ,P_CONT_ATTRIBUTE14 =>

Line 12901: hr_transaction_api.get_VARCHAR2_value

12897: (p_transaction_step_id => p_transaction_step_id
12898: ,p_name => 'P_CONT_ATTRIBUTE13')
12899: --
12900: ,P_CONT_ATTRIBUTE14 =>
12901: hr_transaction_api.get_VARCHAR2_value
12902: (p_transaction_step_id => p_transaction_step_id
12903: ,p_name => 'P_CONT_ATTRIBUTE14')
12904: --
12905: ,P_CONT_ATTRIBUTE15 =>

Line 12906: hr_transaction_api.get_VARCHAR2_value

12902: (p_transaction_step_id => p_transaction_step_id
12903: ,p_name => 'P_CONT_ATTRIBUTE14')
12904: --
12905: ,P_CONT_ATTRIBUTE15 =>
12906: hr_transaction_api.get_VARCHAR2_value
12907: (p_transaction_step_id => p_transaction_step_id
12908: ,p_name => 'P_CONT_ATTRIBUTE15')
12909: --
12910: ,P_CONT_ATTRIBUTE16 =>

Line 12911: hr_transaction_api.get_VARCHAR2_value

12907: (p_transaction_step_id => p_transaction_step_id
12908: ,p_name => 'P_CONT_ATTRIBUTE15')
12909: --
12910: ,P_CONT_ATTRIBUTE16 =>
12911: hr_transaction_api.get_VARCHAR2_value
12912: (p_transaction_step_id => p_transaction_step_id
12913: ,p_name => 'P_CONT_ATTRIBUTE16')
12914: --
12915: ,P_CONT_ATTRIBUTE17 =>

Line 12916: hr_transaction_api.get_VARCHAR2_value

12912: (p_transaction_step_id => p_transaction_step_id
12913: ,p_name => 'P_CONT_ATTRIBUTE16')
12914: --
12915: ,P_CONT_ATTRIBUTE17 =>
12916: hr_transaction_api.get_VARCHAR2_value
12917: (p_transaction_step_id => p_transaction_step_id
12918: ,p_name => 'P_CONT_ATTRIBUTE17')
12919: --
12920: ,P_CONT_ATTRIBUTE18 =>

Line 12921: hr_transaction_api.get_VARCHAR2_value

12917: (p_transaction_step_id => p_transaction_step_id
12918: ,p_name => 'P_CONT_ATTRIBUTE17')
12919: --
12920: ,P_CONT_ATTRIBUTE18 =>
12921: hr_transaction_api.get_VARCHAR2_value
12922: (p_transaction_step_id => p_transaction_step_id
12923: ,p_name => 'P_CONT_ATTRIBUTE18')
12924: --
12925: ,P_CONT_ATTRIBUTE19 =>

Line 12926: hr_transaction_api.get_VARCHAR2_value

12922: (p_transaction_step_id => p_transaction_step_id
12923: ,p_name => 'P_CONT_ATTRIBUTE18')
12924: --
12925: ,P_CONT_ATTRIBUTE19 =>
12926: hr_transaction_api.get_VARCHAR2_value
12927: (p_transaction_step_id => p_transaction_step_id
12928: ,p_name => 'P_CONT_ATTRIBUTE19')
12929: --
12930: ,P_CONT_ATTRIBUTE20 =>

Line 12931: hr_transaction_api.get_VARCHAR2_value

12927: (p_transaction_step_id => p_transaction_step_id
12928: ,p_name => 'P_CONT_ATTRIBUTE19')
12929: --
12930: ,P_CONT_ATTRIBUTE20 =>
12931: hr_transaction_api.get_VARCHAR2_value
12932: (p_transaction_step_id => p_transaction_step_id
12933: ,p_name => 'P_CONT_ATTRIBUTE20')
12934: --
12935: ,P_THIRD_PARTY_PAY_FLAG =>

Line 12936: hr_transaction_api.get_VARCHAR2_value

12932: (p_transaction_step_id => p_transaction_step_id
12933: ,p_name => 'P_CONT_ATTRIBUTE20')
12934: --
12935: ,P_THIRD_PARTY_PAY_FLAG =>
12936: hr_transaction_api.get_VARCHAR2_value
12937: (p_transaction_step_id => p_transaction_step_id
12938: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
12939: --
12940: ,P_BONDHOLDER_FLAG =>

Line 12941: hr_transaction_api.get_VARCHAR2_value

12937: (p_transaction_step_id => p_transaction_step_id
12938: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
12939: --
12940: ,P_BONDHOLDER_FLAG =>
12941: hr_transaction_api.get_VARCHAR2_value
12942: (p_transaction_step_id => p_transaction_step_id
12943: ,p_name => 'P_BONDHOLDER_FLAG')
12944: --
12945: ,P_DEPENDENT_FLAG =>

Line 12946: hr_transaction_api.get_VARCHAR2_value

12942: (p_transaction_step_id => p_transaction_step_id
12943: ,p_name => 'P_BONDHOLDER_FLAG')
12944: --
12945: ,P_DEPENDENT_FLAG =>
12946: hr_transaction_api.get_VARCHAR2_value
12947: (p_transaction_step_id => p_transaction_step_id
12948: ,p_name => 'P_DEPENDENT_FLAG')
12949: --
12950: ,P_BENEFICIARY_FLAG =>

Line 12951: hr_transaction_api.get_VARCHAR2_value

12947: (p_transaction_step_id => p_transaction_step_id
12948: ,p_name => 'P_DEPENDENT_FLAG')
12949: --
12950: ,P_BENEFICIARY_FLAG =>
12951: hr_transaction_api.get_VARCHAR2_value
12952: (p_transaction_step_id => p_transaction_step_id
12953: ,p_name => 'P_BENEFICIARY_FLAG')
12954: --
12955: ,P_LAST_NAME =>

Line 12956: hr_transaction_api.get_VARCHAR2_value

12952: (p_transaction_step_id => p_transaction_step_id
12953: ,p_name => 'P_BENEFICIARY_FLAG')
12954: --
12955: ,P_LAST_NAME =>
12956: hr_transaction_api.get_VARCHAR2_value
12957: (p_transaction_step_id => p_transaction_step_id
12958: ,p_name => 'P_LAST_NAME')
12959: --
12960: ,P_SEX =>

Line 12961: hr_transaction_api.get_VARCHAR2_value

12957: (p_transaction_step_id => p_transaction_step_id
12958: ,p_name => 'P_LAST_NAME')
12959: --
12960: ,P_SEX =>
12961: hr_transaction_api.get_VARCHAR2_value
12962: (p_transaction_step_id => p_transaction_step_id
12963: ,p_name => 'P_SEX')
12964: --
12965: ,P_PERSON_TYPE_ID =>

Line 12966: hr_transaction_api.get_NUMBER_value

12962: (p_transaction_step_id => p_transaction_step_id
12963: ,p_name => 'P_SEX')
12964: --
12965: ,P_PERSON_TYPE_ID =>
12966: hr_transaction_api.get_NUMBER_value
12967: (p_transaction_step_id => p_transaction_step_id
12968: ,p_name => 'P_PERSON_TYPE_ID')
12969: --
12970: ,P_PER_COMMENTS =>

Line 12971: hr_transaction_api.get_VARCHAR2_value

12967: (p_transaction_step_id => p_transaction_step_id
12968: ,p_name => 'P_PERSON_TYPE_ID')
12969: --
12970: ,P_PER_COMMENTS =>
12971: hr_transaction_api.get_VARCHAR2_value
12972: (p_transaction_step_id => p_transaction_step_id
12973: ,p_name => 'P_PER_COMMENTS')
12974: --
12975: ,P_DATE_OF_BIRTH =>

Line 12976: hr_transaction_api.get_DATE_value

12972: (p_transaction_step_id => p_transaction_step_id
12973: ,p_name => 'P_PER_COMMENTS')
12974: --
12975: ,P_DATE_OF_BIRTH =>
12976: hr_transaction_api.get_DATE_value
12977: (p_transaction_step_id => p_transaction_step_id
12978: ,p_name => 'P_DATE_OF_BIRTH')
12979: --
12980: ,P_EMAIL_ADDRESS =>

Line 12981: hr_transaction_api.get_VARCHAR2_value

12977: (p_transaction_step_id => p_transaction_step_id
12978: ,p_name => 'P_DATE_OF_BIRTH')
12979: --
12980: ,P_EMAIL_ADDRESS =>
12981: hr_transaction_api.get_VARCHAR2_value
12982: (p_transaction_step_id => p_transaction_step_id
12983: ,p_name => 'P_EMAIL_ADDRESS')
12984: --
12985: ,P_FIRST_NAME =>

Line 12986: hr_transaction_api.get_VARCHAR2_value

12982: (p_transaction_step_id => p_transaction_step_id
12983: ,p_name => 'P_EMAIL_ADDRESS')
12984: --
12985: ,P_FIRST_NAME =>
12986: hr_transaction_api.get_VARCHAR2_value
12987: (p_transaction_step_id => p_transaction_step_id
12988: ,p_name => 'P_FIRST_NAME')
12989: --
12990: ,P_KNOWN_AS =>

Line 12991: hr_transaction_api.get_VARCHAR2_value

12987: (p_transaction_step_id => p_transaction_step_id
12988: ,p_name => 'P_FIRST_NAME')
12989: --
12990: ,P_KNOWN_AS =>
12991: hr_transaction_api.get_VARCHAR2_value
12992: (p_transaction_step_id => p_transaction_step_id
12993: ,p_name => 'P_KNOWN_AS')
12994: --
12995: ,P_MARITAL_STATUS =>

Line 12996: hr_transaction_api.get_VARCHAR2_value

12992: (p_transaction_step_id => p_transaction_step_id
12993: ,p_name => 'P_KNOWN_AS')
12994: --
12995: ,P_MARITAL_STATUS =>
12996: hr_transaction_api.get_VARCHAR2_value
12997: (p_transaction_step_id => p_transaction_step_id
12998: ,p_name => 'P_MARITAL_STATUS')
12999: --
13000: ,P_MIDDLE_NAMES =>

Line 13001: hr_transaction_api.get_VARCHAR2_value

12997: (p_transaction_step_id => p_transaction_step_id
12998: ,p_name => 'P_MARITAL_STATUS')
12999: --
13000: ,P_MIDDLE_NAMES =>
13001: hr_transaction_api.get_VARCHAR2_value
13002: (p_transaction_step_id => p_transaction_step_id
13003: ,p_name => 'P_MIDDLE_NAMES')
13004: --
13005: ,P_NATIONALITY =>

Line 13006: hr_transaction_api.get_VARCHAR2_value

13002: (p_transaction_step_id => p_transaction_step_id
13003: ,p_name => 'P_MIDDLE_NAMES')
13004: --
13005: ,P_NATIONALITY =>
13006: hr_transaction_api.get_VARCHAR2_value
13007: (p_transaction_step_id => p_transaction_step_id
13008: ,p_name => 'P_NATIONALITY')
13009: --
13010: ,P_NATIONAL_IDENTIFIER =>

Line 13011: hr_transaction_api.get_VARCHAR2_value

13007: (p_transaction_step_id => p_transaction_step_id
13008: ,p_name => 'P_NATIONALITY')
13009: --
13010: ,P_NATIONAL_IDENTIFIER =>
13011: hr_transaction_api.get_VARCHAR2_value
13012: (p_transaction_step_id => p_transaction_step_id
13013: ,p_name => 'P_NATIONAL_IDENTIFIER')
13014: --
13015: ,P_PREVIOUS_LAST_NAME =>

Line 13016: hr_transaction_api.get_VARCHAR2_value

13012: (p_transaction_step_id => p_transaction_step_id
13013: ,p_name => 'P_NATIONAL_IDENTIFIER')
13014: --
13015: ,P_PREVIOUS_LAST_NAME =>
13016: hr_transaction_api.get_VARCHAR2_value
13017: (p_transaction_step_id => p_transaction_step_id
13018: ,p_name => 'P_PREVIOUS_LAST_NAME')
13019: --
13020: ,P_REGISTERED_DISABLED_FLAG =>

Line 13021: hr_transaction_api.get_VARCHAR2_value

13017: (p_transaction_step_id => p_transaction_step_id
13018: ,p_name => 'P_PREVIOUS_LAST_NAME')
13019: --
13020: ,P_REGISTERED_DISABLED_FLAG =>
13021: hr_transaction_api.get_VARCHAR2_value
13022: (p_transaction_step_id => p_transaction_step_id
13023: ,p_name => 'P_REGISTERED_DISABLED_FLAG')
13024: --
13025: ,P_TITLE =>

Line 13026: hr_transaction_api.get_VARCHAR2_value

13022: (p_transaction_step_id => p_transaction_step_id
13023: ,p_name => 'P_REGISTERED_DISABLED_FLAG')
13024: --
13025: ,P_TITLE =>
13026: hr_transaction_api.get_VARCHAR2_value
13027: (p_transaction_step_id => p_transaction_step_id
13028: ,p_name => 'P_TITLE')
13029: --
13030: ,P_WORK_TELEPHONE =>

Line 13031: hr_transaction_api.get_VARCHAR2_value

13027: (p_transaction_step_id => p_transaction_step_id
13028: ,p_name => 'P_TITLE')
13029: --
13030: ,P_WORK_TELEPHONE =>
13031: hr_transaction_api.get_VARCHAR2_value
13032: (p_transaction_step_id => p_transaction_step_id
13033: ,p_name => 'P_WORK_TELEPHONE')
13034: --
13035: ,P_ATTRIBUTE_CATEGORY =>

Line 13036: hr_transaction_api.get_VARCHAR2_value

13032: (p_transaction_step_id => p_transaction_step_id
13033: ,p_name => 'P_WORK_TELEPHONE')
13034: --
13035: ,P_ATTRIBUTE_CATEGORY =>
13036: hr_transaction_api.get_VARCHAR2_value
13037: (p_transaction_step_id => p_transaction_step_id
13038: ,p_name => 'P_ATTRIBUTE_CATEGORY')
13039: --
13040: ,P_ATTRIBUTE1 =>

Line 13041: hr_transaction_api.get_VARCHAR2_value

13037: (p_transaction_step_id => p_transaction_step_id
13038: ,p_name => 'P_ATTRIBUTE_CATEGORY')
13039: --
13040: ,P_ATTRIBUTE1 =>
13041: hr_transaction_api.get_VARCHAR2_value
13042: (p_transaction_step_id => p_transaction_step_id
13043: ,p_name => 'P_ATTRIBUTE1')
13044: --
13045: ,P_ATTRIBUTE2 =>

Line 13046: hr_transaction_api.get_VARCHAR2_value

13042: (p_transaction_step_id => p_transaction_step_id
13043: ,p_name => 'P_ATTRIBUTE1')
13044: --
13045: ,P_ATTRIBUTE2 =>
13046: hr_transaction_api.get_VARCHAR2_value
13047: (p_transaction_step_id => p_transaction_step_id
13048: ,p_name => 'P_ATTRIBUTE2')
13049: --
13050: ,P_ATTRIBUTE3 =>

Line 13051: hr_transaction_api.get_VARCHAR2_value

13047: (p_transaction_step_id => p_transaction_step_id
13048: ,p_name => 'P_ATTRIBUTE2')
13049: --
13050: ,P_ATTRIBUTE3 =>
13051: hr_transaction_api.get_VARCHAR2_value
13052: (p_transaction_step_id => p_transaction_step_id
13053: ,p_name => 'P_ATTRIBUTE3')
13054: --
13055: ,P_ATTRIBUTE4 =>

Line 13056: hr_transaction_api.get_VARCHAR2_value

13052: (p_transaction_step_id => p_transaction_step_id
13053: ,p_name => 'P_ATTRIBUTE3')
13054: --
13055: ,P_ATTRIBUTE4 =>
13056: hr_transaction_api.get_VARCHAR2_value
13057: (p_transaction_step_id => p_transaction_step_id
13058: ,p_name => 'P_ATTRIBUTE4')
13059: --
13060: ,P_ATTRIBUTE5 =>

Line 13061: hr_transaction_api.get_VARCHAR2_value

13057: (p_transaction_step_id => p_transaction_step_id
13058: ,p_name => 'P_ATTRIBUTE4')
13059: --
13060: ,P_ATTRIBUTE5 =>
13061: hr_transaction_api.get_VARCHAR2_value
13062: (p_transaction_step_id => p_transaction_step_id
13063: ,p_name => 'P_ATTRIBUTE5')
13064: --
13065: ,P_ATTRIBUTE6 =>

Line 13066: hr_transaction_api.get_VARCHAR2_value

13062: (p_transaction_step_id => p_transaction_step_id
13063: ,p_name => 'P_ATTRIBUTE5')
13064: --
13065: ,P_ATTRIBUTE6 =>
13066: hr_transaction_api.get_VARCHAR2_value
13067: (p_transaction_step_id => p_transaction_step_id
13068: ,p_name => 'P_ATTRIBUTE6')
13069: --
13070: ,P_ATTRIBUTE7 =>

Line 13071: hr_transaction_api.get_VARCHAR2_value

13067: (p_transaction_step_id => p_transaction_step_id
13068: ,p_name => 'P_ATTRIBUTE6')
13069: --
13070: ,P_ATTRIBUTE7 =>
13071: hr_transaction_api.get_VARCHAR2_value
13072: (p_transaction_step_id => p_transaction_step_id
13073: ,p_name => 'P_ATTRIBUTE7')
13074: --
13075: ,P_ATTRIBUTE8 =>

Line 13076: hr_transaction_api.get_VARCHAR2_value

13072: (p_transaction_step_id => p_transaction_step_id
13073: ,p_name => 'P_ATTRIBUTE7')
13074: --
13075: ,P_ATTRIBUTE8 =>
13076: hr_transaction_api.get_VARCHAR2_value
13077: (p_transaction_step_id => p_transaction_step_id
13078: ,p_name => 'P_ATTRIBUTE8')
13079: --
13080: ,P_ATTRIBUTE9 =>

Line 13081: hr_transaction_api.get_VARCHAR2_value

13077: (p_transaction_step_id => p_transaction_step_id
13078: ,p_name => 'P_ATTRIBUTE8')
13079: --
13080: ,P_ATTRIBUTE9 =>
13081: hr_transaction_api.get_VARCHAR2_value
13082: (p_transaction_step_id => p_transaction_step_id
13083: ,p_name => 'P_ATTRIBUTE9')
13084: --
13085: ,P_ATTRIBUTE10 =>

Line 13086: hr_transaction_api.get_VARCHAR2_value

13082: (p_transaction_step_id => p_transaction_step_id
13083: ,p_name => 'P_ATTRIBUTE9')
13084: --
13085: ,P_ATTRIBUTE10 =>
13086: hr_transaction_api.get_VARCHAR2_value
13087: (p_transaction_step_id => p_transaction_step_id
13088: ,p_name => 'P_ATTRIBUTE10')
13089: --
13090: ,P_ATTRIBUTE11 =>

Line 13091: hr_transaction_api.get_VARCHAR2_value

13087: (p_transaction_step_id => p_transaction_step_id
13088: ,p_name => 'P_ATTRIBUTE10')
13089: --
13090: ,P_ATTRIBUTE11 =>
13091: hr_transaction_api.get_VARCHAR2_value
13092: (p_transaction_step_id => p_transaction_step_id
13093: ,p_name => 'P_ATTRIBUTE11')
13094: --
13095: ,P_ATTRIBUTE12 =>

Line 13096: hr_transaction_api.get_VARCHAR2_value

13092: (p_transaction_step_id => p_transaction_step_id
13093: ,p_name => 'P_ATTRIBUTE11')
13094: --
13095: ,P_ATTRIBUTE12 =>
13096: hr_transaction_api.get_VARCHAR2_value
13097: (p_transaction_step_id => p_transaction_step_id
13098: ,p_name => 'P_ATTRIBUTE12')
13099: --
13100: ,P_ATTRIBUTE13 =>

Line 13101: hr_transaction_api.get_VARCHAR2_value

13097: (p_transaction_step_id => p_transaction_step_id
13098: ,p_name => 'P_ATTRIBUTE12')
13099: --
13100: ,P_ATTRIBUTE13 =>
13101: hr_transaction_api.get_VARCHAR2_value
13102: (p_transaction_step_id => p_transaction_step_id
13103: ,p_name => 'P_ATTRIBUTE13')
13104: --
13105: ,P_ATTRIBUTE14 =>

Line 13106: hr_transaction_api.get_VARCHAR2_value

13102: (p_transaction_step_id => p_transaction_step_id
13103: ,p_name => 'P_ATTRIBUTE13')
13104: --
13105: ,P_ATTRIBUTE14 =>
13106: hr_transaction_api.get_VARCHAR2_value
13107: (p_transaction_step_id => p_transaction_step_id
13108: ,p_name => 'P_ATTRIBUTE14')
13109: --
13110: ,P_ATTRIBUTE15 =>

Line 13111: hr_transaction_api.get_VARCHAR2_value

13107: (p_transaction_step_id => p_transaction_step_id
13108: ,p_name => 'P_ATTRIBUTE14')
13109: --
13110: ,P_ATTRIBUTE15 =>
13111: hr_transaction_api.get_VARCHAR2_value
13112: (p_transaction_step_id => p_transaction_step_id
13113: ,p_name => 'P_ATTRIBUTE15')
13114: --
13115: ,P_ATTRIBUTE16 =>

Line 13116: hr_transaction_api.get_VARCHAR2_value

13112: (p_transaction_step_id => p_transaction_step_id
13113: ,p_name => 'P_ATTRIBUTE15')
13114: --
13115: ,P_ATTRIBUTE16 =>
13116: hr_transaction_api.get_VARCHAR2_value
13117: (p_transaction_step_id => p_transaction_step_id
13118: ,p_name => 'P_ATTRIBUTE16')
13119: --
13120: ,P_ATTRIBUTE17 =>

Line 13121: hr_transaction_api.get_VARCHAR2_value

13117: (p_transaction_step_id => p_transaction_step_id
13118: ,p_name => 'P_ATTRIBUTE16')
13119: --
13120: ,P_ATTRIBUTE17 =>
13121: hr_transaction_api.get_VARCHAR2_value
13122: (p_transaction_step_id => p_transaction_step_id
13123: ,p_name => 'P_ATTRIBUTE17')
13124: --
13125: ,P_ATTRIBUTE18 =>

Line 13126: hr_transaction_api.get_VARCHAR2_value

13122: (p_transaction_step_id => p_transaction_step_id
13123: ,p_name => 'P_ATTRIBUTE17')
13124: --
13125: ,P_ATTRIBUTE18 =>
13126: hr_transaction_api.get_VARCHAR2_value
13127: (p_transaction_step_id => p_transaction_step_id
13128: ,p_name => 'P_ATTRIBUTE18')
13129: --
13130: ,P_ATTRIBUTE19 =>

Line 13131: hr_transaction_api.get_VARCHAR2_value

13127: (p_transaction_step_id => p_transaction_step_id
13128: ,p_name => 'P_ATTRIBUTE18')
13129: --
13130: ,P_ATTRIBUTE19 =>
13131: hr_transaction_api.get_VARCHAR2_value
13132: (p_transaction_step_id => p_transaction_step_id
13133: ,p_name => 'P_ATTRIBUTE19')
13134: --
13135: ,P_ATTRIBUTE20 =>

Line 13136: hr_transaction_api.get_VARCHAR2_value

13132: (p_transaction_step_id => p_transaction_step_id
13133: ,p_name => 'P_ATTRIBUTE19')
13134: --
13135: ,P_ATTRIBUTE20 =>
13136: hr_transaction_api.get_VARCHAR2_value
13137: (p_transaction_step_id => p_transaction_step_id
13138: ,p_name => 'P_ATTRIBUTE20')
13139: --
13140: ,P_ATTRIBUTE21 =>

Line 13141: hr_transaction_api.get_VARCHAR2_value

13137: (p_transaction_step_id => p_transaction_step_id
13138: ,p_name => 'P_ATTRIBUTE20')
13139: --
13140: ,P_ATTRIBUTE21 =>
13141: hr_transaction_api.get_VARCHAR2_value
13142: (p_transaction_step_id => p_transaction_step_id
13143: ,p_name => 'P_ATTRIBUTE21')
13144: --
13145: ,P_ATTRIBUTE22 =>

Line 13146: hr_transaction_api.get_VARCHAR2_value

13142: (p_transaction_step_id => p_transaction_step_id
13143: ,p_name => 'P_ATTRIBUTE21')
13144: --
13145: ,P_ATTRIBUTE22 =>
13146: hr_transaction_api.get_VARCHAR2_value
13147: (p_transaction_step_id => p_transaction_step_id
13148: ,p_name => 'P_ATTRIBUTE22')
13149: --
13150: ,P_ATTRIBUTE23 =>

Line 13151: hr_transaction_api.get_VARCHAR2_value

13147: (p_transaction_step_id => p_transaction_step_id
13148: ,p_name => 'P_ATTRIBUTE22')
13149: --
13150: ,P_ATTRIBUTE23 =>
13151: hr_transaction_api.get_VARCHAR2_value
13152: (p_transaction_step_id => p_transaction_step_id
13153: ,p_name => 'P_ATTRIBUTE23')
13154: --
13155: ,P_ATTRIBUTE24 =>

Line 13156: hr_transaction_api.get_VARCHAR2_value

13152: (p_transaction_step_id => p_transaction_step_id
13153: ,p_name => 'P_ATTRIBUTE23')
13154: --
13155: ,P_ATTRIBUTE24 =>
13156: hr_transaction_api.get_VARCHAR2_value
13157: (p_transaction_step_id => p_transaction_step_id
13158: ,p_name => 'P_ATTRIBUTE24')
13159: --
13160: ,P_ATTRIBUTE25 =>

Line 13161: hr_transaction_api.get_VARCHAR2_value

13157: (p_transaction_step_id => p_transaction_step_id
13158: ,p_name => 'P_ATTRIBUTE24')
13159: --
13160: ,P_ATTRIBUTE25 =>
13161: hr_transaction_api.get_VARCHAR2_value
13162: (p_transaction_step_id => p_transaction_step_id
13163: ,p_name => 'P_ATTRIBUTE25')
13164: --
13165: ,P_ATTRIBUTE26 =>

Line 13166: hr_transaction_api.get_VARCHAR2_value

13162: (p_transaction_step_id => p_transaction_step_id
13163: ,p_name => 'P_ATTRIBUTE25')
13164: --
13165: ,P_ATTRIBUTE26 =>
13166: hr_transaction_api.get_VARCHAR2_value
13167: (p_transaction_step_id => p_transaction_step_id
13168: ,p_name => 'P_ATTRIBUTE26')
13169: --
13170: ,P_ATTRIBUTE27 =>

Line 13171: hr_transaction_api.get_VARCHAR2_value

13167: (p_transaction_step_id => p_transaction_step_id
13168: ,p_name => 'P_ATTRIBUTE26')
13169: --
13170: ,P_ATTRIBUTE27 =>
13171: hr_transaction_api.get_VARCHAR2_value
13172: (p_transaction_step_id => p_transaction_step_id
13173: ,p_name => 'P_ATTRIBUTE27')
13174: --
13175: ,P_ATTRIBUTE28 =>

Line 13176: hr_transaction_api.get_VARCHAR2_value

13172: (p_transaction_step_id => p_transaction_step_id
13173: ,p_name => 'P_ATTRIBUTE27')
13174: --
13175: ,P_ATTRIBUTE28 =>
13176: hr_transaction_api.get_VARCHAR2_value
13177: (p_transaction_step_id => p_transaction_step_id
13178: ,p_name => 'P_ATTRIBUTE28')
13179: --
13180: ,P_ATTRIBUTE29 =>

Line 13181: hr_transaction_api.get_VARCHAR2_value

13177: (p_transaction_step_id => p_transaction_step_id
13178: ,p_name => 'P_ATTRIBUTE28')
13179: --
13180: ,P_ATTRIBUTE29 =>
13181: hr_transaction_api.get_VARCHAR2_value
13182: (p_transaction_step_id => p_transaction_step_id
13183: ,p_name => 'P_ATTRIBUTE29')
13184: --
13185: ,P_ATTRIBUTE30 =>

Line 13186: hr_transaction_api.get_VARCHAR2_value

13182: (p_transaction_step_id => p_transaction_step_id
13183: ,p_name => 'P_ATTRIBUTE29')
13184: --
13185: ,P_ATTRIBUTE30 =>
13186: hr_transaction_api.get_VARCHAR2_value
13187: (p_transaction_step_id => p_transaction_step_id
13188: ,p_name => 'P_ATTRIBUTE30')
13189: --
13190: ,P_PER_INFORMATION_CATEGORY =>

Line 13191: hr_transaction_api.get_VARCHAR2_value

13187: (p_transaction_step_id => p_transaction_step_id
13188: ,p_name => 'P_ATTRIBUTE30')
13189: --
13190: ,P_PER_INFORMATION_CATEGORY =>
13191: hr_transaction_api.get_VARCHAR2_value
13192: (p_transaction_step_id => p_transaction_step_id
13193: ,p_name => 'P_PER_INFORMATION_CATEGORY')
13194: --
13195: ,P_PER_INFORMATION1 =>

Line 13196: hr_transaction_api.get_VARCHAR2_value

13192: (p_transaction_step_id => p_transaction_step_id
13193: ,p_name => 'P_PER_INFORMATION_CATEGORY')
13194: --
13195: ,P_PER_INFORMATION1 =>
13196: hr_transaction_api.get_VARCHAR2_value
13197: (p_transaction_step_id => p_transaction_step_id
13198: ,p_name => 'P_PER_INFORMATION1')
13199: --
13200: ,P_PER_INFORMATION2 =>

Line 13201: hr_transaction_api.get_VARCHAR2_value

13197: (p_transaction_step_id => p_transaction_step_id
13198: ,p_name => 'P_PER_INFORMATION1')
13199: --
13200: ,P_PER_INFORMATION2 =>
13201: hr_transaction_api.get_VARCHAR2_value
13202: (p_transaction_step_id => p_transaction_step_id
13203: ,p_name => 'P_PER_INFORMATION2')
13204: --
13205: ,P_PER_INFORMATION3 =>

Line 13206: hr_transaction_api.get_VARCHAR2_value

13202: (p_transaction_step_id => p_transaction_step_id
13203: ,p_name => 'P_PER_INFORMATION2')
13204: --
13205: ,P_PER_INFORMATION3 =>
13206: hr_transaction_api.get_VARCHAR2_value
13207: (p_transaction_step_id => p_transaction_step_id
13208: ,p_name => 'P_PER_INFORMATION3')
13209: --
13210: ,P_PER_INFORMATION4 =>

Line 13211: hr_transaction_api.get_VARCHAR2_value

13207: (p_transaction_step_id => p_transaction_step_id
13208: ,p_name => 'P_PER_INFORMATION3')
13209: --
13210: ,P_PER_INFORMATION4 =>
13211: hr_transaction_api.get_VARCHAR2_value
13212: (p_transaction_step_id => p_transaction_step_id
13213: ,p_name => 'P_PER_INFORMATION4')
13214: --
13215: ,P_PER_INFORMATION5 =>

Line 13216: hr_transaction_api.get_VARCHAR2_value

13212: (p_transaction_step_id => p_transaction_step_id
13213: ,p_name => 'P_PER_INFORMATION4')
13214: --
13215: ,P_PER_INFORMATION5 =>
13216: hr_transaction_api.get_VARCHAR2_value
13217: (p_transaction_step_id => p_transaction_step_id
13218: ,p_name => 'P_PER_INFORMATION5')
13219: --
13220: ,P_PER_INFORMATION6 =>

Line 13221: hr_transaction_api.get_VARCHAR2_value

13217: (p_transaction_step_id => p_transaction_step_id
13218: ,p_name => 'P_PER_INFORMATION5')
13219: --
13220: ,P_PER_INFORMATION6 =>
13221: hr_transaction_api.get_VARCHAR2_value
13222: (p_transaction_step_id => p_transaction_step_id
13223: ,p_name => 'P_PER_INFORMATION6')
13224: --
13225: ,P_PER_INFORMATION7 =>

Line 13226: hr_transaction_api.get_VARCHAR2_value

13222: (p_transaction_step_id => p_transaction_step_id
13223: ,p_name => 'P_PER_INFORMATION6')
13224: --
13225: ,P_PER_INFORMATION7 =>
13226: hr_transaction_api.get_VARCHAR2_value
13227: (p_transaction_step_id => p_transaction_step_id
13228: ,p_name => 'P_PER_INFORMATION7')
13229: --
13230: ,P_PER_INFORMATION8 =>

Line 13231: hr_transaction_api.get_VARCHAR2_value

13227: (p_transaction_step_id => p_transaction_step_id
13228: ,p_name => 'P_PER_INFORMATION7')
13229: --
13230: ,P_PER_INFORMATION8 =>
13231: hr_transaction_api.get_VARCHAR2_value
13232: (p_transaction_step_id => p_transaction_step_id
13233: ,p_name => 'P_PER_INFORMATION8')
13234: --
13235: ,P_PER_INFORMATION9 =>

Line 13236: hr_transaction_api.get_VARCHAR2_value

13232: (p_transaction_step_id => p_transaction_step_id
13233: ,p_name => 'P_PER_INFORMATION8')
13234: --
13235: ,P_PER_INFORMATION9 =>
13236: hr_transaction_api.get_VARCHAR2_value
13237: (p_transaction_step_id => p_transaction_step_id
13238: ,p_name => 'P_PER_INFORMATION9')
13239: --
13240: ,P_PER_INFORMATION10 =>

Line 13241: hr_transaction_api.get_VARCHAR2_value

13237: (p_transaction_step_id => p_transaction_step_id
13238: ,p_name => 'P_PER_INFORMATION9')
13239: --
13240: ,P_PER_INFORMATION10 =>
13241: hr_transaction_api.get_VARCHAR2_value
13242: (p_transaction_step_id => p_transaction_step_id
13243: ,p_name => 'P_PER_INFORMATION10')
13244: --
13245: ,P_PER_INFORMATION11 =>

Line 13246: hr_transaction_api.get_VARCHAR2_value

13242: (p_transaction_step_id => p_transaction_step_id
13243: ,p_name => 'P_PER_INFORMATION10')
13244: --
13245: ,P_PER_INFORMATION11 =>
13246: hr_transaction_api.get_VARCHAR2_value
13247: (p_transaction_step_id => p_transaction_step_id
13248: ,p_name => 'P_PER_INFORMATION11')
13249: --
13250: ,P_PER_INFORMATION12 =>

Line 13251: hr_transaction_api.get_VARCHAR2_value

13247: (p_transaction_step_id => p_transaction_step_id
13248: ,p_name => 'P_PER_INFORMATION11')
13249: --
13250: ,P_PER_INFORMATION12 =>
13251: hr_transaction_api.get_VARCHAR2_value
13252: (p_transaction_step_id => p_transaction_step_id
13253: ,p_name => 'P_PER_INFORMATION12')
13254: --
13255: ,P_PER_INFORMATION13 =>

Line 13256: hr_transaction_api.get_VARCHAR2_value

13252: (p_transaction_step_id => p_transaction_step_id
13253: ,p_name => 'P_PER_INFORMATION12')
13254: --
13255: ,P_PER_INFORMATION13 =>
13256: hr_transaction_api.get_VARCHAR2_value
13257: (p_transaction_step_id => p_transaction_step_id
13258: ,p_name => 'P_PER_INFORMATION13')
13259: --
13260: ,P_PER_INFORMATION14 =>

Line 13261: hr_transaction_api.get_VARCHAR2_value

13257: (p_transaction_step_id => p_transaction_step_id
13258: ,p_name => 'P_PER_INFORMATION13')
13259: --
13260: ,P_PER_INFORMATION14 =>
13261: hr_transaction_api.get_VARCHAR2_value
13262: (p_transaction_step_id => p_transaction_step_id
13263: ,p_name => 'P_PER_INFORMATION14')
13264: --
13265: ,P_PER_INFORMATION15 =>

Line 13266: hr_transaction_api.get_VARCHAR2_value

13262: (p_transaction_step_id => p_transaction_step_id
13263: ,p_name => 'P_PER_INFORMATION14')
13264: --
13265: ,P_PER_INFORMATION15 =>
13266: hr_transaction_api.get_VARCHAR2_value
13267: (p_transaction_step_id => p_transaction_step_id
13268: ,p_name => 'P_PER_INFORMATION15')
13269: --
13270: ,P_PER_INFORMATION16 =>

Line 13271: hr_transaction_api.get_VARCHAR2_value

13267: (p_transaction_step_id => p_transaction_step_id
13268: ,p_name => 'P_PER_INFORMATION15')
13269: --
13270: ,P_PER_INFORMATION16 =>
13271: hr_transaction_api.get_VARCHAR2_value
13272: (p_transaction_step_id => p_transaction_step_id
13273: ,p_name => 'P_PER_INFORMATION16')
13274: --
13275: ,P_PER_INFORMATION17 =>

Line 13276: hr_transaction_api.get_VARCHAR2_value

13272: (p_transaction_step_id => p_transaction_step_id
13273: ,p_name => 'P_PER_INFORMATION16')
13274: --
13275: ,P_PER_INFORMATION17 =>
13276: hr_transaction_api.get_VARCHAR2_value
13277: (p_transaction_step_id => p_transaction_step_id
13278: ,p_name => 'P_PER_INFORMATION17')
13279: --
13280: ,P_PER_INFORMATION18 =>

Line 13281: hr_transaction_api.get_VARCHAR2_value

13277: (p_transaction_step_id => p_transaction_step_id
13278: ,p_name => 'P_PER_INFORMATION17')
13279: --
13280: ,P_PER_INFORMATION18 =>
13281: hr_transaction_api.get_VARCHAR2_value
13282: (p_transaction_step_id => p_transaction_step_id
13283: ,p_name => 'P_PER_INFORMATION18')
13284: --
13285: ,P_PER_INFORMATION19 =>

Line 13286: hr_transaction_api.get_VARCHAR2_value

13282: (p_transaction_step_id => p_transaction_step_id
13283: ,p_name => 'P_PER_INFORMATION18')
13284: --
13285: ,P_PER_INFORMATION19 =>
13286: hr_transaction_api.get_VARCHAR2_value
13287: (p_transaction_step_id => p_transaction_step_id
13288: ,p_name => 'P_PER_INFORMATION19')
13289: --
13290: ,P_PER_INFORMATION20 =>

Line 13291: hr_transaction_api.get_VARCHAR2_value

13287: (p_transaction_step_id => p_transaction_step_id
13288: ,p_name => 'P_PER_INFORMATION19')
13289: --
13290: ,P_PER_INFORMATION20 =>
13291: hr_transaction_api.get_VARCHAR2_value
13292: (p_transaction_step_id => p_transaction_step_id
13293: ,p_name => 'P_PER_INFORMATION20')
13294: --
13295: ,P_PER_INFORMATION21 =>

Line 13296: hr_transaction_api.get_VARCHAR2_value

13292: (p_transaction_step_id => p_transaction_step_id
13293: ,p_name => 'P_PER_INFORMATION20')
13294: --
13295: ,P_PER_INFORMATION21 =>
13296: hr_transaction_api.get_VARCHAR2_value
13297: (p_transaction_step_id => p_transaction_step_id
13298: ,p_name => 'P_PER_INFORMATION21')
13299: --
13300: ,P_PER_INFORMATION22 =>

Line 13301: hr_transaction_api.get_VARCHAR2_value

13297: (p_transaction_step_id => p_transaction_step_id
13298: ,p_name => 'P_PER_INFORMATION21')
13299: --
13300: ,P_PER_INFORMATION22 =>
13301: hr_transaction_api.get_VARCHAR2_value
13302: (p_transaction_step_id => p_transaction_step_id
13303: ,p_name => 'P_PER_INFORMATION22')
13304: --
13305: ,P_PER_INFORMATION23 =>

Line 13306: hr_transaction_api.get_VARCHAR2_value

13302: (p_transaction_step_id => p_transaction_step_id
13303: ,p_name => 'P_PER_INFORMATION22')
13304: --
13305: ,P_PER_INFORMATION23 =>
13306: hr_transaction_api.get_VARCHAR2_value
13307: (p_transaction_step_id => p_transaction_step_id
13308: ,p_name => 'P_PER_INFORMATION23')
13309: --
13310: ,P_PER_INFORMATION24 =>

Line 13311: hr_transaction_api.get_VARCHAR2_value

13307: (p_transaction_step_id => p_transaction_step_id
13308: ,p_name => 'P_PER_INFORMATION23')
13309: --
13310: ,P_PER_INFORMATION24 =>
13311: hr_transaction_api.get_VARCHAR2_value
13312: (p_transaction_step_id => p_transaction_step_id
13313: ,p_name => 'P_PER_INFORMATION24')
13314: --
13315: ,P_PER_INFORMATION25 =>

Line 13316: hr_transaction_api.get_VARCHAR2_value

13312: (p_transaction_step_id => p_transaction_step_id
13313: ,p_name => 'P_PER_INFORMATION24')
13314: --
13315: ,P_PER_INFORMATION25 =>
13316: hr_transaction_api.get_VARCHAR2_value
13317: (p_transaction_step_id => p_transaction_step_id
13318: ,p_name => 'P_PER_INFORMATION25')
13319: --
13320: ,P_PER_INFORMATION26 =>

Line 13321: hr_transaction_api.get_VARCHAR2_value

13317: (p_transaction_step_id => p_transaction_step_id
13318: ,p_name => 'P_PER_INFORMATION25')
13319: --
13320: ,P_PER_INFORMATION26 =>
13321: hr_transaction_api.get_VARCHAR2_value
13322: (p_transaction_step_id => p_transaction_step_id
13323: ,p_name => 'P_PER_INFORMATION26')
13324: --
13325: ,P_PER_INFORMATION27 =>

Line 13326: hr_transaction_api.get_VARCHAR2_value

13322: (p_transaction_step_id => p_transaction_step_id
13323: ,p_name => 'P_PER_INFORMATION26')
13324: --
13325: ,P_PER_INFORMATION27 =>
13326: hr_transaction_api.get_VARCHAR2_value
13327: (p_transaction_step_id => p_transaction_step_id
13328: ,p_name => 'P_PER_INFORMATION27')
13329: --
13330: ,P_PER_INFORMATION28 =>

Line 13331: hr_transaction_api.get_VARCHAR2_value

13327: (p_transaction_step_id => p_transaction_step_id
13328: ,p_name => 'P_PER_INFORMATION27')
13329: --
13330: ,P_PER_INFORMATION28 =>
13331: hr_transaction_api.get_VARCHAR2_value
13332: (p_transaction_step_id => p_transaction_step_id
13333: ,p_name => 'P_PER_INFORMATION28')
13334: --
13335: ,P_PER_INFORMATION29 =>

Line 13336: hr_transaction_api.get_VARCHAR2_value

13332: (p_transaction_step_id => p_transaction_step_id
13333: ,p_name => 'P_PER_INFORMATION28')
13334: --
13335: ,P_PER_INFORMATION29 =>
13336: hr_transaction_api.get_VARCHAR2_value
13337: (p_transaction_step_id => p_transaction_step_id
13338: ,p_name => 'P_PER_INFORMATION29')
13339: --
13340: ,P_PER_INFORMATION30 =>

Line 13341: hr_transaction_api.get_VARCHAR2_value

13337: (p_transaction_step_id => p_transaction_step_id
13338: ,p_name => 'P_PER_INFORMATION29')
13339: --
13340: ,P_PER_INFORMATION30 =>
13341: hr_transaction_api.get_VARCHAR2_value
13342: (p_transaction_step_id => p_transaction_step_id
13343: ,p_name => 'P_PER_INFORMATION30')
13344: --
13345: ,P_CORRESPONDENCE_LANGUAGE =>

Line 13346: hr_transaction_api.get_VARCHAR2_value

13342: (p_transaction_step_id => p_transaction_step_id
13343: ,p_name => 'P_PER_INFORMATION30')
13344: --
13345: ,P_CORRESPONDENCE_LANGUAGE =>
13346: hr_transaction_api.get_VARCHAR2_value
13347: (p_transaction_step_id => p_transaction_step_id
13348: ,p_name => 'P_CORRESPONDENCE_LANGUAGE')
13349: --
13350: ,P_HONORS =>

Line 13351: hr_transaction_api.get_VARCHAR2_value

13347: (p_transaction_step_id => p_transaction_step_id
13348: ,p_name => 'P_CORRESPONDENCE_LANGUAGE')
13349: --
13350: ,P_HONORS =>
13351: hr_transaction_api.get_VARCHAR2_value
13352: (p_transaction_step_id => p_transaction_step_id
13353: ,p_name => 'P_HONORS')
13354: --
13355: ,P_PRE_NAME_ADJUNCT =>

Line 13356: hr_transaction_api.get_VARCHAR2_value

13352: (p_transaction_step_id => p_transaction_step_id
13353: ,p_name => 'P_HONORS')
13354: --
13355: ,P_PRE_NAME_ADJUNCT =>
13356: hr_transaction_api.get_VARCHAR2_value
13357: (p_transaction_step_id => p_transaction_step_id
13358: ,p_name => 'P_PRE_NAME_ADJUNCT')
13359: --
13360: ,P_SUFFIX =>

Line 13361: hr_transaction_api.get_VARCHAR2_value

13357: (p_transaction_step_id => p_transaction_step_id
13358: ,p_name => 'P_PRE_NAME_ADJUNCT')
13359: --
13360: ,P_SUFFIX =>
13361: hr_transaction_api.get_VARCHAR2_value
13362: (p_transaction_step_id => p_transaction_step_id
13363: ,p_name => 'P_SUFFIX')
13364: --
13365: ,P_CREATE_MIRROR_FLAG =>

Line 13366: hr_transaction_api.get_VARCHAR2_value

13362: (p_transaction_step_id => p_transaction_step_id
13363: ,p_name => 'P_SUFFIX')
13364: --
13365: ,P_CREATE_MIRROR_FLAG =>
13366: hr_transaction_api.get_VARCHAR2_value
13367: (p_transaction_step_id => p_transaction_step_id
13368: ,p_name => 'P_CREATE_MIRROR_FLAG')
13369:
13370: --

Line 13372: hr_transaction_api.get_VARCHAR2_value

13368: ,p_name => 'P_CREATE_MIRROR_FLAG')
13369:
13370: --
13371: ,P_MIRROR_TYPE =>
13372: hr_transaction_api.get_VARCHAR2_value
13373: (p_transaction_step_id => p_transaction_step_id
13374: ,p_name => 'P_MIRROR_TYPE')
13375:
13376: --

Line 13378: hr_transaction_api.get_VARCHAR2_value

13374: ,p_name => 'P_MIRROR_TYPE')
13375:
13376: --
13377: ,P_MIRROR_CONT_ATTRIBUTE_CAT =>
13378: hr_transaction_api.get_VARCHAR2_value
13379: (p_transaction_step_id => p_transaction_step_id
13380: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
13381: --
13382: ,P_MIRROR_CONT_ATTRIBUTE1 =>

Line 13383: hr_transaction_api.get_VARCHAR2_value

13379: (p_transaction_step_id => p_transaction_step_id
13380: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
13381: --
13382: ,P_MIRROR_CONT_ATTRIBUTE1 =>
13383: hr_transaction_api.get_VARCHAR2_value
13384: (p_transaction_step_id => p_transaction_step_id
13385: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
13386: --
13387: ,P_MIRROR_CONT_ATTRIBUTE2 =>

Line 13388: hr_transaction_api.get_VARCHAR2_value

13384: (p_transaction_step_id => p_transaction_step_id
13385: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
13386: --
13387: ,P_MIRROR_CONT_ATTRIBUTE2 =>
13388: hr_transaction_api.get_VARCHAR2_value
13389: (p_transaction_step_id => p_transaction_step_id
13390: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
13391: --
13392: ,P_MIRROR_CONT_ATTRIBUTE3 =>

Line 13393: hr_transaction_api.get_VARCHAR2_value

13389: (p_transaction_step_id => p_transaction_step_id
13390: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
13391: --
13392: ,P_MIRROR_CONT_ATTRIBUTE3 =>
13393: hr_transaction_api.get_VARCHAR2_value
13394: (p_transaction_step_id => p_transaction_step_id
13395: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
13396: --
13397: ,P_MIRROR_CONT_ATTRIBUTE4 =>

Line 13398: hr_transaction_api.get_VARCHAR2_value

13394: (p_transaction_step_id => p_transaction_step_id
13395: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
13396: --
13397: ,P_MIRROR_CONT_ATTRIBUTE4 =>
13398: hr_transaction_api.get_VARCHAR2_value
13399: (p_transaction_step_id => p_transaction_step_id
13400: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
13401: --
13402: ,P_MIRROR_CONT_ATTRIBUTE5 =>

Line 13403: hr_transaction_api.get_VARCHAR2_value

13399: (p_transaction_step_id => p_transaction_step_id
13400: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
13401: --
13402: ,P_MIRROR_CONT_ATTRIBUTE5 =>
13403: hr_transaction_api.get_VARCHAR2_value
13404: (p_transaction_step_id => p_transaction_step_id
13405: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
13406: --
13407: ,P_MIRROR_CONT_ATTRIBUTE6 =>

Line 13408: hr_transaction_api.get_VARCHAR2_value

13404: (p_transaction_step_id => p_transaction_step_id
13405: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
13406: --
13407: ,P_MIRROR_CONT_ATTRIBUTE6 =>
13408: hr_transaction_api.get_VARCHAR2_value
13409: (p_transaction_step_id => p_transaction_step_id
13410: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
13411: --
13412: ,P_MIRROR_CONT_ATTRIBUTE7 =>

Line 13413: hr_transaction_api.get_VARCHAR2_value

13409: (p_transaction_step_id => p_transaction_step_id
13410: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
13411: --
13412: ,P_MIRROR_CONT_ATTRIBUTE7 =>
13413: hr_transaction_api.get_VARCHAR2_value
13414: (p_transaction_step_id => p_transaction_step_id
13415: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
13416: --
13417: ,P_MIRROR_CONT_ATTRIBUTE8 =>

Line 13418: hr_transaction_api.get_VARCHAR2_value

13414: (p_transaction_step_id => p_transaction_step_id
13415: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
13416: --
13417: ,P_MIRROR_CONT_ATTRIBUTE8 =>
13418: hr_transaction_api.get_VARCHAR2_value
13419: (p_transaction_step_id => p_transaction_step_id
13420: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
13421: --
13422: ,P_MIRROR_CONT_ATTRIBUTE9 =>

Line 13423: hr_transaction_api.get_VARCHAR2_value

13419: (p_transaction_step_id => p_transaction_step_id
13420: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
13421: --
13422: ,P_MIRROR_CONT_ATTRIBUTE9 =>
13423: hr_transaction_api.get_VARCHAR2_value
13424: (p_transaction_step_id => p_transaction_step_id
13425: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
13426: --
13427: ,P_MIRROR_CONT_ATTRIBUTE10 =>

Line 13428: hr_transaction_api.get_VARCHAR2_value

13424: (p_transaction_step_id => p_transaction_step_id
13425: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
13426: --
13427: ,P_MIRROR_CONT_ATTRIBUTE10 =>
13428: hr_transaction_api.get_VARCHAR2_value
13429: (p_transaction_step_id => p_transaction_step_id
13430: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
13431: --
13432: ,P_MIRROR_CONT_ATTRIBUTE11 =>

Line 13433: hr_transaction_api.get_VARCHAR2_value

13429: (p_transaction_step_id => p_transaction_step_id
13430: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
13431: --
13432: ,P_MIRROR_CONT_ATTRIBUTE11 =>
13433: hr_transaction_api.get_VARCHAR2_value
13434: (p_transaction_step_id => p_transaction_step_id
13435: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
13436: --
13437: ,P_MIRROR_CONT_ATTRIBUTE12 =>

Line 13438: hr_transaction_api.get_VARCHAR2_value

13434: (p_transaction_step_id => p_transaction_step_id
13435: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
13436: --
13437: ,P_MIRROR_CONT_ATTRIBUTE12 =>
13438: hr_transaction_api.get_VARCHAR2_value
13439: (p_transaction_step_id => p_transaction_step_id
13440: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
13441: --
13442: ,P_MIRROR_CONT_ATTRIBUTE13 =>

Line 13443: hr_transaction_api.get_VARCHAR2_value

13439: (p_transaction_step_id => p_transaction_step_id
13440: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
13441: --
13442: ,P_MIRROR_CONT_ATTRIBUTE13 =>
13443: hr_transaction_api.get_VARCHAR2_value
13444: (p_transaction_step_id => p_transaction_step_id
13445: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
13446: --
13447: ,P_MIRROR_CONT_ATTRIBUTE14 =>

Line 13448: hr_transaction_api.get_VARCHAR2_value

13444: (p_transaction_step_id => p_transaction_step_id
13445: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
13446: --
13447: ,P_MIRROR_CONT_ATTRIBUTE14 =>
13448: hr_transaction_api.get_VARCHAR2_value
13449: (p_transaction_step_id => p_transaction_step_id
13450: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
13451: --
13452: ,P_MIRROR_CONT_ATTRIBUTE15 =>

Line 13453: hr_transaction_api.get_VARCHAR2_value

13449: (p_transaction_step_id => p_transaction_step_id
13450: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
13451: --
13452: ,P_MIRROR_CONT_ATTRIBUTE15 =>
13453: hr_transaction_api.get_VARCHAR2_value
13454: (p_transaction_step_id => p_transaction_step_id
13455: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
13456: --
13457: ,P_MIRROR_CONT_ATTRIBUTE16 =>

Line 13458: hr_transaction_api.get_VARCHAR2_value

13454: (p_transaction_step_id => p_transaction_step_id
13455: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
13456: --
13457: ,P_MIRROR_CONT_ATTRIBUTE16 =>
13458: hr_transaction_api.get_VARCHAR2_value
13459: (p_transaction_step_id => p_transaction_step_id
13460: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
13461: --
13462: ,P_MIRROR_CONT_ATTRIBUTE17 =>

Line 13463: hr_transaction_api.get_VARCHAR2_value

13459: (p_transaction_step_id => p_transaction_step_id
13460: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
13461: --
13462: ,P_MIRROR_CONT_ATTRIBUTE17 =>
13463: hr_transaction_api.get_VARCHAR2_value
13464: (p_transaction_step_id => p_transaction_step_id
13465: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
13466: --
13467: ,P_MIRROR_CONT_ATTRIBUTE18 =>

Line 13468: hr_transaction_api.get_VARCHAR2_value

13464: (p_transaction_step_id => p_transaction_step_id
13465: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
13466: --
13467: ,P_MIRROR_CONT_ATTRIBUTE18 =>
13468: hr_transaction_api.get_VARCHAR2_value
13469: (p_transaction_step_id => p_transaction_step_id
13470: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
13471: --
13472: ,P_MIRROR_CONT_ATTRIBUTE19 =>

Line 13473: hr_transaction_api.get_VARCHAR2_value

13469: (p_transaction_step_id => p_transaction_step_id
13470: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
13471: --
13472: ,P_MIRROR_CONT_ATTRIBUTE19 =>
13473: hr_transaction_api.get_VARCHAR2_value
13474: (p_transaction_step_id => p_transaction_step_id
13475: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
13476: --
13477: ,P_MIRROR_CONT_ATTRIBUTE20 =>

Line 13478: hr_transaction_api.get_VARCHAR2_value

13474: (p_transaction_step_id => p_transaction_step_id
13475: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
13476: --
13477: ,P_MIRROR_CONT_ATTRIBUTE20 =>
13478: hr_transaction_api.get_VARCHAR2_value
13479: (p_transaction_step_id => p_transaction_step_id
13480: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE20')
13481: --
13482: ,P_CONTACT_RELATIONSHIP_ID => l_contact_relationship_id1

Line 13503: hr_transaction_api.get_VARCHAR2_value

13499: --
13500: ,P_ORIG_HIRE_WARNING => l_con_orig_hire_warning1
13501: --
13502: ,P_CONT_INFORMATION_CATEGORY =>
13503: hr_transaction_api.get_VARCHAR2_value
13504: (p_transaction_step_id => p_transaction_step_id
13505: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
13506: --
13507: ,P_CONT_INFORMATION1 =>

Line 13508: hr_transaction_api.get_VARCHAR2_value

13504: (p_transaction_step_id => p_transaction_step_id
13505: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
13506: --
13507: ,P_CONT_INFORMATION1 =>
13508: hr_transaction_api.get_VARCHAR2_value
13509: (p_transaction_step_id => p_transaction_step_id
13510: ,p_name => 'P_CONT_INFORMATION1')
13511: --
13512: ,P_CONT_INFORMATION2 =>

Line 13513: hr_transaction_api.get_VARCHAR2_value

13509: (p_transaction_step_id => p_transaction_step_id
13510: ,p_name => 'P_CONT_INFORMATION1')
13511: --
13512: ,P_CONT_INFORMATION2 =>
13513: hr_transaction_api.get_VARCHAR2_value
13514: (p_transaction_step_id => p_transaction_step_id
13515: ,p_name => 'P_CONT_INFORMATION2')
13516: --
13517: ,P_CONT_INFORMATION3 =>

Line 13518: hr_transaction_api.get_VARCHAR2_value

13514: (p_transaction_step_id => p_transaction_step_id
13515: ,p_name => 'P_CONT_INFORMATION2')
13516: --
13517: ,P_CONT_INFORMATION3 =>
13518: hr_transaction_api.get_VARCHAR2_value
13519: (p_transaction_step_id => p_transaction_step_id
13520: ,p_name => 'P_CONT_INFORMATION3')
13521: --
13522: ,P_CONT_INFORMATION4 =>

Line 13523: hr_transaction_api.get_VARCHAR2_value

13519: (p_transaction_step_id => p_transaction_step_id
13520: ,p_name => 'P_CONT_INFORMATION3')
13521: --
13522: ,P_CONT_INFORMATION4 =>
13523: hr_transaction_api.get_VARCHAR2_value
13524: (p_transaction_step_id => p_transaction_step_id
13525: ,p_name => 'P_CONT_INFORMATION4')
13526: --
13527: ,P_CONT_INFORMATION5 =>

Line 13528: hr_transaction_api.get_VARCHAR2_value

13524: (p_transaction_step_id => p_transaction_step_id
13525: ,p_name => 'P_CONT_INFORMATION4')
13526: --
13527: ,P_CONT_INFORMATION5 =>
13528: hr_transaction_api.get_VARCHAR2_value
13529: (p_transaction_step_id => p_transaction_step_id
13530: ,p_name => 'P_CONT_INFORMATION5')
13531: --
13532: ,P_CONT_INFORMATION6 =>

Line 13533: hr_transaction_api.get_VARCHAR2_value

13529: (p_transaction_step_id => p_transaction_step_id
13530: ,p_name => 'P_CONT_INFORMATION5')
13531: --
13532: ,P_CONT_INFORMATION6 =>
13533: hr_transaction_api.get_VARCHAR2_value
13534: (p_transaction_step_id => p_transaction_step_id
13535: ,p_name => 'P_CONT_INORMATION6')
13536: --
13537: ,P_CONT_INFORMATION7 =>

Line 13538: hr_transaction_api.get_VARCHAR2_value

13534: (p_transaction_step_id => p_transaction_step_id
13535: ,p_name => 'P_CONT_INORMATION6')
13536: --
13537: ,P_CONT_INFORMATION7 =>
13538: hr_transaction_api.get_VARCHAR2_value
13539: (p_transaction_step_id => p_transaction_step_id
13540: ,p_name => 'P_CONT_INFORMATION7')
13541: --
13542: ,P_CONT_INFORMATION8 =>

Line 13543: hr_transaction_api.get_VARCHAR2_value

13539: (p_transaction_step_id => p_transaction_step_id
13540: ,p_name => 'P_CONT_INFORMATION7')
13541: --
13542: ,P_CONT_INFORMATION8 =>
13543: hr_transaction_api.get_VARCHAR2_value
13544: (p_transaction_step_id => p_transaction_step_id
13545: ,p_name => 'P_CONT_INFORMATION8')
13546: --
13547: ,P_CONT_INFORMATION9 =>

Line 13548: hr_transaction_api.get_VARCHAR2_value

13544: (p_transaction_step_id => p_transaction_step_id
13545: ,p_name => 'P_CONT_INFORMATION8')
13546: --
13547: ,P_CONT_INFORMATION9 =>
13548: hr_transaction_api.get_VARCHAR2_value
13549: (p_transaction_step_id => p_transaction_step_id
13550: ,p_name => 'P_CONT_INFORMATION9')
13551: --
13552: ,P_CONT_INFORMATION10 =>

Line 13553: hr_transaction_api.get_VARCHAR2_value

13549: (p_transaction_step_id => p_transaction_step_id
13550: ,p_name => 'P_CONT_INFORMATION9')
13551: --
13552: ,P_CONT_INFORMATION10 =>
13553: hr_transaction_api.get_VARCHAR2_value
13554: (p_transaction_step_id => p_transaction_step_id
13555: ,p_name => 'P_CONT_INFORMATION10')
13556: --
13557: ,P_CONT_INFORMATION11 =>

Line 13558: hr_transaction_api.get_VARCHAR2_value

13554: (p_transaction_step_id => p_transaction_step_id
13555: ,p_name => 'P_CONT_INFORMATION10')
13556: --
13557: ,P_CONT_INFORMATION11 =>
13558: hr_transaction_api.get_VARCHAR2_value
13559: (p_transaction_step_id => p_transaction_step_id
13560: ,p_name => 'P_CONT_INFORMATION11')
13561: --
13562: ,P_CONT_INFORMATION12 =>

Line 13563: hr_transaction_api.get_VARCHAR2_value

13559: (p_transaction_step_id => p_transaction_step_id
13560: ,p_name => 'P_CONT_INFORMATION11')
13561: --
13562: ,P_CONT_INFORMATION12 =>
13563: hr_transaction_api.get_VARCHAR2_value
13564: (p_transaction_step_id => p_transaction_step_id
13565: ,p_name => 'P_CONT_INFORMATION12')
13566: --
13567: ,P_CONT_INFORMATION13 =>

Line 13568: hr_transaction_api.get_VARCHAR2_value

13564: (p_transaction_step_id => p_transaction_step_id
13565: ,p_name => 'P_CONT_INFORMATION12')
13566: --
13567: ,P_CONT_INFORMATION13 =>
13568: hr_transaction_api.get_VARCHAR2_value
13569: (p_transaction_step_id => p_transaction_step_id
13570: ,p_name => 'P_CONT_INFORMATION13')
13571: --
13572: ,P_CONT_INFORMATION14 =>

Line 13573: hr_transaction_api.get_VARCHAR2_value

13569: (p_transaction_step_id => p_transaction_step_id
13570: ,p_name => 'P_CONT_INFORMATION13')
13571: --
13572: ,P_CONT_INFORMATION14 =>
13573: hr_transaction_api.get_VARCHAR2_value
13574: (p_transaction_step_id => p_transaction_step_id
13575: ,p_name => 'P_CONT_INFORMATION14')
13576: --
13577: ,P_CONT_INFORMATION15 =>

Line 13578: hr_transaction_api.get_VARCHAR2_value

13574: (p_transaction_step_id => p_transaction_step_id
13575: ,p_name => 'P_CONT_INFORMATION14')
13576: --
13577: ,P_CONT_INFORMATION15 =>
13578: hr_transaction_api.get_VARCHAR2_value
13579: (p_transaction_step_id => p_transaction_step_id
13580: ,p_name => 'P_CONT_INFORMATION15')
13581: --
13582: ,P_CONT_INFORMATION16 =>

Line 13583: hr_transaction_api.get_VARCHAR2_value

13579: (p_transaction_step_id => p_transaction_step_id
13580: ,p_name => 'P_CONT_INFORMATION15')
13581: --
13582: ,P_CONT_INFORMATION16 =>
13583: hr_transaction_api.get_VARCHAR2_value
13584: (p_transaction_step_id => p_transaction_step_id
13585: ,p_name => 'P_CONT_INFORMATION16')
13586: --
13587: ,P_CONT_INFORMATION17 =>

Line 13588: hr_transaction_api.get_VARCHAR2_value

13584: (p_transaction_step_id => p_transaction_step_id
13585: ,p_name => 'P_CONT_INFORMATION16')
13586: --
13587: ,P_CONT_INFORMATION17 =>
13588: hr_transaction_api.get_VARCHAR2_value
13589: (p_transaction_step_id => p_transaction_step_id
13590: ,p_name => 'P_CONT_INFORMATION17')
13591: --
13592: ,P_CONT_INFORMATION18 =>

Line 13593: hr_transaction_api.get_VARCHAR2_value

13589: (p_transaction_step_id => p_transaction_step_id
13590: ,p_name => 'P_CONT_INFORMATION17')
13591: --
13592: ,P_CONT_INFORMATION18 =>
13593: hr_transaction_api.get_VARCHAR2_value
13594: (p_transaction_step_id => p_transaction_step_id
13595: ,p_name => 'P_CONT_INFORMATION18')
13596: --
13597: ,P_CONT_INFORMATION19 =>

Line 13598: hr_transaction_api.get_VARCHAR2_value

13594: (p_transaction_step_id => p_transaction_step_id
13595: ,p_name => 'P_CONT_INFORMATION18')
13596: --
13597: ,P_CONT_INFORMATION19 =>
13598: hr_transaction_api.get_VARCHAR2_value
13599: (p_transaction_step_id => p_transaction_step_id
13600: ,p_name => 'P_CONT_INFORMATION19')
13601: --
13602: ,P_CONT_INFORMATION20 =>

Line 13603: hr_transaction_api.get_VARCHAR2_value

13599: (p_transaction_step_id => p_transaction_step_id
13600: ,p_name => 'P_CONT_INFORMATION19')
13601: --
13602: ,P_CONT_INFORMATION20 =>
13603: hr_transaction_api.get_VARCHAR2_value
13604: (p_transaction_step_id => p_transaction_step_id
13605: ,p_name => 'P_CONT_INFORMATION20')
13606: );
13607:

Line 13618: hr_transaction_api.get_NUMBER_value

13614:
13615: if (l_contact_operation = 'EMRG_OVRW_UPD' and (l_primary_contact_flag = 'Y' or
13616: l_primary_contact_flag = 'N')) then
13617: open get_emrg_relid_ovn(
13618: hr_transaction_api.get_NUMBER_value
13619: (p_transaction_step_id => p_transaction_step_id
13620: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13621: ,hr_transaction_api.get_number_value
13622: (p_transaction_step_id => p_transaction_step_id

Line 13621: ,hr_transaction_api.get_number_value

13617: open get_emrg_relid_ovn(
13618: hr_transaction_api.get_NUMBER_value
13619: (p_transaction_step_id => p_transaction_step_id
13620: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13621: ,hr_transaction_api.get_number_value
13622: (p_transaction_step_id => p_transaction_step_id
13623: ,p_name => 'P_CONTACT_PERSON_ID')
13624: ,hr_transaction_api.get_number_value
13625: (p_transaction_step_id => p_transaction_step_id

Line 13624: ,hr_transaction_api.get_number_value

13620: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13621: ,hr_transaction_api.get_number_value
13622: (p_transaction_step_id => p_transaction_step_id
13623: ,p_name => 'P_CONTACT_PERSON_ID')
13624: ,hr_transaction_api.get_number_value
13625: (p_transaction_step_id => p_transaction_step_id
13626: ,p_name => 'P_PERSON_ID'));
13627: -- Bug 3469145 : updating the primary cont flag if it has changed.
13628: -- Bug 3504216 : passing date_start as sysdate

Line 13653: hr_transaction_api.get_DATE_value

13649: P_VALIDATE => p_validate
13650: --
13651: ,P_EFFECTIVE_DATE => l_effective_date
13652: /* SFL changes
13653: hr_transaction_api.get_DATE_value
13654: (p_transaction_step_id => p_transaction_step_id
13655: ,p_name => 'p_cont_EFFECTIVE_DATE')
13656: */
13657: --

Line 13659: hr_transaction_api.get_NUMBER_value

13655: ,p_name => 'p_cont_EFFECTIVE_DATE')
13656: */
13657: --
13658: ,P_CONTACT_RELATIONSHIP_ID =>
13659: hr_transaction_api.get_NUMBER_value
13660: (p_transaction_step_id => p_transaction_step_id
13661: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13662: --
13663: ,P_CONTACT_TYPE =>

Line 13664: hr_transaction_api.get_VARCHAR2_value

13660: (p_transaction_step_id => p_transaction_step_id
13661: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
13662: --
13663: ,P_CONTACT_TYPE =>
13664: hr_transaction_api.get_VARCHAR2_value
13665: (p_transaction_step_id => p_transaction_step_id
13666: ,p_name => 'P_CONTACT_TYPE')
13667: --
13668:

Line 13670: hr_transaction_api.get_VARCHAR2_value

13666: ,p_name => 'P_CONTACT_TYPE')
13667: --
13668:
13669: ,P_COMMENTS =>
13670: hr_transaction_api.get_VARCHAR2_value
13671: (p_transaction_step_id => p_transaction_step_id
13672: ,p_name => 'P_CTR_COMMENTS')
13673: --
13674: -- Bug 3617667 : Not passign Primary Cont flag.Its only availaible in Emerg region.

Line 13678: hr_transaction_api.get_VARCHAR2_value

13674: -- Bug 3617667 : Not passign Primary Cont flag.Its only availaible in Emerg region.
13675: -- ,P_PRIMARY_CONTACT_FLAG => l_primary_contact_flag
13676: --
13677: ,P_THIRD_PARTY_PAY_FLAG =>
13678: hr_transaction_api.get_VARCHAR2_value
13679: (p_transaction_step_id => p_transaction_step_id
13680: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
13681: --
13682: ,P_BONDHOLDER_FLAG =>

Line 13683: hr_transaction_api.get_VARCHAR2_value

13679: (p_transaction_step_id => p_transaction_step_id
13680: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
13681: --
13682: ,P_BONDHOLDER_FLAG =>
13683: hr_transaction_api.get_VARCHAR2_value
13684: (p_transaction_step_id => p_transaction_step_id
13685: ,p_name => 'P_BONDHOLDER_FLAG')
13686: --
13687: ,P_DATE_START =>

Line 13688: hr_transaction_api.get_DATE_value

13684: (p_transaction_step_id => p_transaction_step_id
13685: ,p_name => 'P_BONDHOLDER_FLAG')
13686: --
13687: ,P_DATE_START =>
13688: hr_transaction_api.get_DATE_value
13689: (p_transaction_step_id => p_transaction_step_id
13690: ,p_name => 'P_DATE_START')
13691: --
13692: ,P_START_LIFE_REASON_ID =>

Line 13693: hr_transaction_api.get_NUMBER_value

13689: (p_transaction_step_id => p_transaction_step_id
13690: ,p_name => 'P_DATE_START')
13691: --
13692: ,P_START_LIFE_REASON_ID =>
13693: hr_transaction_api.get_NUMBER_value
13694: (p_transaction_step_id => p_transaction_step_id
13695: ,p_name => 'P_START_LIFE_REASON_ID')
13696: --
13697: ,P_DATE_END =>

Line 13698: hr_transaction_api.get_DATE_value

13694: (p_transaction_step_id => p_transaction_step_id
13695: ,p_name => 'P_START_LIFE_REASON_ID')
13696: --
13697: ,P_DATE_END =>
13698: hr_transaction_api.get_DATE_value
13699: (p_transaction_step_id => p_transaction_step_id
13700: ,p_name => 'P_DATE_END')
13701: --
13702: ,P_END_LIFE_REASON_ID =>

Line 13703: hr_transaction_api.get_NUMBER_value

13699: (p_transaction_step_id => p_transaction_step_id
13700: ,p_name => 'P_DATE_END')
13701: --
13702: ,P_END_LIFE_REASON_ID =>
13703: hr_transaction_api.get_NUMBER_value
13704: (p_transaction_step_id => p_transaction_step_id
13705: ,p_name => 'P_END_LIFE_REASON_ID')
13706: --
13707: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 13708: hr_transaction_api.get_VARCHAR2_value

13704: (p_transaction_step_id => p_transaction_step_id
13705: ,p_name => 'P_END_LIFE_REASON_ID')
13706: --
13707: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
13708: hr_transaction_api.get_VARCHAR2_value
13709: (p_transaction_step_id => p_transaction_step_id
13710: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
13711: --
13712: ,P_PERSONAL_FLAG =>

Line 13713: hr_transaction_api.get_VARCHAR2_value

13709: (p_transaction_step_id => p_transaction_step_id
13710: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
13711: --
13712: ,P_PERSONAL_FLAG =>
13713: hr_transaction_api.get_VARCHAR2_value
13714: (p_transaction_step_id => p_transaction_step_id
13715: ,p_name => 'P_PERSONAL_FLAG')
13716: --
13717: /* ,P_SEQUENCE_NUMBER =>

Line 13718: hr_transaction_api.get_NUMBER_value

13714: (p_transaction_step_id => p_transaction_step_id
13715: ,p_name => 'P_PERSONAL_FLAG')
13716: --
13717: /* ,P_SEQUENCE_NUMBER =>
13718: hr_transaction_api.get_NUMBER_value
13719: (p_transaction_step_id => p_transaction_step_id
13720: ,p_name => 'P_SEQUENCE_NUMBER') */
13721:
13722: --

Line 13724: hr_transaction_api.get_VARCHAR2_value

13720: ,p_name => 'P_SEQUENCE_NUMBER') */
13721:
13722: --
13723: ,P_DEPENDENT_FLAG =>
13724: hr_transaction_api.get_VARCHAR2_value
13725: (p_transaction_step_id => p_transaction_step_id
13726: ,p_name => 'P_DEPENDENT_FLAG')
13727: --
13728: ,P_BENEFICIARY_FLAG =>

Line 13729: hr_transaction_api.get_VARCHAR2_value

13725: (p_transaction_step_id => p_transaction_step_id
13726: ,p_name => 'P_DEPENDENT_FLAG')
13727: --
13728: ,P_BENEFICIARY_FLAG =>
13729: hr_transaction_api.get_VARCHAR2_value
13730: (p_transaction_step_id => p_transaction_step_id
13731: ,p_name => 'P_BENEFICIARY_FLAG')
13732: --
13733: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 13734: hr_transaction_api.get_VARCHAR2_value

13730: (p_transaction_step_id => p_transaction_step_id
13731: ,p_name => 'P_BENEFICIARY_FLAG')
13732: --
13733: ,P_CONT_ATTRIBUTE_CATEGORY =>
13734: hr_transaction_api.get_VARCHAR2_value
13735: (p_transaction_step_id => p_transaction_step_id
13736: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
13737: --
13738: ,P_CONT_ATTRIBUTE1 =>

Line 13739: hr_transaction_api.get_VARCHAR2_value

13735: (p_transaction_step_id => p_transaction_step_id
13736: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
13737: --
13738: ,P_CONT_ATTRIBUTE1 =>
13739: hr_transaction_api.get_VARCHAR2_value
13740: (p_transaction_step_id => p_transaction_step_id
13741: ,p_name => 'P_CONT_ATTRIBUTE1')
13742: --
13743: ,P_CONT_ATTRIBUTE2 =>

Line 13744: hr_transaction_api.get_VARCHAR2_value

13740: (p_transaction_step_id => p_transaction_step_id
13741: ,p_name => 'P_CONT_ATTRIBUTE1')
13742: --
13743: ,P_CONT_ATTRIBUTE2 =>
13744: hr_transaction_api.get_VARCHAR2_value
13745: (p_transaction_step_id => p_transaction_step_id
13746: ,p_name => 'P_CONT_ATTRIBUTE2')
13747: --
13748: ,P_CONT_ATTRIBUTE3 =>

Line 13749: hr_transaction_api.get_VARCHAR2_value

13745: (p_transaction_step_id => p_transaction_step_id
13746: ,p_name => 'P_CONT_ATTRIBUTE2')
13747: --
13748: ,P_CONT_ATTRIBUTE3 =>
13749: hr_transaction_api.get_VARCHAR2_value
13750: (p_transaction_step_id => p_transaction_step_id
13751: ,p_name => 'P_CONT_ATTRIBUTE3')
13752: --
13753: ,P_CONT_ATTRIBUTE4 =>

Line 13754: hr_transaction_api.get_VARCHAR2_value

13750: (p_transaction_step_id => p_transaction_step_id
13751: ,p_name => 'P_CONT_ATTRIBUTE3')
13752: --
13753: ,P_CONT_ATTRIBUTE4 =>
13754: hr_transaction_api.get_VARCHAR2_value
13755: (p_transaction_step_id => p_transaction_step_id
13756: ,p_name => 'P_CONT_ATTRIBUTE4')
13757: --
13758: ,P_CONT_ATTRIBUTE5 =>

Line 13759: hr_transaction_api.get_VARCHAR2_value

13755: (p_transaction_step_id => p_transaction_step_id
13756: ,p_name => 'P_CONT_ATTRIBUTE4')
13757: --
13758: ,P_CONT_ATTRIBUTE5 =>
13759: hr_transaction_api.get_VARCHAR2_value
13760: (p_transaction_step_id => p_transaction_step_id
13761: ,p_name => 'P_CONT_ATTRIBUTE5')
13762: --
13763: ,P_CONT_ATTRIBUTE6 =>

Line 13764: hr_transaction_api.get_VARCHAR2_value

13760: (p_transaction_step_id => p_transaction_step_id
13761: ,p_name => 'P_CONT_ATTRIBUTE5')
13762: --
13763: ,P_CONT_ATTRIBUTE6 =>
13764: hr_transaction_api.get_VARCHAR2_value
13765: (p_transaction_step_id => p_transaction_step_id
13766: ,p_name => 'P_CONT_ATTRIBUTE6')
13767: --
13768: ,P_CONT_ATTRIBUTE7 =>

Line 13769: hr_transaction_api.get_VARCHAR2_value

13765: (p_transaction_step_id => p_transaction_step_id
13766: ,p_name => 'P_CONT_ATTRIBUTE6')
13767: --
13768: ,P_CONT_ATTRIBUTE7 =>
13769: hr_transaction_api.get_VARCHAR2_value
13770: (p_transaction_step_id => p_transaction_step_id
13771: ,p_name => 'P_CONT_ATTRIBUTE7')
13772: --
13773: ,P_CONT_ATTRIBUTE8 =>

Line 13774: hr_transaction_api.get_VARCHAR2_value

13770: (p_transaction_step_id => p_transaction_step_id
13771: ,p_name => 'P_CONT_ATTRIBUTE7')
13772: --
13773: ,P_CONT_ATTRIBUTE8 =>
13774: hr_transaction_api.get_VARCHAR2_value
13775: (p_transaction_step_id => p_transaction_step_id
13776: ,p_name => 'P_CONT_ATTRIBUTE8')
13777: --
13778: ,P_CONT_ATTRIBUTE9 =>

Line 13779: hr_transaction_api.get_VARCHAR2_value

13775: (p_transaction_step_id => p_transaction_step_id
13776: ,p_name => 'P_CONT_ATTRIBUTE8')
13777: --
13778: ,P_CONT_ATTRIBUTE9 =>
13779: hr_transaction_api.get_VARCHAR2_value
13780: (p_transaction_step_id => p_transaction_step_id
13781: ,p_name => 'P_CONT_ATTRIBUTE9')
13782: --
13783: ,P_CONT_ATTRIBUTE10 =>

Line 13784: hr_transaction_api.get_VARCHAR2_value

13780: (p_transaction_step_id => p_transaction_step_id
13781: ,p_name => 'P_CONT_ATTRIBUTE9')
13782: --
13783: ,P_CONT_ATTRIBUTE10 =>
13784: hr_transaction_api.get_VARCHAR2_value
13785: (p_transaction_step_id => p_transaction_step_id
13786: ,p_name => 'P_CONT_ATTRIBUTE10')
13787: --
13788: ,P_CONT_ATTRIBUTE11 =>

Line 13789: hr_transaction_api.get_VARCHAR2_value

13785: (p_transaction_step_id => p_transaction_step_id
13786: ,p_name => 'P_CONT_ATTRIBUTE10')
13787: --
13788: ,P_CONT_ATTRIBUTE11 =>
13789: hr_transaction_api.get_VARCHAR2_value
13790: (p_transaction_step_id => p_transaction_step_id
13791: ,p_name => 'P_CONT_ATTRIBUTE11')
13792: --
13793: ,P_CONT_ATTRIBUTE12 =>

Line 13794: hr_transaction_api.get_VARCHAR2_value

13790: (p_transaction_step_id => p_transaction_step_id
13791: ,p_name => 'P_CONT_ATTRIBUTE11')
13792: --
13793: ,P_CONT_ATTRIBUTE12 =>
13794: hr_transaction_api.get_VARCHAR2_value
13795: (p_transaction_step_id => p_transaction_step_id
13796: ,p_name => 'P_CONT_ATTRIBUTE12')
13797: --
13798: ,P_CONT_ATTRIBUTE13 =>

Line 13799: hr_transaction_api.get_VARCHAR2_value

13795: (p_transaction_step_id => p_transaction_step_id
13796: ,p_name => 'P_CONT_ATTRIBUTE12')
13797: --
13798: ,P_CONT_ATTRIBUTE13 =>
13799: hr_transaction_api.get_VARCHAR2_value
13800: (p_transaction_step_id => p_transaction_step_id
13801: ,p_name => 'P_CONT_ATTRIBUTE13')
13802: --
13803: ,P_CONT_ATTRIBUTE14 =>

Line 13804: hr_transaction_api.get_VARCHAR2_value

13800: (p_transaction_step_id => p_transaction_step_id
13801: ,p_name => 'P_CONT_ATTRIBUTE13')
13802: --
13803: ,P_CONT_ATTRIBUTE14 =>
13804: hr_transaction_api.get_VARCHAR2_value
13805: (p_transaction_step_id => p_transaction_step_id
13806: ,p_name => 'P_CONT_ATTRIBUTE14')
13807: --
13808: ,P_CONT_ATTRIBUTE15 =>

Line 13809: hr_transaction_api.get_VARCHAR2_value

13805: (p_transaction_step_id => p_transaction_step_id
13806: ,p_name => 'P_CONT_ATTRIBUTE14')
13807: --
13808: ,P_CONT_ATTRIBUTE15 =>
13809: hr_transaction_api.get_VARCHAR2_value
13810: (p_transaction_step_id => p_transaction_step_id
13811: ,p_name => 'P_CONT_ATTRIBUTE15')
13812: --
13813: ,P_CONT_ATTRIBUTE16 =>

Line 13814: hr_transaction_api.get_VARCHAR2_value

13810: (p_transaction_step_id => p_transaction_step_id
13811: ,p_name => 'P_CONT_ATTRIBUTE15')
13812: --
13813: ,P_CONT_ATTRIBUTE16 =>
13814: hr_transaction_api.get_VARCHAR2_value
13815: (p_transaction_step_id => p_transaction_step_id
13816: ,p_name => 'P_CONT_ATTRIBUTE16')
13817: --
13818: ,P_CONT_ATTRIBUTE17 =>

Line 13819: hr_transaction_api.get_VARCHAR2_value

13815: (p_transaction_step_id => p_transaction_step_id
13816: ,p_name => 'P_CONT_ATTRIBUTE16')
13817: --
13818: ,P_CONT_ATTRIBUTE17 =>
13819: hr_transaction_api.get_VARCHAR2_value
13820: (p_transaction_step_id => p_transaction_step_id
13821: ,p_name => 'P_CONT_ATTRIBUTE17')
13822: --
13823: ,P_CONT_ATTRIBUTE18 =>

Line 13824: hr_transaction_api.get_VARCHAR2_value

13820: (p_transaction_step_id => p_transaction_step_id
13821: ,p_name => 'P_CONT_ATTRIBUTE17')
13822: --
13823: ,P_CONT_ATTRIBUTE18 =>
13824: hr_transaction_api.get_VARCHAR2_value
13825: (p_transaction_step_id => p_transaction_step_id
13826: ,p_name => 'P_CONT_ATTRIBUTE18')
13827: --
13828: ,P_CONT_ATTRIBUTE19 =>

Line 13829: hr_transaction_api.get_VARCHAR2_value

13825: (p_transaction_step_id => p_transaction_step_id
13826: ,p_name => 'P_CONT_ATTRIBUTE18')
13827: --
13828: ,P_CONT_ATTRIBUTE19 =>
13829: hr_transaction_api.get_VARCHAR2_value
13830: (p_transaction_step_id => p_transaction_step_id
13831: ,p_name => 'P_CONT_ATTRIBUTE19')
13832: --
13833: ,P_CONT_ATTRIBUTE20 =>

Line 13834: hr_transaction_api.get_VARCHAR2_value

13830: (p_transaction_step_id => p_transaction_step_id
13831: ,p_name => 'P_CONT_ATTRIBUTE19')
13832: --
13833: ,P_CONT_ATTRIBUTE20 =>
13834: hr_transaction_api.get_VARCHAR2_value
13835: (p_transaction_step_id => p_transaction_step_id
13836: ,p_name => 'P_CONT_ATTRIBUTE20')
13837: --
13838: ,P_CONT_INFORMATION_CATEGORY =>

Line 13839: hr_transaction_api.get_VARCHAR2_value

13835: (p_transaction_step_id => p_transaction_step_id
13836: ,p_name => 'P_CONT_ATTRIBUTE20')
13837: --
13838: ,P_CONT_INFORMATION_CATEGORY =>
13839: hr_transaction_api.get_VARCHAR2_value
13840: (p_transaction_step_id => p_transaction_step_id
13841: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
13842: --
13843: ,P_CONT_INFORMATION1 =>

Line 13844: hr_transaction_api.get_VARCHAR2_value

13840: (p_transaction_step_id => p_transaction_step_id
13841: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
13842: --
13843: ,P_CONT_INFORMATION1 =>
13844: hr_transaction_api.get_VARCHAR2_value
13845: (p_transaction_step_id => p_transaction_step_id
13846: ,p_name => 'P_CONT_INFORMATION1')
13847: --
13848: ,P_CONT_INFORMATION2 =>

Line 13849: hr_transaction_api.get_VARCHAR2_value

13845: (p_transaction_step_id => p_transaction_step_id
13846: ,p_name => 'P_CONT_INFORMATION1')
13847: --
13848: ,P_CONT_INFORMATION2 =>
13849: hr_transaction_api.get_VARCHAR2_value
13850: (p_transaction_step_id => p_transaction_step_id
13851: ,p_name => 'P_CONT_INFORMATION2')
13852: --
13853: ,P_CONT_INFORMATION3 =>

Line 13854: hr_transaction_api.get_VARCHAR2_value

13850: (p_transaction_step_id => p_transaction_step_id
13851: ,p_name => 'P_CONT_INFORMATION2')
13852: --
13853: ,P_CONT_INFORMATION3 =>
13854: hr_transaction_api.get_VARCHAR2_value
13855: (p_transaction_step_id => p_transaction_step_id
13856: ,p_name => 'P_CONT_INFORMATION3')
13857: --
13858: ,P_CONT_INFORMATION4 =>

Line 13859: hr_transaction_api.get_VARCHAR2_value

13855: (p_transaction_step_id => p_transaction_step_id
13856: ,p_name => 'P_CONT_INFORMATION3')
13857: --
13858: ,P_CONT_INFORMATION4 =>
13859: hr_transaction_api.get_VARCHAR2_value
13860: (p_transaction_step_id => p_transaction_step_id
13861: ,p_name => 'P_CONT_INFORMATION4')
13862: --
13863: ,P_CONT_INFORMATION5 =>

Line 13864: hr_transaction_api.get_VARCHAR2_value

13860: (p_transaction_step_id => p_transaction_step_id
13861: ,p_name => 'P_CONT_INFORMATION4')
13862: --
13863: ,P_CONT_INFORMATION5 =>
13864: hr_transaction_api.get_VARCHAR2_value
13865: (p_transaction_step_id => p_transaction_step_id
13866: ,p_name => 'P_CONT_INFORMATION5')
13867: --
13868: ,P_CONT_INFORMATION6 =>

Line 13869: hr_transaction_api.get_VARCHAR2_value

13865: (p_transaction_step_id => p_transaction_step_id
13866: ,p_name => 'P_CONT_INFORMATION5')
13867: --
13868: ,P_CONT_INFORMATION6 =>
13869: hr_transaction_api.get_VARCHAR2_value
13870: (p_transaction_step_id => p_transaction_step_id
13871: ,p_name => 'P_CONT_INFORMATION6')
13872: --
13873: ,P_CONT_INFORMATION7 =>

Line 13874: hr_transaction_api.get_VARCHAR2_value

13870: (p_transaction_step_id => p_transaction_step_id
13871: ,p_name => 'P_CONT_INFORMATION6')
13872: --
13873: ,P_CONT_INFORMATION7 =>
13874: hr_transaction_api.get_VARCHAR2_value
13875: (p_transaction_step_id => p_transaction_step_id
13876: ,p_name => 'P_CONT_INFORMATION7')
13877: --
13878: ,P_CONT_INFORMATION8 =>

Line 13879: hr_transaction_api.get_VARCHAR2_value

13875: (p_transaction_step_id => p_transaction_step_id
13876: ,p_name => 'P_CONT_INFORMATION7')
13877: --
13878: ,P_CONT_INFORMATION8 =>
13879: hr_transaction_api.get_VARCHAR2_value
13880: (p_transaction_step_id => p_transaction_step_id
13881: ,p_name => 'P_CONT_INFORMATION8')
13882: --
13883: ,P_CONT_INFORMATION9 =>

Line 13884: hr_transaction_api.get_VARCHAR2_value

13880: (p_transaction_step_id => p_transaction_step_id
13881: ,p_name => 'P_CONT_INFORMATION8')
13882: --
13883: ,P_CONT_INFORMATION9 =>
13884: hr_transaction_api.get_VARCHAR2_value
13885: (p_transaction_step_id => p_transaction_step_id
13886: ,p_name => 'P_CONT_INFORMATION9')
13887: --
13888: ,P_CONT_INFORMATION10 =>

Line 13889: hr_transaction_api.get_VARCHAR2_value

13885: (p_transaction_step_id => p_transaction_step_id
13886: ,p_name => 'P_CONT_INFORMATION9')
13887: --
13888: ,P_CONT_INFORMATION10 =>
13889: hr_transaction_api.get_VARCHAR2_value
13890: (p_transaction_step_id => p_transaction_step_id
13891: ,p_name => 'P_CONT_INFORMATION10')
13892: --
13893: ,P_CONT_INFORMATION11 =>

Line 13894: hr_transaction_api.get_VARCHAR2_value

13890: (p_transaction_step_id => p_transaction_step_id
13891: ,p_name => 'P_CONT_INFORMATION10')
13892: --
13893: ,P_CONT_INFORMATION11 =>
13894: hr_transaction_api.get_VARCHAR2_value
13895: (p_transaction_step_id => p_transaction_step_id
13896: ,p_name => 'P_CONT_INFORMATION11')
13897: --
13898: ,P_CONT_INFORMATION12 =>

Line 13899: hr_transaction_api.get_VARCHAR2_value

13895: (p_transaction_step_id => p_transaction_step_id
13896: ,p_name => 'P_CONT_INFORMATION11')
13897: --
13898: ,P_CONT_INFORMATION12 =>
13899: hr_transaction_api.get_VARCHAR2_value
13900: (p_transaction_step_id => p_transaction_step_id
13901: ,p_name => 'P_CONT_INFORMATION12')
13902: --
13903: ,P_CONT_INFORMATION13 =>

Line 13904: hr_transaction_api.get_VARCHAR2_value

13900: (p_transaction_step_id => p_transaction_step_id
13901: ,p_name => 'P_CONT_INFORMATION12')
13902: --
13903: ,P_CONT_INFORMATION13 =>
13904: hr_transaction_api.get_VARCHAR2_value
13905: (p_transaction_step_id => p_transaction_step_id
13906: ,p_name => 'P_CONT_INFORMATION13')
13907: --
13908: ,P_CONT_INFORMATION14 =>

Line 13909: hr_transaction_api.get_VARCHAR2_value

13905: (p_transaction_step_id => p_transaction_step_id
13906: ,p_name => 'P_CONT_INFORMATION13')
13907: --
13908: ,P_CONT_INFORMATION14 =>
13909: hr_transaction_api.get_VARCHAR2_value
13910: (p_transaction_step_id => p_transaction_step_id
13911: ,p_name => 'P_CONT_INFORMATION14')
13912: --
13913: ,P_CONT_INFORMATION15 =>

Line 13914: hr_transaction_api.get_VARCHAR2_value

13910: (p_transaction_step_id => p_transaction_step_id
13911: ,p_name => 'P_CONT_INFORMATION14')
13912: --
13913: ,P_CONT_INFORMATION15 =>
13914: hr_transaction_api.get_VARCHAR2_value
13915: (p_transaction_step_id => p_transaction_step_id
13916: ,p_name => 'P_CONT_INFORMATION15')
13917: --
13918: ,P_CONT_INFORMATION16 =>

Line 13919: hr_transaction_api.get_VARCHAR2_value

13915: (p_transaction_step_id => p_transaction_step_id
13916: ,p_name => 'P_CONT_INFORMATION15')
13917: --
13918: ,P_CONT_INFORMATION16 =>
13919: hr_transaction_api.get_VARCHAR2_value
13920: (p_transaction_step_id => p_transaction_step_id
13921: ,p_name => 'P_CONT_INFORMATION16')
13922: --
13923: ,P_CONT_INFORMATION17 =>

Line 13924: hr_transaction_api.get_VARCHAR2_value

13920: (p_transaction_step_id => p_transaction_step_id
13921: ,p_name => 'P_CONT_INFORMATION16')
13922: --
13923: ,P_CONT_INFORMATION17 =>
13924: hr_transaction_api.get_VARCHAR2_value
13925: (p_transaction_step_id => p_transaction_step_id
13926: ,p_name => 'P_CONT_INFORMATION17')
13927: --
13928: ,P_CONT_INFORMATION18 =>

Line 13929: hr_transaction_api.get_VARCHAR2_value

13925: (p_transaction_step_id => p_transaction_step_id
13926: ,p_name => 'P_CONT_INFORMATION17')
13927: --
13928: ,P_CONT_INFORMATION18 =>
13929: hr_transaction_api.get_VARCHAR2_value
13930: (p_transaction_step_id => p_transaction_step_id
13931: ,p_name => 'P_CONT_INFORMATION18')
13932: --
13933: ,P_CONT_INFORMATION19 =>

Line 13934: hr_transaction_api.get_VARCHAR2_value

13930: (p_transaction_step_id => p_transaction_step_id
13931: ,p_name => 'P_CONT_INFORMATION18')
13932: --
13933: ,P_CONT_INFORMATION19 =>
13934: hr_transaction_api.get_VARCHAR2_value
13935: (p_transaction_step_id => p_transaction_step_id
13936: ,p_name => 'P_CONT_INFORMATION19')
13937: --
13938: ,P_CONT_INFORMATION20 =>

Line 13939: hr_transaction_api.get_VARCHAR2_value

13935: (p_transaction_step_id => p_transaction_step_id
13936: ,p_name => 'P_CONT_INFORMATION19')
13937: --
13938: ,P_CONT_INFORMATION20 =>
13939: hr_transaction_api.get_VARCHAR2_value
13940: (p_transaction_step_id => p_transaction_step_id
13941: ,p_name => 'P_CONT_INFORMATION20')
13942: --
13943: ,P_OBJECT_VERSION_NUMBER => l_ovn

Line 13950: hr_transaction_api.get_VARCHAR2_value

13946: end if;
13947: ELSE
13948: --
13949: l_contact_type :=
13950: hr_transaction_api.get_VARCHAR2_value
13951: (p_transaction_step_id => p_transaction_step_id
13952: ,p_name => 'P_CONTACT_TYPE') ;
13953:
13954: --

Line 13956: hr_transaction_api.get_VARCHAR2_value

13952: ,p_name => 'P_CONTACT_TYPE') ;
13953:
13954: --
13955: l_personal_flag :=
13956: hr_transaction_api.get_VARCHAR2_value
13957: (p_transaction_step_id => p_transaction_step_id
13958: ,p_name => 'P_PERSONAL_FLAG') ;
13959: --
13960: if l_contact_operation = 'EMER_CR_NEW_REL' then

Line 13975: hr_transaction_api.get_number_value

13971: if l_contact_operation in ( 'EMER_CR_NEW_REL', 'DPDNT_CR_NEW_REL') then
13972: --
13973:
13974: open get_other_relid_ovn(
13975: hr_transaction_api.get_number_value
13976: (p_transaction_step_id => p_transaction_step_id
13977: ,p_name => 'P_CONTACT_PERSON_ID')
13978: ,hr_transaction_api.get_number_value
13979: (p_transaction_step_id => p_transaction_step_id

Line 13978: ,hr_transaction_api.get_number_value

13974: open get_other_relid_ovn(
13975: hr_transaction_api.get_number_value
13976: (p_transaction_step_id => p_transaction_step_id
13977: ,p_name => 'P_CONTACT_PERSON_ID')
13978: ,hr_transaction_api.get_number_value
13979: (p_transaction_step_id => p_transaction_step_id
13980: ,p_name => 'P_PERSON_ID'));
13981: fetch get_other_relid_ovn into l_other_relid, l_other_ovn;
13982: if get_other_relid_ovn%found then

Line 13992: hr_transaction_api.get_VARCHAR2_value

13988:
13989: ,P_CONTACT_RELATIONSHIP_ID => l_other_relid
13990: --
13991: ,P_CONTACT_TYPE =>
13992: hr_transaction_api.get_VARCHAR2_value
13993: (p_transaction_step_id => p_transaction_step_id
13994: ,p_name => 'P_CONTACT_TYPE')
13995: --
13996: ,P_COMMENTS =>

Line 13997: hr_transaction_api.get_VARCHAR2_value

13993: (p_transaction_step_id => p_transaction_step_id
13994: ,p_name => 'P_CONTACT_TYPE')
13995: --
13996: ,P_COMMENTS =>
13997: hr_transaction_api.get_VARCHAR2_value
13998: (p_transaction_step_id => p_transaction_step_id
13999: ,p_name => 'P_CTR_COMMENTS')
14000:
14001: ,P_THIRD_PARTY_PAY_FLAG =>

Line 14002: hr_transaction_api.get_VARCHAR2_value

13998: (p_transaction_step_id => p_transaction_step_id
13999: ,p_name => 'P_CTR_COMMENTS')
14000:
14001: ,P_THIRD_PARTY_PAY_FLAG =>
14002: hr_transaction_api.get_VARCHAR2_value
14003: (p_transaction_step_id => p_transaction_step_id
14004: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
14005: --
14006: ,P_BONDHOLDER_FLAG =>

Line 14007: hr_transaction_api.get_VARCHAR2_value

14003: (p_transaction_step_id => p_transaction_step_id
14004: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
14005: --
14006: ,P_BONDHOLDER_FLAG =>
14007: hr_transaction_api.get_VARCHAR2_value
14008: (p_transaction_step_id => p_transaction_step_id
14009: ,p_name => 'P_BONDHOLDER_FLAG')
14010: --
14011: ,P_DATE_START =>

Line 14012: hr_transaction_api.get_DATE_value

14008: (p_transaction_step_id => p_transaction_step_id
14009: ,p_name => 'P_BONDHOLDER_FLAG')
14010: --
14011: ,P_DATE_START =>
14012: hr_transaction_api.get_DATE_value
14013: (p_transaction_step_id => p_transaction_step_id
14014: ,p_name => 'P_DATE_START')
14015: --
14016: -- bug 4775133 ,P_START_LIFE_REASON_ID =>

Line 14017: -- hr_transaction_api.get_NUMBER_value

14013: (p_transaction_step_id => p_transaction_step_id
14014: ,p_name => 'P_DATE_START')
14015: --
14016: -- bug 4775133 ,P_START_LIFE_REASON_ID =>
14017: -- hr_transaction_api.get_NUMBER_value
14018: -- (p_transaction_step_id => p_transaction_step_id
14019: -- ,p_name => 'P_START_LIFE_REASON_ID')
14020: --
14021: ,P_DATE_END =>

Line 14022: hr_transaction_api.get_DATE_value

14018: -- (p_transaction_step_id => p_transaction_step_id
14019: -- ,p_name => 'P_START_LIFE_REASON_ID')
14020: --
14021: ,P_DATE_END =>
14022: hr_transaction_api.get_DATE_value
14023: (p_transaction_step_id => p_transaction_step_id
14024: ,p_name => 'P_DATE_END')
14025: --
14026: ,P_END_LIFE_REASON_ID =>

Line 14027: hr_transaction_api.get_NUMBER_value

14023: (p_transaction_step_id => p_transaction_step_id
14024: ,p_name => 'P_DATE_END')
14025: --
14026: ,P_END_LIFE_REASON_ID =>
14027: hr_transaction_api.get_NUMBER_value
14028: (p_transaction_step_id => p_transaction_step_id
14029: ,p_name => 'P_END_LIFE_REASON_ID')
14030: --
14031: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 14032: hr_transaction_api.get_VARCHAR2_value

14028: (p_transaction_step_id => p_transaction_step_id
14029: ,p_name => 'P_END_LIFE_REASON_ID')
14030: --
14031: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
14032: hr_transaction_api.get_VARCHAR2_value
14033: (p_transaction_step_id => p_transaction_step_id
14034: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
14035: --
14036: ,P_PERSONAL_FLAG => 'Y'

Line 14039: hr_transaction_api.get_VARCHAR2_value

14035: --
14036: ,P_PERSONAL_FLAG => 'Y'
14037: --
14038: ,P_DEPENDENT_FLAG =>
14039: hr_transaction_api.get_VARCHAR2_value
14040: (p_transaction_step_id => p_transaction_step_id
14041: ,p_name => 'P_DEPENDENT_FLAG')
14042: --
14043: ,P_BENEFICIARY_FLAG =>

Line 14044: hr_transaction_api.get_VARCHAR2_value

14040: (p_transaction_step_id => p_transaction_step_id
14041: ,p_name => 'P_DEPENDENT_FLAG')
14042: --
14043: ,P_BENEFICIARY_FLAG =>
14044: hr_transaction_api.get_VARCHAR2_value
14045: (p_transaction_step_id => p_transaction_step_id
14046: ,p_name => 'P_BENEFICIARY_FLAG')
14047: --
14048: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 14049: hr_transaction_api.get_VARCHAR2_value

14045: (p_transaction_step_id => p_transaction_step_id
14046: ,p_name => 'P_BENEFICIARY_FLAG')
14047: --
14048: ,P_CONT_ATTRIBUTE_CATEGORY =>
14049: hr_transaction_api.get_VARCHAR2_value
14050: (p_transaction_step_id => p_transaction_step_id
14051: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
14052: --
14053: ,P_CONT_ATTRIBUTE1 =>

Line 14054: hr_transaction_api.get_VARCHAR2_value

14050: (p_transaction_step_id => p_transaction_step_id
14051: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
14052: --
14053: ,P_CONT_ATTRIBUTE1 =>
14054: hr_transaction_api.get_VARCHAR2_value
14055: (p_transaction_step_id => p_transaction_step_id
14056: ,p_name => 'P_CONT_ATTRIBUTE1')
14057: --
14058: ,P_CONT_ATTRIBUTE2 =>

Line 14059: hr_transaction_api.get_VARCHAR2_value

14055: (p_transaction_step_id => p_transaction_step_id
14056: ,p_name => 'P_CONT_ATTRIBUTE1')
14057: --
14058: ,P_CONT_ATTRIBUTE2 =>
14059: hr_transaction_api.get_VARCHAR2_value
14060: (p_transaction_step_id => p_transaction_step_id
14061: ,p_name => 'P_CONT_ATTRIBUTE2')
14062: --
14063: ,P_CONT_ATTRIBUTE3 =>

Line 14064: hr_transaction_api.get_VARCHAR2_value

14060: (p_transaction_step_id => p_transaction_step_id
14061: ,p_name => 'P_CONT_ATTRIBUTE2')
14062: --
14063: ,P_CONT_ATTRIBUTE3 =>
14064: hr_transaction_api.get_VARCHAR2_value
14065: (p_transaction_step_id => p_transaction_step_id
14066: ,p_name => 'P_CONT_ATTRIBUTE3')
14067: --
14068: ,P_CONT_ATTRIBUTE4 =>

Line 14069: hr_transaction_api.get_VARCHAR2_value

14065: (p_transaction_step_id => p_transaction_step_id
14066: ,p_name => 'P_CONT_ATTRIBUTE3')
14067: --
14068: ,P_CONT_ATTRIBUTE4 =>
14069: hr_transaction_api.get_VARCHAR2_value
14070: (p_transaction_step_id => p_transaction_step_id
14071: ,p_name => 'P_CONT_ATTRIBUTE4')
14072: --
14073: ,P_CONT_ATTRIBUTE5 =>

Line 14074: hr_transaction_api.get_VARCHAR2_value

14070: (p_transaction_step_id => p_transaction_step_id
14071: ,p_name => 'P_CONT_ATTRIBUTE4')
14072: --
14073: ,P_CONT_ATTRIBUTE5 =>
14074: hr_transaction_api.get_VARCHAR2_value
14075: (p_transaction_step_id => p_transaction_step_id
14076: ,p_name => 'P_CONT_ATTRIBUTE5')
14077: --
14078: ,P_CONT_ATTRIBUTE6 =>

Line 14079: hr_transaction_api.get_VARCHAR2_value

14075: (p_transaction_step_id => p_transaction_step_id
14076: ,p_name => 'P_CONT_ATTRIBUTE5')
14077: --
14078: ,P_CONT_ATTRIBUTE6 =>
14079: hr_transaction_api.get_VARCHAR2_value
14080: (p_transaction_step_id => p_transaction_step_id
14081: ,p_name => 'P_CONT_ATTRIBUTE6')
14082: --
14083: ,P_CONT_ATTRIBUTE7 =>

Line 14084: hr_transaction_api.get_VARCHAR2_value

14080: (p_transaction_step_id => p_transaction_step_id
14081: ,p_name => 'P_CONT_ATTRIBUTE6')
14082: --
14083: ,P_CONT_ATTRIBUTE7 =>
14084: hr_transaction_api.get_VARCHAR2_value
14085: (p_transaction_step_id => p_transaction_step_id
14086: ,p_name => 'P_CONT_ATTRIBUTE7')
14087: --
14088: ,P_CONT_ATTRIBUTE8 =>

Line 14089: hr_transaction_api.get_VARCHAR2_value

14085: (p_transaction_step_id => p_transaction_step_id
14086: ,p_name => 'P_CONT_ATTRIBUTE7')
14087: --
14088: ,P_CONT_ATTRIBUTE8 =>
14089: hr_transaction_api.get_VARCHAR2_value
14090: (p_transaction_step_id => p_transaction_step_id
14091: ,p_name => 'P_CONT_ATTRIBUTE8')
14092: --
14093: ,P_CONT_ATTRIBUTE9 =>

Line 14094: hr_transaction_api.get_VARCHAR2_value

14090: (p_transaction_step_id => p_transaction_step_id
14091: ,p_name => 'P_CONT_ATTRIBUTE8')
14092: --
14093: ,P_CONT_ATTRIBUTE9 =>
14094: hr_transaction_api.get_VARCHAR2_value
14095: (p_transaction_step_id => p_transaction_step_id
14096: ,p_name => 'P_CONT_ATTRIBUTE9')
14097: --
14098: ,P_CONT_ATTRIBUTE10 =>

Line 14099: hr_transaction_api.get_VARCHAR2_value

14095: (p_transaction_step_id => p_transaction_step_id
14096: ,p_name => 'P_CONT_ATTRIBUTE9')
14097: --
14098: ,P_CONT_ATTRIBUTE10 =>
14099: hr_transaction_api.get_VARCHAR2_value
14100: (p_transaction_step_id => p_transaction_step_id
14101: ,p_name => 'P_CONT_ATTRIBUTE10')
14102: --
14103: ,P_CONT_ATTRIBUTE11 =>

Line 14104: hr_transaction_api.get_VARCHAR2_value

14100: (p_transaction_step_id => p_transaction_step_id
14101: ,p_name => 'P_CONT_ATTRIBUTE10')
14102: --
14103: ,P_CONT_ATTRIBUTE11 =>
14104: hr_transaction_api.get_VARCHAR2_value
14105: (p_transaction_step_id => p_transaction_step_id
14106: ,p_name => 'P_CONT_ATTRIBUTE11')
14107: --
14108: ,P_CONT_ATTRIBUTE12 =>

Line 14109: hr_transaction_api.get_VARCHAR2_value

14105: (p_transaction_step_id => p_transaction_step_id
14106: ,p_name => 'P_CONT_ATTRIBUTE11')
14107: --
14108: ,P_CONT_ATTRIBUTE12 =>
14109: hr_transaction_api.get_VARCHAR2_value
14110: (p_transaction_step_id => p_transaction_step_id
14111: ,p_name => 'P_CONT_ATTRIBUTE12')
14112: --
14113: ,P_CONT_ATTRIBUTE13 =>

Line 14114: hr_transaction_api.get_VARCHAR2_value

14110: (p_transaction_step_id => p_transaction_step_id
14111: ,p_name => 'P_CONT_ATTRIBUTE12')
14112: --
14113: ,P_CONT_ATTRIBUTE13 =>
14114: hr_transaction_api.get_VARCHAR2_value
14115: (p_transaction_step_id => p_transaction_step_id
14116: ,p_name => 'P_CONT_ATTRIBUTE13')
14117: --
14118: ,P_CONT_ATTRIBUTE14 =>

Line 14119: hr_transaction_api.get_VARCHAR2_value

14115: (p_transaction_step_id => p_transaction_step_id
14116: ,p_name => 'P_CONT_ATTRIBUTE13')
14117: --
14118: ,P_CONT_ATTRIBUTE14 =>
14119: hr_transaction_api.get_VARCHAR2_value
14120: (p_transaction_step_id => p_transaction_step_id
14121: ,p_name => 'P_CONT_ATTRIBUTE14')
14122: --
14123: ,P_CONT_ATTRIBUTE15 =>

Line 14124: hr_transaction_api.get_VARCHAR2_value

14120: (p_transaction_step_id => p_transaction_step_id
14121: ,p_name => 'P_CONT_ATTRIBUTE14')
14122: --
14123: ,P_CONT_ATTRIBUTE15 =>
14124: hr_transaction_api.get_VARCHAR2_value
14125: (p_transaction_step_id => p_transaction_step_id
14126: ,p_name => 'P_CONT_ATTRIBUTE15')
14127: --
14128: ,P_CONT_ATTRIBUTE16 =>

Line 14129: hr_transaction_api.get_VARCHAR2_value

14125: (p_transaction_step_id => p_transaction_step_id
14126: ,p_name => 'P_CONT_ATTRIBUTE15')
14127: --
14128: ,P_CONT_ATTRIBUTE16 =>
14129: hr_transaction_api.get_VARCHAR2_value
14130: (p_transaction_step_id => p_transaction_step_id
14131: ,p_name => 'P_CONT_ATTRIBUTE16')
14132: --
14133: ,P_CONT_ATTRIBUTE17 =>

Line 14134: hr_transaction_api.get_VARCHAR2_value

14130: (p_transaction_step_id => p_transaction_step_id
14131: ,p_name => 'P_CONT_ATTRIBUTE16')
14132: --
14133: ,P_CONT_ATTRIBUTE17 =>
14134: hr_transaction_api.get_VARCHAR2_value
14135: (p_transaction_step_id => p_transaction_step_id
14136: ,p_name => 'P_CONT_ATTRIBUTE17')
14137: --
14138: ,P_CONT_ATTRIBUTE18 =>

Line 14139: hr_transaction_api.get_VARCHAR2_value

14135: (p_transaction_step_id => p_transaction_step_id
14136: ,p_name => 'P_CONT_ATTRIBUTE17')
14137: --
14138: ,P_CONT_ATTRIBUTE18 =>
14139: hr_transaction_api.get_VARCHAR2_value
14140: (p_transaction_step_id => p_transaction_step_id
14141: ,p_name => 'P_CONT_ATTRIBUTE18')
14142: --
14143: ,P_CONT_ATTRIBUTE19 =>

Line 14144: hr_transaction_api.get_VARCHAR2_value

14140: (p_transaction_step_id => p_transaction_step_id
14141: ,p_name => 'P_CONT_ATTRIBUTE18')
14142: --
14143: ,P_CONT_ATTRIBUTE19 =>
14144: hr_transaction_api.get_VARCHAR2_value
14145: (p_transaction_step_id => p_transaction_step_id
14146: ,p_name => 'P_CONT_ATTRIBUTE19')
14147: --
14148: ,P_CONT_ATTRIBUTE20 =>

Line 14149: hr_transaction_api.get_VARCHAR2_value

14145: (p_transaction_step_id => p_transaction_step_id
14146: ,p_name => 'P_CONT_ATTRIBUTE19')
14147: --
14148: ,P_CONT_ATTRIBUTE20 =>
14149: hr_transaction_api.get_VARCHAR2_value
14150: (p_transaction_step_id => p_transaction_step_id
14151: ,p_name => 'P_CONT_ATTRIBUTE20')
14152: --
14153: ,P_CONT_INFORMATION_CATEGORY =>

Line 14154: hr_transaction_api.get_VARCHAR2_value

14150: (p_transaction_step_id => p_transaction_step_id
14151: ,p_name => 'P_CONT_ATTRIBUTE20')
14152: --
14153: ,P_CONT_INFORMATION_CATEGORY =>
14154: hr_transaction_api.get_VARCHAR2_value
14155: (p_transaction_step_id => p_transaction_step_id
14156: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
14157: --
14158: ,P_CONT_INFORMATION1 =>

Line 14159: hr_transaction_api.get_VARCHAR2_value

14155: (p_transaction_step_id => p_transaction_step_id
14156: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
14157: --
14158: ,P_CONT_INFORMATION1 =>
14159: hr_transaction_api.get_VARCHAR2_value
14160: (p_transaction_step_id => p_transaction_step_id
14161: ,p_name => 'P_CONT_INFORMATION1')
14162: --
14163: ,P_CONT_INFORMATION2 =>

Line 14164: hr_transaction_api.get_VARCHAR2_value

14160: (p_transaction_step_id => p_transaction_step_id
14161: ,p_name => 'P_CONT_INFORMATION1')
14162: --
14163: ,P_CONT_INFORMATION2 =>
14164: hr_transaction_api.get_VARCHAR2_value
14165: (p_transaction_step_id => p_transaction_step_id
14166: ,p_name => 'P_CONT_INFORMATION2')
14167: --
14168: ,P_CONT_INFORMATION3 =>

Line 14169: hr_transaction_api.get_VARCHAR2_value

14165: (p_transaction_step_id => p_transaction_step_id
14166: ,p_name => 'P_CONT_INFORMATION2')
14167: --
14168: ,P_CONT_INFORMATION3 =>
14169: hr_transaction_api.get_VARCHAR2_value
14170: (p_transaction_step_id => p_transaction_step_id
14171: ,p_name => 'P_CONT_INFORMATION3')
14172: --
14173: ,P_CONT_INFORMATION4 =>

Line 14174: hr_transaction_api.get_VARCHAR2_value

14170: (p_transaction_step_id => p_transaction_step_id
14171: ,p_name => 'P_CONT_INFORMATION3')
14172: --
14173: ,P_CONT_INFORMATION4 =>
14174: hr_transaction_api.get_VARCHAR2_value
14175: (p_transaction_step_id => p_transaction_step_id
14176: ,p_name => 'P_CONT_INFORMATION4')
14177: --
14178: ,P_CONT_INFORMATION5 =>

Line 14179: hr_transaction_api.get_VARCHAR2_value

14175: (p_transaction_step_id => p_transaction_step_id
14176: ,p_name => 'P_CONT_INFORMATION4')
14177: --
14178: ,P_CONT_INFORMATION5 =>
14179: hr_transaction_api.get_VARCHAR2_value
14180: (p_transaction_step_id => p_transaction_step_id
14181: ,p_name => 'P_CONT_INFORMATION5')
14182: --
14183: ,P_CONT_INFORMATION6 =>

Line 14184: hr_transaction_api.get_VARCHAR2_value

14180: (p_transaction_step_id => p_transaction_step_id
14181: ,p_name => 'P_CONT_INFORMATION5')
14182: --
14183: ,P_CONT_INFORMATION6 =>
14184: hr_transaction_api.get_VARCHAR2_value
14185: (p_transaction_step_id => p_transaction_step_id
14186: ,p_name => 'P_CONT_INFORMATION6')
14187: --
14188: ,P_CONT_INFORMATION7 =>

Line 14189: hr_transaction_api.get_VARCHAR2_value

14185: (p_transaction_step_id => p_transaction_step_id
14186: ,p_name => 'P_CONT_INFORMATION6')
14187: --
14188: ,P_CONT_INFORMATION7 =>
14189: hr_transaction_api.get_VARCHAR2_value
14190: (p_transaction_step_id => p_transaction_step_id
14191: ,p_name => 'P_CONT_INFORMATION7')
14192: --
14193: ,P_CONT_INFORMATION8 =>

Line 14194: hr_transaction_api.get_VARCHAR2_value

14190: (p_transaction_step_id => p_transaction_step_id
14191: ,p_name => 'P_CONT_INFORMATION7')
14192: --
14193: ,P_CONT_INFORMATION8 =>
14194: hr_transaction_api.get_VARCHAR2_value
14195: (p_transaction_step_id => p_transaction_step_id
14196: ,p_name => 'P_CONT_INFORMATION8')
14197: --
14198: ,P_CONT_INFORMATION9 =>

Line 14199: hr_transaction_api.get_VARCHAR2_value

14195: (p_transaction_step_id => p_transaction_step_id
14196: ,p_name => 'P_CONT_INFORMATION8')
14197: --
14198: ,P_CONT_INFORMATION9 =>
14199: hr_transaction_api.get_VARCHAR2_value
14200: (p_transaction_step_id => p_transaction_step_id
14201: ,p_name => 'P_CONT_INFORMATION9')
14202: --
14203: ,P_CONT_INFORMATION10 =>

Line 14204: hr_transaction_api.get_VARCHAR2_value

14200: (p_transaction_step_id => p_transaction_step_id
14201: ,p_name => 'P_CONT_INFORMATION9')
14202: --
14203: ,P_CONT_INFORMATION10 =>
14204: hr_transaction_api.get_VARCHAR2_value
14205: (p_transaction_step_id => p_transaction_step_id
14206: ,p_name => 'P_CONT_INFORMATION10')
14207: --
14208: ,P_CONT_INFORMATION11 =>

Line 14209: hr_transaction_api.get_VARCHAR2_value

14205: (p_transaction_step_id => p_transaction_step_id
14206: ,p_name => 'P_CONT_INFORMATION10')
14207: --
14208: ,P_CONT_INFORMATION11 =>
14209: hr_transaction_api.get_VARCHAR2_value
14210: (p_transaction_step_id => p_transaction_step_id
14211: ,p_name => 'P_CONT_INFORMATION11')
14212: --
14213: ,P_CONT_INFORMATION12 =>

Line 14214: hr_transaction_api.get_VARCHAR2_value

14210: (p_transaction_step_id => p_transaction_step_id
14211: ,p_name => 'P_CONT_INFORMATION11')
14212: --
14213: ,P_CONT_INFORMATION12 =>
14214: hr_transaction_api.get_VARCHAR2_value
14215: (p_transaction_step_id => p_transaction_step_id
14216: ,p_name => 'P_CONT_INFORMATION12')
14217: --
14218: ,P_CONT_INFORMATION13 =>

Line 14219: hr_transaction_api.get_VARCHAR2_value

14215: (p_transaction_step_id => p_transaction_step_id
14216: ,p_name => 'P_CONT_INFORMATION12')
14217: --
14218: ,P_CONT_INFORMATION13 =>
14219: hr_transaction_api.get_VARCHAR2_value
14220: (p_transaction_step_id => p_transaction_step_id
14221: ,p_name => 'P_CONT_INFORMATION13')
14222: --
14223: ,P_CONT_INFORMATION14 =>

Line 14224: hr_transaction_api.get_VARCHAR2_value

14220: (p_transaction_step_id => p_transaction_step_id
14221: ,p_name => 'P_CONT_INFORMATION13')
14222: --
14223: ,P_CONT_INFORMATION14 =>
14224: hr_transaction_api.get_VARCHAR2_value
14225: (p_transaction_step_id => p_transaction_step_id
14226: ,p_name => 'P_CONT_INFORMATION14')
14227: --
14228: ,P_CONT_INFORMATION15 =>

Line 14229: hr_transaction_api.get_VARCHAR2_value

14225: (p_transaction_step_id => p_transaction_step_id
14226: ,p_name => 'P_CONT_INFORMATION14')
14227: --
14228: ,P_CONT_INFORMATION15 =>
14229: hr_transaction_api.get_VARCHAR2_value
14230: (p_transaction_step_id => p_transaction_step_id
14231: ,p_name => 'P_CONT_INFORMATION15')
14232: --
14233: ,P_CONT_INFORMATION16 =>

Line 14234: hr_transaction_api.get_VARCHAR2_value

14230: (p_transaction_step_id => p_transaction_step_id
14231: ,p_name => 'P_CONT_INFORMATION15')
14232: --
14233: ,P_CONT_INFORMATION16 =>
14234: hr_transaction_api.get_VARCHAR2_value
14235: (p_transaction_step_id => p_transaction_step_id
14236: ,p_name => 'P_CONT_INFORMATION16')
14237: --
14238: ,P_CONT_INFORMATION17 =>

Line 14239: hr_transaction_api.get_VARCHAR2_value

14235: (p_transaction_step_id => p_transaction_step_id
14236: ,p_name => 'P_CONT_INFORMATION16')
14237: --
14238: ,P_CONT_INFORMATION17 =>
14239: hr_transaction_api.get_VARCHAR2_value
14240: (p_transaction_step_id => p_transaction_step_id
14241: ,p_name => 'P_CONT_INFORMATION17')
14242: --
14243: ,P_CONT_INFORMATION18 =>

Line 14244: hr_transaction_api.get_VARCHAR2_value

14240: (p_transaction_step_id => p_transaction_step_id
14241: ,p_name => 'P_CONT_INFORMATION17')
14242: --
14243: ,P_CONT_INFORMATION18 =>
14244: hr_transaction_api.get_VARCHAR2_value
14245: (p_transaction_step_id => p_transaction_step_id
14246: ,p_name => 'P_CONT_INFORMATION18')
14247: --
14248: ,P_CONT_INFORMATION19 =>

Line 14249: hr_transaction_api.get_VARCHAR2_value

14245: (p_transaction_step_id => p_transaction_step_id
14246: ,p_name => 'P_CONT_INFORMATION18')
14247: --
14248: ,P_CONT_INFORMATION19 =>
14249: hr_transaction_api.get_VARCHAR2_value
14250: (p_transaction_step_id => p_transaction_step_id
14251: ,p_name => 'P_CONT_INFORMATION19')
14252: --
14253: ,P_CONT_INFORMATION20 =>

Line 14254: hr_transaction_api.get_VARCHAR2_value

14250: (p_transaction_step_id => p_transaction_step_id
14251: ,p_name => 'P_CONT_INFORMATION19')
14252: --
14253: ,P_CONT_INFORMATION20 =>
14254: hr_transaction_api.get_VARCHAR2_value
14255: (p_transaction_step_id => p_transaction_step_id
14256: ,p_name => 'P_CONT_INFORMATION20')
14257: --
14258: ,P_OBJECT_VERSION_NUMBER => l_other_ovn

Line 14269: hr_transaction_api.get_DATE_value

14265: P_VALIDATE => p_validate
14266: --
14267: ,P_START_DATE => l_effective_date
14268: /*
14269: hr_transaction_api.get_DATE_value
14270: (p_transaction_step_id => p_transaction_step_id
14271: ,p_name => 'P_CONT_EFFECTIVE_DATE')
14272: */
14273: --

Line 14275: hr_transaction_api.get_NUMBER_value

14271: ,p_name => 'P_CONT_EFFECTIVE_DATE')
14272: */
14273: --
14274: ,P_BUSINESS_GROUP_ID =>
14275: hr_transaction_api.get_NUMBER_value
14276: (p_transaction_step_id => p_transaction_step_id
14277: ,p_name => 'P_BUSINESS_GROUP_ID')
14278: --
14279: ,P_PERSON_ID =>

Line 14280: hr_transaction_api.get_number_value

14276: (p_transaction_step_id => p_transaction_step_id
14277: ,p_name => 'P_BUSINESS_GROUP_ID')
14278: --
14279: ,P_PERSON_ID =>
14280: hr_transaction_api.get_number_value
14281: (p_transaction_step_id => p_transaction_step_id
14282: ,p_name =>upper('p_person_id'))
14283: --
14284: ,P_CONTACT_PERSON_ID =>

Line 14285: hr_transaction_api.get_number_value

14281: (p_transaction_step_id => p_transaction_step_id
14282: ,p_name =>upper('p_person_id'))
14283: --
14284: ,P_CONTACT_PERSON_ID =>
14285: hr_transaction_api.get_number_value
14286: (p_transaction_step_id => p_transaction_step_id
14287: ,p_name =>upper('p_cont_person_id'))
14288: --
14289: ,P_CONTACT_TYPE => l_contact_type

Line 14292: hr_transaction_api.get_VARCHAR2_value

14288: --
14289: ,P_CONTACT_TYPE => l_contact_type
14290: --
14291: ,P_CTR_COMMENTS =>
14292: hr_transaction_api.get_VARCHAR2_value
14293: (p_transaction_step_id => p_transaction_step_id
14294: ,p_name => 'P_CTR_COMMENTS')
14295: --
14296: ,P_PRIMARY_CONTACT_FLAG =>

Line 14297: hr_transaction_api.get_VARCHAR2_value

14293: (p_transaction_step_id => p_transaction_step_id
14294: ,p_name => 'P_CTR_COMMENTS')
14295: --
14296: ,P_PRIMARY_CONTACT_FLAG =>
14297: hr_transaction_api.get_VARCHAR2_value
14298: (p_transaction_step_id => p_transaction_step_id
14299: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
14300: --
14301: ,P_DATE_START =>

Line 14302: hr_transaction_api.get_DATE_value

14298: (p_transaction_step_id => p_transaction_step_id
14299: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
14300: --
14301: ,P_DATE_START =>
14302: hr_transaction_api.get_DATE_value
14303: (p_transaction_step_id => p_transaction_step_id
14304: ,p_name => 'P_DATE_START')
14305: --
14306: ,P_START_LIFE_REASON_ID =>

Line 14307: hr_transaction_api.get_NUMBER_value

14303: (p_transaction_step_id => p_transaction_step_id
14304: ,p_name => 'P_DATE_START')
14305: --
14306: ,P_START_LIFE_REASON_ID =>
14307: hr_transaction_api.get_NUMBER_value
14308: (p_transaction_step_id => p_transaction_step_id
14309: ,p_name => 'P_START_LIFE_REASON_ID')
14310: --
14311: ,P_DATE_END =>

Line 14312: hr_transaction_api.get_DATE_value

14308: (p_transaction_step_id => p_transaction_step_id
14309: ,p_name => 'P_START_LIFE_REASON_ID')
14310: --
14311: ,P_DATE_END =>
14312: hr_transaction_api.get_DATE_value
14313: (p_transaction_step_id => p_transaction_step_id
14314: ,p_name => 'P_DATE_END')
14315: --
14316: ,P_END_LIFE_REASON_ID =>

Line 14317: hr_transaction_api.get_NUMBER_value

14313: (p_transaction_step_id => p_transaction_step_id
14314: ,p_name => 'P_DATE_END')
14315: --
14316: ,P_END_LIFE_REASON_ID =>
14317: hr_transaction_api.get_NUMBER_value
14318: (p_transaction_step_id => p_transaction_step_id
14319: ,p_name => 'P_END_LIFE_REASON_ID')
14320: --
14321: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>

Line 14322: hr_transaction_api.get_VARCHAR2_value

14318: (p_transaction_step_id => p_transaction_step_id
14319: ,p_name => 'P_END_LIFE_REASON_ID')
14320: --
14321: ,P_RLTD_PER_RSDS_W_DSGNTR_FLAG =>
14322: hr_transaction_api.get_VARCHAR2_value
14323: (p_transaction_step_id => p_transaction_step_id
14324: ,p_name => 'P_RLTD_PER_RSDS_W_DSGNTR_FLAG')
14325: --
14326: ,P_PERSONAL_FLAG => l_personal_flag

Line 14329: hr_transaction_api.get_NUMBER_value

14325: --
14326: ,P_PERSONAL_FLAG => l_personal_flag
14327: --
14328: ,P_SEQUENCE_NUMBER =>
14329: hr_transaction_api.get_NUMBER_value
14330: (p_transaction_step_id => p_transaction_step_id
14331: ,p_name => 'P_SEQUENCE_NUMBER')
14332: --
14333: ,P_CONT_ATTRIBUTE_CATEGORY =>

Line 14334: hr_transaction_api.get_VARCHAR2_value

14330: (p_transaction_step_id => p_transaction_step_id
14331: ,p_name => 'P_SEQUENCE_NUMBER')
14332: --
14333: ,P_CONT_ATTRIBUTE_CATEGORY =>
14334: hr_transaction_api.get_VARCHAR2_value
14335: (p_transaction_step_id => p_transaction_step_id
14336: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
14337: --
14338: ,P_CONT_ATTRIBUTE1 =>

Line 14339: hr_transaction_api.get_VARCHAR2_value

14335: (p_transaction_step_id => p_transaction_step_id
14336: ,p_name => 'P_CONT_ATTRIBUTE_CATEGORY')
14337: --
14338: ,P_CONT_ATTRIBUTE1 =>
14339: hr_transaction_api.get_VARCHAR2_value
14340: (p_transaction_step_id => p_transaction_step_id
14341: ,p_name => 'P_CONT_ATTRIBUTE1')
14342: --
14343: ,P_CONT_ATTRIBUTE2 =>

Line 14344: hr_transaction_api.get_VARCHAR2_value

14340: (p_transaction_step_id => p_transaction_step_id
14341: ,p_name => 'P_CONT_ATTRIBUTE1')
14342: --
14343: ,P_CONT_ATTRIBUTE2 =>
14344: hr_transaction_api.get_VARCHAR2_value
14345: (p_transaction_step_id => p_transaction_step_id
14346: ,p_name => 'P_CONT_ATTRIBUTE2')
14347: --
14348: ,P_CONT_ATTRIBUTE3 =>

Line 14349: hr_transaction_api.get_VARCHAR2_value

14345: (p_transaction_step_id => p_transaction_step_id
14346: ,p_name => 'P_CONT_ATTRIBUTE2')
14347: --
14348: ,P_CONT_ATTRIBUTE3 =>
14349: hr_transaction_api.get_VARCHAR2_value
14350: (p_transaction_step_id => p_transaction_step_id
14351: ,p_name => 'P_CONT_ATTRIBUTE3')
14352: --
14353: ,P_CONT_ATTRIBUTE4 =>

Line 14354: hr_transaction_api.get_VARCHAR2_value

14350: (p_transaction_step_id => p_transaction_step_id
14351: ,p_name => 'P_CONT_ATTRIBUTE3')
14352: --
14353: ,P_CONT_ATTRIBUTE4 =>
14354: hr_transaction_api.get_VARCHAR2_value
14355: (p_transaction_step_id => p_transaction_step_id
14356: ,p_name => 'P_CONT_ATTRIBUTE4')
14357: --
14358: ,P_CONT_ATTRIBUTE5 =>

Line 14359: hr_transaction_api.get_VARCHAR2_value

14355: (p_transaction_step_id => p_transaction_step_id
14356: ,p_name => 'P_CONT_ATTRIBUTE4')
14357: --
14358: ,P_CONT_ATTRIBUTE5 =>
14359: hr_transaction_api.get_VARCHAR2_value
14360: (p_transaction_step_id => p_transaction_step_id
14361: ,p_name => 'P_CONT_ATTRIBUTE5')
14362: --
14363: ,P_CONT_ATTRIBUTE6 =>

Line 14364: hr_transaction_api.get_VARCHAR2_value

14360: (p_transaction_step_id => p_transaction_step_id
14361: ,p_name => 'P_CONT_ATTRIBUTE5')
14362: --
14363: ,P_CONT_ATTRIBUTE6 =>
14364: hr_transaction_api.get_VARCHAR2_value
14365: (p_transaction_step_id => p_transaction_step_id
14366: ,p_name => 'P_CONT_ATTRIBUTE6')
14367: --
14368: ,P_CONT_ATTRIBUTE7 =>

Line 14369: hr_transaction_api.get_VARCHAR2_value

14365: (p_transaction_step_id => p_transaction_step_id
14366: ,p_name => 'P_CONT_ATTRIBUTE6')
14367: --
14368: ,P_CONT_ATTRIBUTE7 =>
14369: hr_transaction_api.get_VARCHAR2_value
14370: (p_transaction_step_id => p_transaction_step_id
14371: ,p_name => 'P_CONT_ATTRIBUTE7')
14372: --
14373: ,P_CONT_ATTRIBUTE8 =>

Line 14374: hr_transaction_api.get_VARCHAR2_value

14370: (p_transaction_step_id => p_transaction_step_id
14371: ,p_name => 'P_CONT_ATTRIBUTE7')
14372: --
14373: ,P_CONT_ATTRIBUTE8 =>
14374: hr_transaction_api.get_VARCHAR2_value
14375: (p_transaction_step_id => p_transaction_step_id
14376: ,p_name => 'P_CONT_ATTRIBUTE8')
14377: --
14378: ,P_CONT_ATTRIBUTE9 =>

Line 14379: hr_transaction_api.get_VARCHAR2_value

14375: (p_transaction_step_id => p_transaction_step_id
14376: ,p_name => 'P_CONT_ATTRIBUTE8')
14377: --
14378: ,P_CONT_ATTRIBUTE9 =>
14379: hr_transaction_api.get_VARCHAR2_value
14380: (p_transaction_step_id => p_transaction_step_id
14381: ,p_name => 'P_CONT_ATTRIBUTE9')
14382: --
14383: ,P_CONT_ATTRIBUTE10 =>

Line 14384: hr_transaction_api.get_VARCHAR2_value

14380: (p_transaction_step_id => p_transaction_step_id
14381: ,p_name => 'P_CONT_ATTRIBUTE9')
14382: --
14383: ,P_CONT_ATTRIBUTE10 =>
14384: hr_transaction_api.get_VARCHAR2_value
14385: (p_transaction_step_id => p_transaction_step_id
14386: ,p_name => 'P_CONT_ATTRIBUTE10')
14387: --
14388: ,P_CONT_ATTRIBUTE11 =>

Line 14389: hr_transaction_api.get_VARCHAR2_value

14385: (p_transaction_step_id => p_transaction_step_id
14386: ,p_name => 'P_CONT_ATTRIBUTE10')
14387: --
14388: ,P_CONT_ATTRIBUTE11 =>
14389: hr_transaction_api.get_VARCHAR2_value
14390: (p_transaction_step_id => p_transaction_step_id
14391: ,p_name => 'P_CONT_ATTRIBUTE11')
14392: --
14393: ,P_CONT_ATTRIBUTE12 =>

Line 14394: hr_transaction_api.get_VARCHAR2_value

14390: (p_transaction_step_id => p_transaction_step_id
14391: ,p_name => 'P_CONT_ATTRIBUTE11')
14392: --
14393: ,P_CONT_ATTRIBUTE12 =>
14394: hr_transaction_api.get_VARCHAR2_value
14395: (p_transaction_step_id => p_transaction_step_id
14396: ,p_name => 'P_CONT_ATTRIBUTE12')
14397: --
14398: ,P_CONT_ATTRIBUTE13 =>

Line 14399: hr_transaction_api.get_VARCHAR2_value

14395: (p_transaction_step_id => p_transaction_step_id
14396: ,p_name => 'P_CONT_ATTRIBUTE12')
14397: --
14398: ,P_CONT_ATTRIBUTE13 =>
14399: hr_transaction_api.get_VARCHAR2_value
14400: (p_transaction_step_id => p_transaction_step_id
14401: ,p_name => 'P_CONT_ATTRIBUTE13')
14402: --
14403: ,P_CONT_ATTRIBUTE14 =>

Line 14404: hr_transaction_api.get_VARCHAR2_value

14400: (p_transaction_step_id => p_transaction_step_id
14401: ,p_name => 'P_CONT_ATTRIBUTE13')
14402: --
14403: ,P_CONT_ATTRIBUTE14 =>
14404: hr_transaction_api.get_VARCHAR2_value
14405: (p_transaction_step_id => p_transaction_step_id
14406: ,p_name => 'P_CONT_ATTRIBUTE14')
14407: --
14408: ,P_CONT_ATTRIBUTE15 =>

Line 14409: hr_transaction_api.get_VARCHAR2_value

14405: (p_transaction_step_id => p_transaction_step_id
14406: ,p_name => 'P_CONT_ATTRIBUTE14')
14407: --
14408: ,P_CONT_ATTRIBUTE15 =>
14409: hr_transaction_api.get_VARCHAR2_value
14410: (p_transaction_step_id => p_transaction_step_id
14411: ,p_name => 'P_CONT_ATTRIBUTE15')
14412: --
14413: ,P_CONT_ATTRIBUTE16 =>

Line 14414: hr_transaction_api.get_VARCHAR2_value

14410: (p_transaction_step_id => p_transaction_step_id
14411: ,p_name => 'P_CONT_ATTRIBUTE15')
14412: --
14413: ,P_CONT_ATTRIBUTE16 =>
14414: hr_transaction_api.get_VARCHAR2_value
14415: (p_transaction_step_id => p_transaction_step_id
14416: ,p_name => 'P_CONT_ATTRIBUTE16')
14417: --
14418: ,P_CONT_ATTRIBUTE17 =>

Line 14419: hr_transaction_api.get_VARCHAR2_value

14415: (p_transaction_step_id => p_transaction_step_id
14416: ,p_name => 'P_CONT_ATTRIBUTE16')
14417: --
14418: ,P_CONT_ATTRIBUTE17 =>
14419: hr_transaction_api.get_VARCHAR2_value
14420: (p_transaction_step_id => p_transaction_step_id
14421: ,p_name => 'P_CONT_ATTRIBUTE17')
14422: --
14423: ,P_CONT_ATTRIBUTE18 =>

Line 14424: hr_transaction_api.get_VARCHAR2_value

14420: (p_transaction_step_id => p_transaction_step_id
14421: ,p_name => 'P_CONT_ATTRIBUTE17')
14422: --
14423: ,P_CONT_ATTRIBUTE18 =>
14424: hr_transaction_api.get_VARCHAR2_value
14425: (p_transaction_step_id => p_transaction_step_id
14426: ,p_name => 'P_CONT_ATTRIBUTE18')
14427: --
14428: ,P_CONT_ATTRIBUTE19 =>

Line 14429: hr_transaction_api.get_VARCHAR2_value

14425: (p_transaction_step_id => p_transaction_step_id
14426: ,p_name => 'P_CONT_ATTRIBUTE18')
14427: --
14428: ,P_CONT_ATTRIBUTE19 =>
14429: hr_transaction_api.get_VARCHAR2_value
14430: (p_transaction_step_id => p_transaction_step_id
14431: ,p_name => 'P_CONT_ATTRIBUTE19')
14432: --
14433: ,P_CONT_ATTRIBUTE20 =>

Line 14434: hr_transaction_api.get_VARCHAR2_value

14430: (p_transaction_step_id => p_transaction_step_id
14431: ,p_name => 'P_CONT_ATTRIBUTE19')
14432: --
14433: ,P_CONT_ATTRIBUTE20 =>
14434: hr_transaction_api.get_VARCHAR2_value
14435: (p_transaction_step_id => p_transaction_step_id
14436: ,p_name => 'P_CONT_ATTRIBUTE20')
14437: --
14438: ,P_THIRD_PARTY_PAY_FLAG =>

Line 14439: hr_transaction_api.get_VARCHAR2_value

14435: (p_transaction_step_id => p_transaction_step_id
14436: ,p_name => 'P_CONT_ATTRIBUTE20')
14437: --
14438: ,P_THIRD_PARTY_PAY_FLAG =>
14439: hr_transaction_api.get_VARCHAR2_value
14440: (p_transaction_step_id => p_transaction_step_id
14441: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
14442: --
14443: ,P_BONDHOLDER_FLAG =>

Line 14444: hr_transaction_api.get_VARCHAR2_value

14440: (p_transaction_step_id => p_transaction_step_id
14441: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
14442: --
14443: ,P_BONDHOLDER_FLAG =>
14444: hr_transaction_api.get_VARCHAR2_value
14445: (p_transaction_step_id => p_transaction_step_id
14446: ,p_name => 'P_BONDHOLDER_FLAG')
14447: --
14448: ,P_DEPENDENT_FLAG =>

Line 14449: hr_transaction_api.get_VARCHAR2_value

14445: (p_transaction_step_id => p_transaction_step_id
14446: ,p_name => 'P_BONDHOLDER_FLAG')
14447: --
14448: ,P_DEPENDENT_FLAG =>
14449: hr_transaction_api.get_VARCHAR2_value
14450: (p_transaction_step_id => p_transaction_step_id
14451: ,p_name => 'P_DEPENDENT_FLAG')
14452: --
14453: ,P_BENEFICIARY_FLAG =>

Line 14454: hr_transaction_api.get_VARCHAR2_value

14450: (p_transaction_step_id => p_transaction_step_id
14451: ,p_name => 'P_DEPENDENT_FLAG')
14452: --
14453: ,P_BENEFICIARY_FLAG =>
14454: hr_transaction_api.get_VARCHAR2_value
14455: (p_transaction_step_id => p_transaction_step_id
14456: ,p_name => 'P_BENEFICIARY_FLAG')
14457: --
14458: ,P_CREATE_MIRROR_FLAG => 'N' -- Change later get from txn tables.

Line 14463: hr_transaction_api.get_VARCHAR2_value

14459: --
14460: ,P_MIRROR_TYPE => null
14461: --
14462: ,P_MIRROR_CONT_ATTRIBUTE_CAT =>
14463: hr_transaction_api.get_VARCHAR2_value
14464: (p_transaction_step_id => p_transaction_step_id
14465: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
14466: --
14467: ,P_MIRROR_CONT_ATTRIBUTE1 =>

Line 14468: hr_transaction_api.get_VARCHAR2_value

14464: (p_transaction_step_id => p_transaction_step_id
14465: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE_CAT')
14466: --
14467: ,P_MIRROR_CONT_ATTRIBUTE1 =>
14468: hr_transaction_api.get_VARCHAR2_value
14469: (p_transaction_step_id => p_transaction_step_id
14470: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
14471: --
14472: ,P_MIRROR_CONT_ATTRIBUTE2 =>

Line 14473: hr_transaction_api.get_VARCHAR2_value

14469: (p_transaction_step_id => p_transaction_step_id
14470: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE1')
14471: --
14472: ,P_MIRROR_CONT_ATTRIBUTE2 =>
14473: hr_transaction_api.get_VARCHAR2_value
14474: (p_transaction_step_id => p_transaction_step_id
14475: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
14476: --
14477: ,P_MIRROR_CONT_ATTRIBUTE3 =>

Line 14478: hr_transaction_api.get_VARCHAR2_value

14474: (p_transaction_step_id => p_transaction_step_id
14475: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE2')
14476: --
14477: ,P_MIRROR_CONT_ATTRIBUTE3 =>
14478: hr_transaction_api.get_VARCHAR2_value
14479: (p_transaction_step_id => p_transaction_step_id
14480: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
14481: --
14482: ,P_MIRROR_CONT_ATTRIBUTE4 =>

Line 14483: hr_transaction_api.get_VARCHAR2_value

14479: (p_transaction_step_id => p_transaction_step_id
14480: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE3')
14481: --
14482: ,P_MIRROR_CONT_ATTRIBUTE4 =>
14483: hr_transaction_api.get_VARCHAR2_value
14484: (p_transaction_step_id => p_transaction_step_id
14485: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
14486: --
14487: ,P_MIRROR_CONT_ATTRIBUTE5 =>

Line 14488: hr_transaction_api.get_VARCHAR2_value

14484: (p_transaction_step_id => p_transaction_step_id
14485: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE4')
14486: --
14487: ,P_MIRROR_CONT_ATTRIBUTE5 =>
14488: hr_transaction_api.get_VARCHAR2_value
14489: (p_transaction_step_id => p_transaction_step_id
14490: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
14491: --
14492: ,P_MIRROR_CONT_ATTRIBUTE6 =>

Line 14493: hr_transaction_api.get_VARCHAR2_value

14489: (p_transaction_step_id => p_transaction_step_id
14490: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE5')
14491: --
14492: ,P_MIRROR_CONT_ATTRIBUTE6 =>
14493: hr_transaction_api.get_VARCHAR2_value
14494: (p_transaction_step_id => p_transaction_step_id
14495: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
14496: --
14497: ,P_MIRROR_CONT_ATTRIBUTE7 =>

Line 14498: hr_transaction_api.get_VARCHAR2_value

14494: (p_transaction_step_id => p_transaction_step_id
14495: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE6')
14496: --
14497: ,P_MIRROR_CONT_ATTRIBUTE7 =>
14498: hr_transaction_api.get_VARCHAR2_value
14499: (p_transaction_step_id => p_transaction_step_id
14500: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
14501: --
14502: ,P_MIRROR_CONT_ATTRIBUTE8 =>

Line 14503: hr_transaction_api.get_VARCHAR2_value

14499: (p_transaction_step_id => p_transaction_step_id
14500: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE7')
14501: --
14502: ,P_MIRROR_CONT_ATTRIBUTE8 =>
14503: hr_transaction_api.get_VARCHAR2_value
14504: (p_transaction_step_id => p_transaction_step_id
14505: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
14506: --
14507: ,P_MIRROR_CONT_ATTRIBUTE9 =>

Line 14508: hr_transaction_api.get_VARCHAR2_value

14504: (p_transaction_step_id => p_transaction_step_id
14505: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE8')
14506: --
14507: ,P_MIRROR_CONT_ATTRIBUTE9 =>
14508: hr_transaction_api.get_VARCHAR2_value
14509: (p_transaction_step_id => p_transaction_step_id
14510: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
14511: --
14512: ,P_MIRROR_CONT_ATTRIBUTE10 =>

Line 14513: hr_transaction_api.get_VARCHAR2_value

14509: (p_transaction_step_id => p_transaction_step_id
14510: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE9')
14511: --
14512: ,P_MIRROR_CONT_ATTRIBUTE10 =>
14513: hr_transaction_api.get_VARCHAR2_value
14514: (p_transaction_step_id => p_transaction_step_id
14515: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
14516: --
14517: ,P_MIRROR_CONT_ATTRIBUTE11 =>

Line 14518: hr_transaction_api.get_VARCHAR2_value

14514: (p_transaction_step_id => p_transaction_step_id
14515: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE10')
14516: --
14517: ,P_MIRROR_CONT_ATTRIBUTE11 =>
14518: hr_transaction_api.get_VARCHAR2_value
14519: (p_transaction_step_id => p_transaction_step_id
14520: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
14521: --
14522: ,P_MIRROR_CONT_ATTRIBUTE12 =>

Line 14523: hr_transaction_api.get_VARCHAR2_value

14519: (p_transaction_step_id => p_transaction_step_id
14520: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE11')
14521: --
14522: ,P_MIRROR_CONT_ATTRIBUTE12 =>
14523: hr_transaction_api.get_VARCHAR2_value
14524: (p_transaction_step_id => p_transaction_step_id
14525: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
14526: --
14527: ,P_MIRROR_CONT_ATTRIBUTE13 =>

Line 14528: hr_transaction_api.get_VARCHAR2_value

14524: (p_transaction_step_id => p_transaction_step_id
14525: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE12')
14526: --
14527: ,P_MIRROR_CONT_ATTRIBUTE13 =>
14528: hr_transaction_api.get_VARCHAR2_value
14529: (p_transaction_step_id => p_transaction_step_id
14530: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
14531: --
14532: ,P_MIRROR_CONT_ATTRIBUTE14 =>

Line 14533: hr_transaction_api.get_VARCHAR2_value

14529: (p_transaction_step_id => p_transaction_step_id
14530: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE13')
14531: --
14532: ,P_MIRROR_CONT_ATTRIBUTE14 =>
14533: hr_transaction_api.get_VARCHAR2_value
14534: (p_transaction_step_id => p_transaction_step_id
14535: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
14536: --
14537: ,P_MIRROR_CONT_ATTRIBUTE15 =>

Line 14538: hr_transaction_api.get_VARCHAR2_value

14534: (p_transaction_step_id => p_transaction_step_id
14535: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE14')
14536: --
14537: ,P_MIRROR_CONT_ATTRIBUTE15 =>
14538: hr_transaction_api.get_VARCHAR2_value
14539: (p_transaction_step_id => p_transaction_step_id
14540: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
14541: --
14542: ,P_MIRROR_CONT_ATTRIBUTE16 =>

Line 14543: hr_transaction_api.get_VARCHAR2_value

14539: (p_transaction_step_id => p_transaction_step_id
14540: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE15')
14541: --
14542: ,P_MIRROR_CONT_ATTRIBUTE16 =>
14543: hr_transaction_api.get_VARCHAR2_value
14544: (p_transaction_step_id => p_transaction_step_id
14545: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
14546: --
14547: ,P_MIRROR_CONT_ATTRIBUTE17 =>

Line 14548: hr_transaction_api.get_VARCHAR2_value

14544: (p_transaction_step_id => p_transaction_step_id
14545: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE16')
14546: --
14547: ,P_MIRROR_CONT_ATTRIBUTE17 =>
14548: hr_transaction_api.get_VARCHAR2_value
14549: (p_transaction_step_id => p_transaction_step_id
14550: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
14551: --
14552: ,P_MIRROR_CONT_ATTRIBUTE18 =>

Line 14553: hr_transaction_api.get_VARCHAR2_value

14549: (p_transaction_step_id => p_transaction_step_id
14550: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE17')
14551: --
14552: ,P_MIRROR_CONT_ATTRIBUTE18 =>
14553: hr_transaction_api.get_VARCHAR2_value
14554: (p_transaction_step_id => p_transaction_step_id
14555: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
14556: --
14557: ,P_MIRROR_CONT_ATTRIBUTE19 =>

Line 14558: hr_transaction_api.get_VARCHAR2_value

14554: (p_transaction_step_id => p_transaction_step_id
14555: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE18')
14556: --
14557: ,P_MIRROR_CONT_ATTRIBUTE19 =>
14558: hr_transaction_api.get_VARCHAR2_value
14559: (p_transaction_step_id => p_transaction_step_id
14560: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
14561: --
14562: ,P_MIRROR_CONT_ATTRIBUTE20 =>

Line 14563: hr_transaction_api.get_VARCHAR2_value

14559: (p_transaction_step_id => p_transaction_step_id
14560: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE19')
14561: --
14562: ,P_MIRROR_CONT_ATTRIBUTE20 =>
14563: hr_transaction_api.get_VARCHAR2_value
14564: (p_transaction_step_id => p_transaction_step_id
14565: ,p_name => 'P_MIRROR_CONT_ATTRIBUTE20')
14566: --
14567:

Line 14589: hr_transaction_api.get_VARCHAR2_value

14585: --
14586: ,P_ORIG_HIRE_WARNING => L_CON_ORIG_HIRE_WARNING1
14587: --
14588: ,P_CONT_INFORMATION_CATEGORY =>
14589: hr_transaction_api.get_VARCHAR2_value
14590: (p_transaction_step_id => p_transaction_step_id
14591: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
14592: --
14593: ,P_CONT_INFORMATION1 =>

Line 14594: hr_transaction_api.get_VARCHAR2_value

14590: (p_transaction_step_id => p_transaction_step_id
14591: ,p_name => 'P_CONT_INFORMATION_CATEGORY')
14592: --
14593: ,P_CONT_INFORMATION1 =>
14594: hr_transaction_api.get_VARCHAR2_value
14595: (p_transaction_step_id => p_transaction_step_id
14596: ,p_name => 'P_CONT_INFORMATION1')
14597: --
14598: ,P_CONT_INFORMATION2 =>

Line 14599: hr_transaction_api.get_VARCHAR2_value

14595: (p_transaction_step_id => p_transaction_step_id
14596: ,p_name => 'P_CONT_INFORMATION1')
14597: --
14598: ,P_CONT_INFORMATION2 =>
14599: hr_transaction_api.get_VARCHAR2_value
14600: (p_transaction_step_id => p_transaction_step_id
14601: ,p_name => 'P_CONT_INFORMATION2')
14602: --
14603: ,P_CONT_INFORMATION3 =>

Line 14604: hr_transaction_api.get_VARCHAR2_value

14600: (p_transaction_step_id => p_transaction_step_id
14601: ,p_name => 'P_CONT_INFORMATION2')
14602: --
14603: ,P_CONT_INFORMATION3 =>
14604: hr_transaction_api.get_VARCHAR2_value
14605: (p_transaction_step_id => p_transaction_step_id
14606: ,p_name => 'P_CONT_INFORMATION3')
14607: --
14608: ,P_CONT_INFORMATION4 =>

Line 14609: hr_transaction_api.get_VARCHAR2_value

14605: (p_transaction_step_id => p_transaction_step_id
14606: ,p_name => 'P_CONT_INFORMATION3')
14607: --
14608: ,P_CONT_INFORMATION4 =>
14609: hr_transaction_api.get_VARCHAR2_value
14610: (p_transaction_step_id => p_transaction_step_id
14611: ,p_name => 'P_CONT_INFORMATION4')
14612: --
14613: ,P_CONT_INFORMATION5 =>

Line 14614: hr_transaction_api.get_VARCHAR2_value

14610: (p_transaction_step_id => p_transaction_step_id
14611: ,p_name => 'P_CONT_INFORMATION4')
14612: --
14613: ,P_CONT_INFORMATION5 =>
14614: hr_transaction_api.get_VARCHAR2_value
14615: (p_transaction_step_id => p_transaction_step_id
14616: ,p_name => 'P_CONT_INFORMATION5')
14617: --
14618: ,P_CONT_INFORMATION6 =>

Line 14619: hr_transaction_api.get_VARCHAR2_value

14615: (p_transaction_step_id => p_transaction_step_id
14616: ,p_name => 'P_CONT_INFORMATION5')
14617: --
14618: ,P_CONT_INFORMATION6 =>
14619: hr_transaction_api.get_VARCHAR2_value
14620: (p_transaction_step_id => p_transaction_step_id
14621: ,p_name => 'P_CONT_INFORMATION6')
14622: --
14623: ,P_CONT_INFORMATION7 =>

Line 14624: hr_transaction_api.get_VARCHAR2_value

14620: (p_transaction_step_id => p_transaction_step_id
14621: ,p_name => 'P_CONT_INFORMATION6')
14622: --
14623: ,P_CONT_INFORMATION7 =>
14624: hr_transaction_api.get_VARCHAR2_value
14625: (p_transaction_step_id => p_transaction_step_id
14626: ,p_name => 'P_CONT_INFORMATION7')
14627: --
14628: ,P_CONT_INFORMATION8 =>

Line 14629: hr_transaction_api.get_VARCHAR2_value

14625: (p_transaction_step_id => p_transaction_step_id
14626: ,p_name => 'P_CONT_INFORMATION7')
14627: --
14628: ,P_CONT_INFORMATION8 =>
14629: hr_transaction_api.get_VARCHAR2_value
14630: (p_transaction_step_id => p_transaction_step_id
14631: ,p_name => 'P_CONT_INFORMATION8')
14632: --
14633: ,P_CONT_INFORMATION9 =>

Line 14634: hr_transaction_api.get_VARCHAR2_value

14630: (p_transaction_step_id => p_transaction_step_id
14631: ,p_name => 'P_CONT_INFORMATION8')
14632: --
14633: ,P_CONT_INFORMATION9 =>
14634: hr_transaction_api.get_VARCHAR2_value
14635: (p_transaction_step_id => p_transaction_step_id
14636: ,p_name => 'P_CONT_INFORMATION9')
14637: --
14638: ,P_CONT_INFORMATION10 =>

Line 14639: hr_transaction_api.get_VARCHAR2_value

14635: (p_transaction_step_id => p_transaction_step_id
14636: ,p_name => 'P_CONT_INFORMATION9')
14637: --
14638: ,P_CONT_INFORMATION10 =>
14639: hr_transaction_api.get_VARCHAR2_value
14640: (p_transaction_step_id => p_transaction_step_id
14641: ,p_name => 'P_CONT_INFORMATION10')
14642: --
14643: ,P_CONT_INFORMATION11 =>

Line 14644: hr_transaction_api.get_VARCHAR2_value

14640: (p_transaction_step_id => p_transaction_step_id
14641: ,p_name => 'P_CONT_INFORMATION10')
14642: --
14643: ,P_CONT_INFORMATION11 =>
14644: hr_transaction_api.get_VARCHAR2_value
14645: (p_transaction_step_id => p_transaction_step_id
14646: ,p_name => 'P_CONT_INFORMATION11')
14647: --
14648: ,P_CONT_INFORMATION12 =>

Line 14649: hr_transaction_api.get_VARCHAR2_value

14645: (p_transaction_step_id => p_transaction_step_id
14646: ,p_name => 'P_CONT_INFORMATION11')
14647: --
14648: ,P_CONT_INFORMATION12 =>
14649: hr_transaction_api.get_VARCHAR2_value
14650: (p_transaction_step_id => p_transaction_step_id
14651: ,p_name => 'P_CONT_INFORMATION12')
14652: --
14653: ,P_CONT_INFORMATION13 =>

Line 14654: hr_transaction_api.get_VARCHAR2_value

14650: (p_transaction_step_id => p_transaction_step_id
14651: ,p_name => 'P_CONT_INFORMATION12')
14652: --
14653: ,P_CONT_INFORMATION13 =>
14654: hr_transaction_api.get_VARCHAR2_value
14655: (p_transaction_step_id => p_transaction_step_id
14656: ,p_name => 'P_CONT_INFORMATION13')
14657: --
14658: ,P_CONT_INFORMATION14 =>

Line 14659: hr_transaction_api.get_VARCHAR2_value

14655: (p_transaction_step_id => p_transaction_step_id
14656: ,p_name => 'P_CONT_INFORMATION13')
14657: --
14658: ,P_CONT_INFORMATION14 =>
14659: hr_transaction_api.get_VARCHAR2_value
14660: (p_transaction_step_id => p_transaction_step_id
14661: ,p_name => 'P_CONT_INFORMATION14')
14662: --
14663: ,P_CONT_INFORMATION15 =>

Line 14664: hr_transaction_api.get_VARCHAR2_value

14660: (p_transaction_step_id => p_transaction_step_id
14661: ,p_name => 'P_CONT_INFORMATION14')
14662: --
14663: ,P_CONT_INFORMATION15 =>
14664: hr_transaction_api.get_VARCHAR2_value
14665: (p_transaction_step_id => p_transaction_step_id
14666: ,p_name => 'P_CONT_INFORMATION15')
14667: --
14668: ,P_CONT_INFORMATION16 =>

Line 14669: hr_transaction_api.get_VARCHAR2_value

14665: (p_transaction_step_id => p_transaction_step_id
14666: ,p_name => 'P_CONT_INFORMATION15')
14667: --
14668: ,P_CONT_INFORMATION16 =>
14669: hr_transaction_api.get_VARCHAR2_value
14670: (p_transaction_step_id => p_transaction_step_id
14671: ,p_name => 'P_CONT_INFORMATION16')
14672: --
14673: ,P_CONT_INFORMATION17 =>

Line 14674: hr_transaction_api.get_VARCHAR2_value

14670: (p_transaction_step_id => p_transaction_step_id
14671: ,p_name => 'P_CONT_INFORMATION16')
14672: --
14673: ,P_CONT_INFORMATION17 =>
14674: hr_transaction_api.get_VARCHAR2_value
14675: (p_transaction_step_id => p_transaction_step_id
14676: ,p_name => 'P_CONT_INFORMATION17')
14677: --
14678: ,P_CONT_INFORMATION18 =>

Line 14679: hr_transaction_api.get_VARCHAR2_value

14675: (p_transaction_step_id => p_transaction_step_id
14676: ,p_name => 'P_CONT_INFORMATION17')
14677: --
14678: ,P_CONT_INFORMATION18 =>
14679: hr_transaction_api.get_VARCHAR2_value
14680: (p_transaction_step_id => p_transaction_step_id
14681: ,p_name => 'P_CONT_INFORMATION18')
14682: --
14683: ,P_CONT_INFORMATION19 =>

Line 14684: hr_transaction_api.get_VARCHAR2_value

14680: (p_transaction_step_id => p_transaction_step_id
14681: ,p_name => 'P_CONT_INFORMATION18')
14682: --
14683: ,P_CONT_INFORMATION19 =>
14684: hr_transaction_api.get_VARCHAR2_value
14685: (p_transaction_step_id => p_transaction_step_id
14686: ,p_name => 'P_CONT_INFORMATION19')
14687: --
14688: ,P_CONT_INFORMATION20 =>

Line 14689: hr_transaction_api.get_VARCHAR2_value

14685: (p_transaction_step_id => p_transaction_step_id
14686: ,p_name => 'P_CONT_INFORMATION19')
14687: --
14688: ,P_CONT_INFORMATION20 =>
14689: hr_transaction_api.get_VARCHAR2_value
14690: (p_transaction_step_id => p_transaction_step_id
14691: ,p_name => 'P_CONT_INFORMATION20')
14692: );
14693: --

Line 15024: hr_transaction_api.get_transaction_step_info

15020: -- if a transaction step does exist then the transaction_step_id and
15021: -- object_version_number are set (i.e. not null).
15022: -- --------------------------------------------------------------------------
15023: hr_utility.set_location('Call :get_transaction_step_info'||l_proc, 20);
15024: hr_transaction_api.get_transaction_step_info
15025: (p_item_type => p_item_type
15026: ,p_item_key => p_item_key
15027: ,p_activity_id => p_activity_id
15028: ,p_transaction_step_id => l_transaction_step_id

Line 15422: l_effective_date := hr_transaction_api.get_DATE_value

15418: --
15419: if not p_validate then
15420: --
15421: hr_utility.set_location(' not p_validate:'||l_proc, 20);
15422: l_effective_date := hr_transaction_api.get_DATE_value
15423: (p_transaction_step_id => p_transaction_step_id
15424: ,p_name => 'P_EFFECTIVE_DATE');
15425: --
15426: end if;

Line 15431: l_contact_relationship_id := hr_transaction_api.get_number_value

15427: --
15428: -- Get the contact_relationship_id first. If it is null, that means
15429: -- this is error and raise the error. -- add the error name 99999.
15430: --
15431: l_contact_relationship_id := hr_transaction_api.get_number_value
15432: (p_transaction_step_id => p_transaction_step_id
15433: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
15434: --
15435: l_ovn := hr_transaction_api.get_number_value

Line 15435: l_ovn := hr_transaction_api.get_number_value

15431: l_contact_relationship_id := hr_transaction_api.get_number_value
15432: (p_transaction_step_id => p_transaction_step_id
15433: ,p_name => 'P_CONTACT_RELATIONSHIP_ID');
15434: --
15435: l_ovn := hr_transaction_api.get_number_value
15436: (p_transaction_step_id => p_transaction_step_id
15437: ,p_name => 'P_OBJECT_VERSION_NUMBER');
15438: --
15439: l_other_rel_ovn := hr_transaction_api.get_NUMBER_value

Line 15439: l_other_rel_ovn := hr_transaction_api.get_NUMBER_value

15435: l_ovn := hr_transaction_api.get_number_value
15436: (p_transaction_step_id => p_transaction_step_id
15437: ,p_name => 'P_OBJECT_VERSION_NUMBER');
15438: --
15439: l_other_rel_ovn := hr_transaction_api.get_NUMBER_value
15440: (p_transaction_step_id => p_transaction_step_id
15441: ,p_name => 'P_OTHER_REL_OBJ_VER_NO') ;
15442: --
15443: IF l_contact_relationship_id IS NOT NULL

Line 15452: hr_transaction_api.get_DATE_value

15448: p_validate => p_validate
15449: --
15450: ,P_EFFECTIVE_DATE =>l_effective_date
15451: /*
15452: hr_transaction_api.get_DATE_value
15453: (p_transaction_step_id => p_transaction_step_id
15454: ,p_name => 'P_EFFECTIVE_DATE')
15455: */
15456: --

Line 15460: /* ,p_attribute_update_mode => hr_transaction_api.get_varchar2_value

15456: --
15457: ,p_object_version_number => l_ovn
15458: --
15459: -- 9999 What value to pass on.
15460: /* ,p_attribute_update_mode => hr_transaction_api.get_varchar2_value
15461: (p_transaction_step_id => p_transaction_step_id
15462: ,p_name => 'P_ATTRIBUTE_UPDATE_MODE')
15463: */
15464: --

Line 15466: hr_transaction_api.get_NUMBER_value

15462: ,p_name => 'P_ATTRIBUTE_UPDATE_MODE')
15463: */
15464: --
15465: ,P_CONTACT_RELATIONSHIP_ID =>
15466: hr_transaction_api.get_NUMBER_value
15467: (p_transaction_step_id => p_transaction_step_id
15468: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
15469: --
15470: /*

Line 15472: hr_transaction_api.get_VARCHAR2_value

15468: ,p_name => 'P_CONTACT_RELATIONSHIP_ID')
15469: --
15470: /*
15471: ,P_CONTACT_TYPE =>
15472: hr_transaction_api.get_VARCHAR2_value
15473: (p_transaction_step_id => p_transaction_step_id
15474: ,p_name => 'P_CONTACT_TYPE')
15475: --
15476: ,P_COMMENTS =>

Line 15477: hr_transaction_api.get_varchar2_value

15473: (p_transaction_step_id => p_transaction_step_id
15474: ,p_name => 'P_CONTACT_TYPE')
15475: --
15476: ,P_COMMENTS =>
15477: hr_transaction_api.get_varchar2_value
15478: (p_transaction_step_id => p_transaction_step_id
15479: ,p_name => 'P_COMMENTS')
15480: --
15481: ,P_PRIMARY_CONTACT_FLAG =>

Line 15482: hr_transaction_api.get_VARCHAR2_value

15478: (p_transaction_step_id => p_transaction_step_id
15479: ,p_name => 'P_COMMENTS')
15480: --
15481: ,P_PRIMARY_CONTACT_FLAG =>
15482: hr_transaction_api.get_VARCHAR2_value
15483: (p_transaction_step_id => p_transaction_step_id
15484: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
15485: --
15486: ,P_THIRD_PARTY_PAY_FLAG =>

Line 15487: hr_transaction_api.get_VARCHAR2_value

15483: (p_transaction_step_id => p_transaction_step_id
15484: ,p_name => 'P_PRIMARY_CONTACT_FLAG')
15485: --
15486: ,P_THIRD_PARTY_PAY_FLAG =>
15487: hr_transaction_api.get_VARCHAR2_value
15488: (p_transaction_step_id => p_transaction_step_id
15489: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
15490: --
15491: ,p_bondholder_flag =>

Line 15492: hr_transaction_api.get_varchar2_value

15488: (p_transaction_step_id => p_transaction_step_id
15489: ,p_name => 'P_THIRD_PARTY_PAY_FLAG')
15490: --
15491: ,p_bondholder_flag =>
15492: hr_transaction_api.get_varchar2_value
15493: (p_transaction_step_id => p_transaction_step_id
15494: ,p_name => 'p_bondholder_flag')
15495: --
15496: ,p_date_start =>

Line 15497: hr_transaction_api.get_date_value

15493: (p_transaction_step_id => p_transaction_step_id
15494: ,p_name => 'p_bondholder_flag')
15495: --
15496: ,p_date_start =>
15497: hr_transaction_api.get_date_value
15498: (p_transaction_step_id => p_transaction_step_id
15499: ,p_name => 'p_date_start')
15500: --
15501: ,p_start_life_reason_id =>

Line 15502: hr_transaction_api.get_number_value

15498: (p_transaction_step_id => p_transaction_step_id
15499: ,p_name => 'p_date_start')
15500: --
15501: ,p_start_life_reason_id =>
15502: hr_transaction_api.get_number_value
15503: (p_transaction_step_id => p_transaction_step_id
15504: ,p_name => 'p_start_life_reason_id')
15505: --
15506: */

Line 15508: hr_transaction_api.get_date_value

15504: ,p_name => 'p_start_life_reason_id')
15505: --
15506: */
15507: ,p_date_end =>
15508: hr_transaction_api.get_date_value
15509: (p_transaction_step_id => p_transaction_step_id
15510: ,p_name => 'p_date_end')
15511: --
15512: --bug# 2080032

Line 15514: hr_transaction_api.get_number_value

15510: ,p_name => 'p_date_end')
15511: --
15512: --bug# 2080032
15513: ,p_end_life_reason_id =>
15514: hr_transaction_api.get_number_value
15515: (p_transaction_step_id => p_transaction_step_id
15516: ,p_name => 'p_end_life_reason_id')
15517: --
15518: /*

Line 15520: hr_transaction_api.get_varchar2_value

15516: ,p_name => 'p_end_life_reason_id')
15517: --
15518: /*
15519: ,p_rltd_per_rsds_w_dsgntr_flag =>
15520: hr_transaction_api.get_varchar2_value
15521: (p_transaction_step_id => p_transaction_step_id
15522: ,p_name => 'p_rltd_per_rsds_w_dsgntr_flag')
15523: --
15524: ,p_personal_flag =>

Line 15525: hr_transaction_api.get_varchar2_value

15521: (p_transaction_step_id => p_transaction_step_id
15522: ,p_name => 'p_rltd_per_rsds_w_dsgntr_flag')
15523: --
15524: ,p_personal_flag =>
15525: hr_transaction_api.get_varchar2_value
15526: (p_transaction_step_id => p_transaction_step_id
15527: ,p_name => 'p_personal_flag')
15528: --
15529: ,p_sequence_number =>

Line 15530: hr_transaction_api.get_number_value

15526: (p_transaction_step_id => p_transaction_step_id
15527: ,p_name => 'p_personal_flag')
15528: --
15529: ,p_sequence_number =>
15530: hr_transaction_api.get_number_value
15531: (p_transaction_step_id => p_transaction_step_id
15532: ,p_name => 'p_sequence_number')
15533: --
15534: ,p_dependent_flag =>

Line 15535: hr_transaction_api.get_varchar2_value

15531: (p_transaction_step_id => p_transaction_step_id
15532: ,p_name => 'p_sequence_number')
15533: --
15534: ,p_dependent_flag =>
15535: hr_transaction_api.get_varchar2_value
15536: (p_transaction_step_id => p_transaction_step_id
15537: ,p_name => 'p_dependent_flag')
15538: --
15539: ,p_beneficiary_flag =>

Line 15540: hr_transaction_api.get_varchar2_value

15536: (p_transaction_step_id => p_transaction_step_id
15537: ,p_name => 'p_dependent_flag')
15538: --
15539: ,p_beneficiary_flag =>
15540: hr_transaction_api.get_varchar2_value
15541: (p_transaction_step_id => p_transaction_step_id
15542: ,p_name => 'p_beneficiary_flag')
15543: --
15544: ,p_cont_attribute_category =>

Line 15545: hr_transaction_api.get_varchar2_value

15541: (p_transaction_step_id => p_transaction_step_id
15542: ,p_name => 'p_beneficiary_flag')
15543: --
15544: ,p_cont_attribute_category =>
15545: hr_transaction_api.get_varchar2_value
15546: (p_transaction_step_id => p_transaction_step_id
15547: ,p_name => 'p_cont_attribute_category')
15548: --
15549: ,p_cont_attribute1 =>

Line 15550: hr_transaction_api.get_varchar2_value

15546: (p_transaction_step_id => p_transaction_step_id
15547: ,p_name => 'p_cont_attribute_category')
15548: --
15549: ,p_cont_attribute1 =>
15550: hr_transaction_api.get_varchar2_value
15551: (p_transaction_step_id => p_transaction_step_id
15552: ,p_name => 'p_cont_attribute1')
15553: --
15554: ,p_cont_attribute2 =>

Line 15555: hr_transaction_api.get_varchar2_value

15551: (p_transaction_step_id => p_transaction_step_id
15552: ,p_name => 'p_cont_attribute1')
15553: --
15554: ,p_cont_attribute2 =>
15555: hr_transaction_api.get_varchar2_value
15556: (p_transaction_step_id => p_transaction_step_id
15557: ,p_name => 'p_cont_attribute2')
15558: --
15559: ,p_cont_attribute3 =>

Line 15560: hr_transaction_api.get_varchar2_value

15556: (p_transaction_step_id => p_transaction_step_id
15557: ,p_name => 'p_cont_attribute2')
15558: --
15559: ,p_cont_attribute3 =>
15560: hr_transaction_api.get_varchar2_value
15561: (p_transaction_step_id => p_transaction_step_id
15562: ,p_name => 'p_cont_attribute3')
15563: --
15564: ,p_cont_attribute4 =>

Line 15565: hr_transaction_api.get_varchar2_value

15561: (p_transaction_step_id => p_transaction_step_id
15562: ,p_name => 'p_cont_attribute3')
15563: --
15564: ,p_cont_attribute4 =>
15565: hr_transaction_api.get_varchar2_value
15566: (p_transaction_step_id => p_transaction_step_id
15567: ,p_name => 'p_cont_attribute4')
15568: --
15569: ,p_cont_attribute5 =>

Line 15570: hr_transaction_api.get_varchar2_value

15566: (p_transaction_step_id => p_transaction_step_id
15567: ,p_name => 'p_cont_attribute4')
15568: --
15569: ,p_cont_attribute5 =>
15570: hr_transaction_api.get_varchar2_value
15571: (p_transaction_step_id => p_transaction_step_id
15572: ,p_name => 'p_cont_attribute5')
15573: --
15574: ,p_cont_attribute6 =>

Line 15575: hr_transaction_api.get_varchar2_value

15571: (p_transaction_step_id => p_transaction_step_id
15572: ,p_name => 'p_cont_attribute5')
15573: --
15574: ,p_cont_attribute6 =>
15575: hr_transaction_api.get_varchar2_value
15576: (p_transaction_step_id => p_transaction_step_id
15577: ,p_name => 'p_cont_attribute6')
15578: --
15579: ,p_cont_attribute7 =>

Line 15580: hr_transaction_api.get_varchar2_value

15576: (p_transaction_step_id => p_transaction_step_id
15577: ,p_name => 'p_cont_attribute6')
15578: --
15579: ,p_cont_attribute7 =>
15580: hr_transaction_api.get_varchar2_value
15581: (p_transaction_step_id => p_transaction_step_id
15582: ,p_name => 'p_cont_attribute7')
15583: --
15584: ,p_cont_attribute8 =>

Line 15585: hr_transaction_api.get_varchar2_value

15581: (p_transaction_step_id => p_transaction_step_id
15582: ,p_name => 'p_cont_attribute7')
15583: --
15584: ,p_cont_attribute8 =>
15585: hr_transaction_api.get_varchar2_value
15586: (p_transaction_step_id => p_transaction_step_id
15587: ,p_name => 'p_cont_attribute8')
15588: --
15589: ,p_cont_attribute9 =>

Line 15590: hr_transaction_api.get_varchar2_value

15586: (p_transaction_step_id => p_transaction_step_id
15587: ,p_name => 'p_cont_attribute8')
15588: --
15589: ,p_cont_attribute9 =>
15590: hr_transaction_api.get_varchar2_value
15591: (p_transaction_step_id => p_transaction_step_id
15592: ,p_name => 'p_cont_attribute9')
15593: --
15594: ,p_cont_attribute10 =>

Line 15595: hr_transaction_api.get_varchar2_value

15591: (p_transaction_step_id => p_transaction_step_id
15592: ,p_name => 'p_cont_attribute9')
15593: --
15594: ,p_cont_attribute10 =>
15595: hr_transaction_api.get_varchar2_value
15596: (p_transaction_step_id => p_transaction_step_id
15597: ,p_name => 'p_cont_attribute10')
15598: --
15599: ,p_cont_attribute11 =>

Line 15600: hr_transaction_api.get_varchar2_value

15596: (p_transaction_step_id => p_transaction_step_id
15597: ,p_name => 'p_cont_attribute10')
15598: --
15599: ,p_cont_attribute11 =>
15600: hr_transaction_api.get_varchar2_value
15601: (p_transaction_step_id => p_transaction_step_id
15602: ,p_name => 'p_cont_attribute11')
15603: --
15604: ,p_cont_attribute12 =>

Line 15605: hr_transaction_api.get_varchar2_value

15601: (p_transaction_step_id => p_transaction_step_id
15602: ,p_name => 'p_cont_attribute11')
15603: --
15604: ,p_cont_attribute12 =>
15605: hr_transaction_api.get_varchar2_value
15606: (p_transaction_step_id => p_transaction_step_id
15607: ,p_name => 'p_cont_attribute12')
15608: --
15609: ,p_cont_attribute13 =>

Line 15610: hr_transaction_api.get_varchar2_value

15606: (p_transaction_step_id => p_transaction_step_id
15607: ,p_name => 'p_cont_attribute12')
15608: --
15609: ,p_cont_attribute13 =>
15610: hr_transaction_api.get_varchar2_value
15611: (p_transaction_step_id => p_transaction_step_id
15612: ,p_name => 'p_cont_attribute13')
15613: --
15614: ,p_cont_attribute14 =>

Line 15615: hr_transaction_api.get_varchar2_value

15611: (p_transaction_step_id => p_transaction_step_id
15612: ,p_name => 'p_cont_attribute13')
15613: --
15614: ,p_cont_attribute14 =>
15615: hr_transaction_api.get_varchar2_value
15616: (p_transaction_step_id => p_transaction_step_id
15617: ,p_name => 'p_cont_attribute14')
15618: --
15619: ,p_cont_attribute15 =>

Line 15620: hr_transaction_api.get_varchar2_value

15616: (p_transaction_step_id => p_transaction_step_id
15617: ,p_name => 'p_cont_attribute14')
15618: --
15619: ,p_cont_attribute15 =>
15620: hr_transaction_api.get_varchar2_value
15621: (p_transaction_step_id => p_transaction_step_id
15622: ,p_name => 'p_cont_attribute15')
15623: --
15624: ,p_cont_attribute16 =>

Line 15625: hr_transaction_api.get_varchar2_value

15621: (p_transaction_step_id => p_transaction_step_id
15622: ,p_name => 'p_cont_attribute15')
15623: --
15624: ,p_cont_attribute16 =>
15625: hr_transaction_api.get_varchar2_value
15626: (p_transaction_step_id => p_transaction_step_id
15627: ,p_name => 'p_cont_attribute16')
15628: --
15629: ,p_cont_attribute17 =>

Line 15630: hr_transaction_api.get_varchar2_value

15626: (p_transaction_step_id => p_transaction_step_id
15627: ,p_name => 'p_cont_attribute16')
15628: --
15629: ,p_cont_attribute17 =>
15630: hr_transaction_api.get_varchar2_value
15631: (p_transaction_step_id => p_transaction_step_id
15632: ,p_name => 'p_cont_attribute17')
15633: --
15634: ,p_cont_attribute18 =>

Line 15635: hr_transaction_api.get_varchar2_value

15631: (p_transaction_step_id => p_transaction_step_id
15632: ,p_name => 'p_cont_attribute17')
15633: --
15634: ,p_cont_attribute18 =>
15635: hr_transaction_api.get_varchar2_value
15636: (p_transaction_step_id => p_transaction_step_id
15637: ,p_name => 'p_cont_attribute18')
15638: --
15639: ,p_cont_attribute19 =>

Line 15640: hr_transaction_api.get_varchar2_value

15636: (p_transaction_step_id => p_transaction_step_id
15637: ,p_name => 'p_cont_attribute18')
15638: --
15639: ,p_cont_attribute19 =>
15640: hr_transaction_api.get_varchar2_value
15641: (p_transaction_step_id => p_transaction_step_id
15642: ,p_name => 'p_cont_attribute19')
15643: --
15644: ,p_cont_attribute20 =>

Line 15645: hr_transaction_api.get_varchar2_value

15641: (p_transaction_step_id => p_transaction_step_id
15642: ,p_name => 'p_cont_attribute19')
15643: --
15644: ,p_cont_attribute20 =>
15645: hr_transaction_api.get_varchar2_value
15646: (p_transaction_step_id => p_transaction_step_id
15647: ,p_name => 'p_cont_attribute20')
15648: --
15649: */

Line 15653: l_del_other_rel := hr_transaction_api.get_VARCHAR2_value

15649: */
15650: );
15651: -- Bug 3152505 : calling the update_api for second time if user has checked the check bux for deleting
15652: -- the other relationship also.
15653: l_del_other_rel := hr_transaction_api.get_VARCHAR2_value
15654: (p_transaction_step_id => p_transaction_step_id
15655: ,p_name => 'P_END_OTHER_REL');
15656:
15657: if l_del_other_rel = 'Y' then

Line 15664: hr_transaction_api.get_NUMBER_value

15660: p_validate => p_validate
15661: ,P_EFFECTIVE_DATE =>l_effective_date
15662: ,p_object_version_number => l_other_rel_ovn
15663: ,P_CONTACT_RELATIONSHIP_ID =>
15664: hr_transaction_api.get_NUMBER_value
15665: (p_transaction_step_id => p_transaction_step_id
15666: ,p_name => 'P_OTHER_REL_ID')
15667: ,p_date_end =>
15668: hr_transaction_api.get_date_value

Line 15668: hr_transaction_api.get_date_value

15664: hr_transaction_api.get_NUMBER_value
15665: (p_transaction_step_id => p_transaction_step_id
15666: ,p_name => 'P_OTHER_REL_ID')
15667: ,p_date_end =>
15668: hr_transaction_api.get_date_value
15669: (p_transaction_step_id => p_transaction_step_id
15670: ,p_name => 'p_date_end')
15671: ,p_end_life_reason_id =>
15672: hr_transaction_api.get_number_value

Line 15672: hr_transaction_api.get_number_value

15668: hr_transaction_api.get_date_value
15669: (p_transaction_step_id => p_transaction_step_id
15670: ,p_name => 'p_date_end')
15671: ,p_end_life_reason_id =>
15672: hr_transaction_api.get_number_value
15673: (p_transaction_step_id => p_transaction_step_id
15674: ,p_name => 'p_end_life_reason_id')
15675: );
15676: end if;

Line 15769: hr_transaction_api.get_transaction_step_info (

15765:
15766: BEGIN
15767:
15768: hr_utility.set_location('Entering:'||l_proc, 5);
15769: hr_transaction_api.get_transaction_step_info (
15770: p_Item_Type => p_item_type,
15771: p_Item_Key => p_item_key,
15772: p_activity_id => to_number(p_actid),
15773: p_transaction_step_id => l_trans_step_ids,

Line 15803: l_contact_set := hr_transaction_api.get_varchar2_value

15799: hr_utility.set_location('before starting For Loop:'||l_proc, 10);
15800: FOR i IN 0..(l_trans_step_rows - 1) LOOP
15801:
15802: begin
15803: l_contact_set := hr_transaction_api.get_varchar2_value
15804: (p_transaction_step_id => l_trans_step_ids(i)
15805: ,p_name => 'P_CONTACT_SET');
15806: exception
15807: when others then

Line 15860: hr_transaction_api.get_transaction_step_info (

15856:
15857: BEGIN
15858:
15859: hr_utility.set_location('Entering:'||l_proc, 5);
15860: hr_transaction_api.get_transaction_step_info (
15861: p_Item_Type => p_item_type,
15862: p_Item_Key => p_item_key,
15863: p_activity_id => to_number(p_actid),
15864: p_transaction_step_id => l_trans_step_ids,

Line 15894: l_contact_set := hr_transaction_api.get_varchar2_value

15890: hr_utility.set_location('Before Entering For Loop:'||l_proc,10 );
15891: FOR i IN 0..(l_trans_step_rows - 1) LOOP
15892:
15893: begin
15894: l_contact_set := hr_transaction_api.get_varchar2_value
15895: (p_transaction_step_id => l_trans_step_ids(i)
15896: ,p_name => 'P_CONTACT_SET');
15897: exception
15898: when others then

Line 15976: hr_transaction_api.get_number_value

15972: begin
15973: hr_utility.set_location('Entering:'||l_proc, 5);
15974: /*
15975: l_assignment_id :=
15976: hr_transaction_api.get_number_value
15977: (p_transaction_step_id => p_transaction_step_id
15978: ,p_name => 'P_ASSIGNMENT_ID');
15979:
15980: open csr_new_object_number(l_assignment_id);

Line 15985: hr_transaction_api.get_number_value

15981: fetch csr_new_object_number into l_new_object_number;
15982: close csr_new_object_number;
15983:
15984: l_old_object_number :=
15985: hr_transaction_api.get_number_value
15986: (p_transaction_step_id => p_transaction_step_id
15987: ,p_name => 'P_OBJECT_VERSION_NUMBER');
15988:
15989: if l_old_object_number <> l_new_object_number then

Line 15990: hr_transaction_api.set_number_value

15986: (p_transaction_step_id => p_transaction_step_id
15987: ,p_name => 'P_OBJECT_VERSION_NUMBER');
15988:
15989: if l_old_object_number <> l_new_object_number then
15990: hr_transaction_api.set_number_value
15991: (p_transaction_step_id => p_transaction_step_id
15992: ,p_person_id => p_login_person_id
15993: ,p_name => 'P_OBJECT_VERSION_NUMBER'
15994: ,p_value => l_new_object_number);

Line 16788: l_main_per_date_of_birth := hr_transaction_api.get_date_value

16784: where hats1.item_type = 'HRSSA'
16785: and hats1.item_key = p_item_key
16786: and hats1.api_name in( 'HR_PROCESS_PERSON_SS.PROCESS_API', 'BEN_PROCESS_COBRA_PERSON_SS.PROCESS_API');
16787:
16788: l_main_per_date_of_birth := hr_transaction_api.get_date_value
16789: (p_transaction_step_id => l_validate_g_per_step_id
16790: ,p_name => 'P_DATE_OF_BIRTH') ;
16791:
16792: l_main_per_eff_start_date := hr_transaction_api.get_date_value

Line 16792: l_main_per_eff_start_date := hr_transaction_api.get_date_value

16788: l_main_per_date_of_birth := hr_transaction_api.get_date_value
16789: (p_transaction_step_id => l_validate_g_per_step_id
16790: ,p_name => 'P_DATE_OF_BIRTH') ;
16791:
16792: l_main_per_eff_start_date := hr_transaction_api.get_date_value
16793: (p_transaction_step_id => l_validate_g_per_step_id
16794: ,p_name => 'P_EFFECTIVE_DATE');
16795:
16796: exception