DBA Data[Home] [Help]

APPS.PO_POXPRIPR_XMLP_PKG dependencies on FINANCIALS_SYSTEM_PARAMETERS

Line 113: financials_system_parameters fps

109: if (p_period_from is NOT NULL) then
110: select start_date
111: into P_period_start_date
112: from gl_period_statuses gps,
113: financials_system_parameters fps
114: where period_name = P_period_from and
115: gps.set_of_books_id=fps.set_of_books_id and
116: application_id=201;
117: end if;

Line 121: financials_system_parameters fps

117: end if;
118: if (p_period_to is NOT NULL) then
119: select end_date
120: into P_period_end_date from gl_period_statuses gps,
121: financials_system_parameters fps
122: where period_name = P_period_to and
123: gps.set_of_books_id=fps.set_of_books_id and
124: application_id=201;
125: end if;