DBA Data[Home] [Help]

APPS.CSP_PROD_TASK_HIST_RULE dependencies on CSP_PROD_TASK_HIST_RULE

Line 1: PACKAGE BODY CSP_PROD_TASK_HIST_RULE as

1: PACKAGE BODY CSP_PROD_TASK_HIST_RULE as
2: /* $Header: cspgphrb.pls 115.2 2002/11/26 07:54:12 hhaugeru ship $ */
3: -- Start of Comments
4: -- Package name : CSP_PROD_TASK_HIST_RULE
5: -- Purpose : This package includes the functions that decide whether to use the history

Line 4: -- Package name : CSP_PROD_TASK_HIST_RULE

1: PACKAGE BODY CSP_PROD_TASK_HIST_RULE as
2: /* $Header: cspgphrb.pls 115.2 2002/11/26 07:54:12 hhaugeru ship $ */
3: -- Start of Comments
4: -- Package name : CSP_PROD_TASK_HIST_RULE
5: -- Purpose : This package includes the functions that decide whether to use the history
6: -- of Product-Task-Parts details based on value defined in CSP_PROD_TASK_HIST_RULE profile.
7: -- History : 03-Aug-2001, Arul Joseph.
8: -- NOTE :

Line 6: -- of Product-Task-Parts details based on value defined in CSP_PROD_TASK_HIST_RULE profile.

2: /* $Header: cspgphrb.pls 115.2 2002/11/26 07:54:12 hhaugeru ship $ */
3: -- Start of Comments
4: -- Package name : CSP_PROD_TASK_HIST_RULE
5: -- Purpose : This package includes the functions that decide whether to use the history
6: -- of Product-Task-Parts details based on value defined in CSP_PROD_TASK_HIST_RULE profile.
7: -- History : 03-Aug-2001, Arul Joseph.
8: -- NOTE :
9: -- End of Comments
10:

Line 22: Fnd_profile.get('CSP_PROD_TASK_HIST_RULE',L_VALUE);

18: ) return number IS
19: l_value Varchar2(100);
20: l_quantity Number;
21: Begin
22: Fnd_profile.get('CSP_PROD_TASK_HIST_RULE',L_VALUE);
23: If p_manual_quantity is not null then
24: l_quantity := p_manual_quantity;
25: Else
26: if l_value > p_prod_task_times_used then

Line 44: Fnd_profile.get('CSP_PROD_TASK_HIST_RULE',L_VALUE);

40: return number IS
41: l_value Varchar2(100);
42: l_percentage number;
43: Begin
44: Fnd_profile.get('CSP_PROD_TASK_HIST_RULE',L_VALUE);
45: If p_manual_percentage is not null then
46: l_percentage := p_manual_percentage;
47: Else
48: if l_value > p_prod_task_times_used then

Line 56: END CSP_PROD_TASK_HIST_RULE;

52: end if;
53: end if;
54: return l_percentage;
55: End;
56: END CSP_PROD_TASK_HIST_RULE;