DBA Data[Home] [Help]

APPS.PO_CORE_S3 dependencies on FINANCIALS_SYSTEM_PARAMETERS

Line 92: -- Get org_sob_id from financials_system_parameters

88:
89: EXCEPTION
90: WHEN NO_DATA_FOUND THEN
91:
92: -- Get org_sob_id from financials_system_parameters
93: -- We need to handle this exception because the Define
94: -- Purchasing Options form calls this procedure, and prior
95: -- to setup it will not have a record.
96:

Line 131: FROM financials_system_parameters fsp,

127: SELECT fsp.set_of_books_id,
128: gsb.short_name
129: INTO x_org_sob_id,
130: x_org_sob_name
131: FROM financials_system_parameters fsp,
132: gl_sets_of_books gsb
133: WHERE fsp.set_of_books_id = gsb.set_of_books_id;
134:
135: end if;