DBA Data[Home] [Help]

APPS.CSTPSCHK dependencies on STANDARD

Line 7: -- standard cost distribution process. This is

3:
4: -- FUNCTION
5: -- std_cost_dist_hook Cover routine to allow users to customize.
6: -- They will be able to circumvent the
7: -- standard cost distribution process. This is
8: -- called by inltcp.ppc.
9: --
10: --
11: -- RETURN VALUES

Line 50: -- standard cost update process. This is

46:
47: -- FUNCTION
48: -- std_cost_update_hook Cover routine to allow users to customize.
49: -- They will be able to circumvent the
50: -- standard cost update process. This is
51: -- called by cmlicu.ppc.
52: --
53: --
54: -- RETURN VALUES

Line 247: -- std cost update process for standard lot based jobs

243:
244: -- FUNCTION
245: -- std_get_update_scrap_acct_id Routine to allow users to select the account
246: -- to be used for posting scrap adjustments in the
247: -- std cost update process for standard lot based jobs
248: --
249: -- INPUT PARAMETERS
250: -- I_ORG_ID
251: -- I_UPDATE_ID

Line 264: -- Error messages will not be printed in the standard cost update concurrent log file

260: -- NOTE THE USE OF RESTRICT_REFERERENCES PRAGMA in the function declaration in the pkg spec.
261: -- This pragma is needed because this function is being called directly in a SQL statement.
262: -- Hence make sure you do not use any DML statements in this function and in any other
263: -- procedure or function called by this function
264: -- Error messages will not be printed in the standard cost update concurrent log file
265: -- since out variables are not permitted in this function. So make sure you return valid
266: -- account numbers when you use this function.
267:
268: function std_get_update_scrap_acct_id(

Line 285: non-standard. If so, return the WIP standard cost adjustment account. */

281:
282: l_err_msg := '';
283:
284: /* Bug #3447776. Check to see if the organization is ESA disabled or if the job is
285: non-standard. If so, return the WIP standard cost adjustment account. */
286: l_est_scrap_acct_flag := WSMPUTIL.WSM_ESA_ENABLED(i_wip_entity_id, l_err_num, l_err_msg);
287:
288: IF l_est_scrap_acct_flag = 1 THEN
289: return -1;