DBA Data[Home] [Help]

APPS.PA_ASSIGNMENTS_PVT dependencies on PA_CC_TRANSFER_PRICE

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

930:
931: BEGIN
932:
933: if p_debug_mode = 'Y' THEN
934: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price', 'Calling PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price' , 3);
935: end if;
936:
937: /* Calling get_initial_transfer_price to get the transfer_price_rate and transfer_price_rate */
938:

Line 946: pa_cc_transfer_price.get_initial_transfer_price api

942: This select is done for getting the min item_date from pa_forecast_items table.
943: There can be case that the assignment start date is a holiday (Exception in the calendar)
944: and hence no fi will be created for the assignment start date. So we need to get the first
945: working date which is done in the select below. If the min(item_date) is null, we dont call the
946: pa_cc_transfer_price.get_initial_transfer_price api
947: */
948:
949: select min(item_date) into l_start_date
950: from pa_forecast_items

Line 975: PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price

971: ' debug_mod='||p_debug_mode
972: ,x_log_level => li_message_level);
973: END IF;
974:
975: PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price
976: ( p_assignment_id => p_assignment_id
977: ,p_start_date => l_start_date
978: ,p_debug_mode => p_debug_mode
979: ,x_transfer_price_rate => lx_transfer_price_rate

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

983: ,x_msg_count => x_msg_count
984: );
985:
986: if p_debug_mode = 'Y' THEN
987: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price',' Out of PA_CC_TRANSFER_PRICE.Get_Initial_Transfer_Price', 3);
988: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price','status is :'||x_return_status||' : x_msg_count:'||x_msg_count, 3);
989: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price','Transfer Price Rate:'||lx_transfer_price_rate, 3);
990: pa_debug.write('PA_ASSIGNMENT_PVT.Calc_Init_Transfer_Price','Transfer Price Rate curr:'||lx_transfer_pr_rate_curr, 3);
991: end if;