DBA Data[Home] [Help]

APPS.GMF_PERIODCLOSE_PVT dependencies on INV_LE_TIMEZONE_PUB

Line 157: l_schedule_close_date := inv_le_timezone_pub.get_server_day_time_for_le(

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

Line 938: l_server_close_date := INV_LE_TIMEZONE_PUB.GET_SERVER_DAY_TIME_FOR_LE

934: Log_Msg(C_LOG_FILE,' Skipping closing of this period because of the above error');
935: l_failed := l_failed + 1;
936: GOTO period_close;
937: ELSIF (NOT l_end_date_is_past) THEN
938: l_server_close_date := INV_LE_TIMEZONE_PUB.GET_SERVER_DAY_TIME_FOR_LE
939: (l_close_date + .99999, p_le_id);
940:
941: l_le_server_offset := l_close_date + .99999 - l_server_close_date;
942:

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

1046: 3) period doesnot start in future.
1047: 4) no pending txns in case of final close
1048: 5) no deferred inv logical txns in case of final close.*/
1049:
1050: l_server_close_date := inv_le_timezone_pub.get_server_day_time_for_le(l_close_date,p_le_id);
1051: l_server_close_date := l_server_close_date + 1 - 1/(24*3600);
1052:
1053: /* Log the dates */
1054: Log_Msg(C_LOG_FILE,' Per Sched. Close Date (le):' || TO_CHAR(l_close_date,'yyyy/mm/dd hh24:mi:ss') ||