DBA Data[Home] [Help]

APPS.AP_CANCEL_PKG dependencies on AP_UTILITIES_PKG

Line 161: l_open_period := ap_utilities_pkg.get_current_gl_date(l_gl_date_list(i), l_org_id);

157: IF l_gl_date_list.count > 0 THEN
158: FOR i in l_gl_date_list.FIRST..l_gl_date_list.LAST
159: LOOP
160: /* bug 4942638. Added l_org_id in the next two function call */
161: l_open_period := ap_utilities_pkg.get_current_gl_date(l_gl_date_list(i), l_org_id);
162: IF ( l_open_period IS NULL ) THEN
163: ap_utilities_pkg.get_open_gl_date(
164: l_gl_date_list(i),
165: l_open_period,

Line 163: ap_utilities_pkg.get_open_gl_date(

159: LOOP
160: /* bug 4942638. Added l_org_id in the next two function call */
161: l_open_period := ap_utilities_pkg.get_current_gl_date(l_gl_date_list(i), l_org_id);
162: IF ( l_open_period IS NULL ) THEN
163: ap_utilities_pkg.get_open_gl_date(
164: l_gl_date_list(i),
165: l_open_period,
166: l_open_gl_date,
167: l_org_id);

Line 721: l_open_period := AP_UTILITIES_PKG.Get_Current_GL_Date_No_Cache( P_Date => l_accounting_date,

717: l_accounting_date := TRUNC( P_accounting_date );
718: END IF ;
719:
720: IF l_accounting_date IS NOT NULL THEN
721: l_open_period := AP_UTILITIES_PKG.Get_Current_GL_Date_No_Cache( P_Date => l_accounting_date,
722: P_Org_Id => l_org_id );
723:
724: IF (l_open_period is null) THEN
725: AP_UTILITIES_PKG.get_open_gl_date_no_cache( l_accounting_date, l_open_period, l_open_gl_date );

Line 725: AP_UTILITIES_PKG.get_open_gl_date_no_cache( l_accounting_date, l_open_period, l_open_gl_date );

721: l_open_period := AP_UTILITIES_PKG.Get_Current_GL_Date_No_Cache( P_Date => l_accounting_date,
722: P_Org_Id => l_org_id );
723:
724: IF (l_open_period is null) THEN
725: AP_UTILITIES_PKG.get_open_gl_date_no_cache( l_accounting_date, l_open_period, l_open_gl_date );
726: if (l_open_gl_date is null) then
727: p_message_name := 'AP_CANCEL_NO_OPEN_FUT_PERIOD' ;
728: RETURN FALSE ;
729: else