DBA Data[Home] [Help]

APPS.PAY_US_WEB_W4 dependencies on HR_API_TRANSACTION_STEPS

Line 952: l_transaction_step_id hr_api_transaction_steps.transaction_step_id%type;

948: common_exception EXCEPTION;
949:
950: lv_update_method VARCHAR2(30) := 'PRIMARY' ;
951: l_transaction_id hr_api_transactions.transaction_id%type;
952: l_transaction_step_id hr_api_transaction_steps.transaction_step_id%type;
953: l_transaction_value_id hr_api_transaction_values.transaction_value_id%type;
954: l_step_obj_version_number hr_api_transaction_steps.object_version_number%type;
955: transaction_value_fs VARCHAR2(80);
956:

Line 954: l_step_obj_version_number hr_api_transaction_steps.object_version_number%type;

950: lv_update_method VARCHAR2(30) := 'PRIMARY' ;
951: l_transaction_id hr_api_transactions.transaction_id%type;
952: l_transaction_step_id hr_api_transaction_steps.transaction_step_id%type;
953: l_transaction_value_id hr_api_transaction_values.transaction_value_id%type;
954: l_step_obj_version_number hr_api_transaction_steps.object_version_number%type;
955: transaction_value_fs VARCHAR2(80);
956:
957: CURSOR c_fed_allowance_limit is
958: select fed_information1

Line 965: cursor get_function_info ( p_item_type HR_API_TRANSACTION_STEPS.item_type%TYPE

961: and trunc(sysdate) between effective_start_date and effective_end_date;
962:
963: l_fed_allowance_limit pay_us_federal_tax_info_f.fed_information1%type;
964:
965: cursor get_function_info ( p_item_type HR_API_TRANSACTION_STEPS.item_type%TYPE
966: ,p_item_key HR_API_TRANSACTION_STEPS.item_key%TYPE ) is
967: select fff.function_id, fff.function_name
968: from fnd_form_functions_vl fff
969: where fff.function_name = ( select iav.text_value

Line 966: ,p_item_key HR_API_TRANSACTION_STEPS.item_key%TYPE ) is

962:
963: l_fed_allowance_limit pay_us_federal_tax_info_f.fed_information1%type;
964:
965: cursor get_function_info ( p_item_type HR_API_TRANSACTION_STEPS.item_type%TYPE
966: ,p_item_key HR_API_TRANSACTION_STEPS.item_key%TYPE ) is
967: select fff.function_id, fff.function_name
968: from fnd_form_functions_vl fff
969: where fff.function_name = ( select iav.text_value
970: from wf_item_attribute_values iav

Line 1412: into hr_api_transactions, hr_api_transaction_steps and hr_api_transaction_values.

1408: hr_utility.trace('The global state exempt list is : '|| g_state_exempt_list);
1409:
1410:
1411: /* If we have come so far that means we have no errors. So insert data
1412: into hr_api_transactions, hr_api_transaction_steps and hr_api_transaction_values.
1413: Need to insert data into these tables to store OLD and NEW values for W4. These
1414: OLD and NEW values are used in the review page. */
1415:
1416: -- First the hr_api_transactions table

Line 1467: -- hr_api_transaction_steps

1463: ,p_transaction_effective_date=>sysdate
1464: ,p_process_name =>lv_process_name
1465: );
1466:
1467: -- hr_api_transaction_steps
1468:
1469: hr_transaction_api.create_transaction_step(
1470: p_creator_person_id => ln_person_id,
1471: p_transaction_id => l_transaction_id,

Line 1489: from HR_API_TRANSACTION_STEPS

1485: else /* transaction exists */
1486:
1487: hr_utility.trace('l_transaction_id : '|| l_transaction_id);
1488: select transaction_step_id into l_transaction_step_id
1489: from HR_API_TRANSACTION_STEPS
1490: where transaction_id = l_transaction_id;
1491:
1492: end if;
1493:

Line 1653: l_step_id hr_api_transaction_steps.transaction_step_id%type;

1649: p_trans_id IN VARCHAR2 Default null,
1650: p_step_id IN VARCHAR2 Default null,
1651: p_out_values OUT nocopy VARCHAR2 ) IS
1652:
1653: l_step_id hr_api_transaction_steps.transaction_step_id%type;
1654:
1655: CURSOR c_trans_values IS
1656:
1657: select v.datatype,v.name,v.varchar2_value,number_value

Line 1681: from hr_api_transaction_steps

1677:
1678: if (p_trans_id is not null and p_step_id is null) then
1679:
1680: select transaction_step_id into l_step_id
1681: from hr_api_transaction_steps
1682: where transaction_id = to_number(p_trans_id);
1683:
1684: else
1685: l_step_id := to_number(p_step_id);

Line 2786: from hr_api_transaction_steps

2782:
2783: Cursor c_trans_step is
2784:
2785: select transaction_id, creator_person_id
2786: from hr_api_transaction_steps
2787: where transaction_step_id = p_transaction_step_id;
2788:
2789: l_datatype hr_api_transaction_values.datatype%type;
2790: l_name hr_api_transaction_values.name%type;

Line 2807: l_item_type hr_api_transaction_steps.item_type%type;

2803: l_org_allowances hr_api_transaction_values.number_value%type;
2804: l_org_exempt hr_api_transaction_values.varchar2_value%type;
2805: l_last_name_diff hr_api_transaction_values.varchar2_value%TYPE;
2806:
2807: l_item_type hr_api_transaction_steps.item_type%type;
2808: l_item_key hr_api_transaction_steps.item_key%type;
2809: l_activity_id hr_api_transaction_steps.activity_id%type;
2810: l_person_id hr_api_transaction_steps.creator_person_id%type;
2811:

Line 2808: l_item_key hr_api_transaction_steps.item_key%type;

2804: l_org_exempt hr_api_transaction_values.varchar2_value%type;
2805: l_last_name_diff hr_api_transaction_values.varchar2_value%TYPE;
2806:
2807: l_item_type hr_api_transaction_steps.item_type%type;
2808: l_item_key hr_api_transaction_steps.item_key%type;
2809: l_activity_id hr_api_transaction_steps.activity_id%type;
2810: l_person_id hr_api_transaction_steps.creator_person_id%type;
2811:
2812: l_transaction_id hr_api_transaction_steps.transaction_id%type;

Line 2809: l_activity_id hr_api_transaction_steps.activity_id%type;

2805: l_last_name_diff hr_api_transaction_values.varchar2_value%TYPE;
2806:
2807: l_item_type hr_api_transaction_steps.item_type%type;
2808: l_item_key hr_api_transaction_steps.item_key%type;
2809: l_activity_id hr_api_transaction_steps.activity_id%type;
2810: l_person_id hr_api_transaction_steps.creator_person_id%type;
2811:
2812: l_transaction_id hr_api_transaction_steps.transaction_id%type;
2813:

Line 2810: l_person_id hr_api_transaction_steps.creator_person_id%type;

2806:
2807: l_item_type hr_api_transaction_steps.item_type%type;
2808: l_item_key hr_api_transaction_steps.item_key%type;
2809: l_activity_id hr_api_transaction_steps.activity_id%type;
2810: l_person_id hr_api_transaction_steps.creator_person_id%type;
2811:
2812: l_transaction_id hr_api_transaction_steps.transaction_id%type;
2813:
2814: lv_trans_type VARCHAR2(50);

Line 2812: l_transaction_id hr_api_transaction_steps.transaction_id%type;

2808: l_item_key hr_api_transaction_steps.item_key%type;
2809: l_activity_id hr_api_transaction_steps.activity_id%type;
2810: l_person_id hr_api_transaction_steps.creator_person_id%type;
2811:
2812: l_transaction_id hr_api_transaction_steps.transaction_id%type;
2813:
2814: lv_trans_type VARCHAR2(50);
2815: lv_source_name VARCHAR2(50);
2816: