DBA Data[Home] [Help]

APPS.GMF_PERIODCLOSE_PVT dependencies on INV_LE_TIMEZONE_PUB

Line 162: l_schedule_close_date := inv_le_timezone_pub.get_server_day_time_for_le(

158: WHERE organization_id = p_organization_id
159: AND org_information_context = 'Accounting Information';
160:
161: /* Get the server date for schedule close date */
162: l_schedule_close_date := inv_le_timezone_pub.get_server_day_time_for_le(
163: p_le_date => l_le_schedule_close_date,
164: p_le_id => l_legal_entity_id );
165:
166: l_schedule_close_date := l_schedule_close_date + 1 - 1/(24*3600);

Line 990: l_server_close_date := INV_LE_TIMEZONE_PUB.GET_SERVER_DAY_TIME_FOR_LE

986: Log_Msg(C_LOG_FILE,' Skipping closing of this period because of the above error');
987: l_failed := l_failed + 1;
988: GOTO period_close;
989: ELSIF (NOT l_end_date_is_past) THEN
990: l_server_close_date := INV_LE_TIMEZONE_PUB.GET_SERVER_DAY_TIME_FOR_LE
991: (l_close_date + .99999, p_le_id);
992:
993: l_le_server_offset := l_close_date + .99999 - l_server_close_date;
994:

Line 1107: l_server_close_date := inv_le_timezone_pub.get_server_day_time_for_le(l_close_date,p_le_id);

1103: 3) period doesnot start in future.
1104: 4) no pending txns in case of final close
1105: 5) no deferred inv logical txns in case of final close.*/
1106:
1107: l_server_close_date := inv_le_timezone_pub.get_server_day_time_for_le(l_close_date,p_le_id);
1108: l_server_close_date := l_server_close_date + 1 - 1/(24*3600);
1109:
1110: /* Log the dates */
1111: Log_Msg(C_LOG_FILE,' Per Sched. Close Date (le):' || TO_CHAR(l_close_date,'yyyy/mm/dd hh24:mi:ss') ||