DBA Data[Home] [Help]

APPS.PA_ASSIGNMENTS_PVT dependencies on PA_CC_TRANSFER_PRICE

Line 942: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price', 'Calling PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price' , 3);

938:
939: BEGIN
940:
941: if p_debug_mode = 'Y' THEN
942: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price', 'Calling PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price' , 3);
943: end if;
944:
945: /* Calling get_initial_transfer_price to get the transfer_price_rate and transfer_price_rate */
946:

Line 954: pa_cc_transfer_price.get_initial_transfer_price api

950: This select is done for getting the min item_date from pa_forecast_items table.
951: There can be case that the assignment start date is a holiday (Exception in the calendar)
952: and hence no fi will be created for the assignment start date. So we need to get the first
953: working date which is done in the select below. If the min(item_date) is null, we dont call the
954: pa_cc_transfer_price.get_initial_transfer_price api
955: */
956:
957: select min(item_date) into l_start_date
958: from pa_forecast_items

Line 983: PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price

979: ' debug_mod='||p_debug_mode
980: ,x_log_level => li_message_level);
981: END IF;
982:
983: PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price
984: ( p_assignment_id => p_assignment_id
985: ,p_start_date => l_start_date
986: ,p_debug_mode => p_debug_mode
987: ,x_transfer_price_rate => lx_transfer_price_rate

Line 995: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price',' Out of PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price', 3);

991: ,x_msg_count => x_msg_count
992: );
993:
994: if p_debug_mode = 'Y' THEN
995: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price',' Out of PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price', 3);
996: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price','status is :'||x_return_status||' : x_msg_count:'||x_msg_count, 3);
997: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price','Transfer Price Rate:'||lx_transfer_price_rate, 3);
998: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price','Transfer Price Rate curr:'||lx_transfer_pr_rate_curr, 3);
999: end if;