DBA Data[Home] [Help]

APPS.CSC_PROFILE_ENGINE_PKG dependencies on CSC_PLAN_ASSIGNMENT_PKG

Line 173: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, null, null);

169: Evaluate_Checks1_Rule(v_errbuf, v_retcode);
170: p_errbuf := v_errbuf;
171: p_retcode := v_retcode;
172: -- Call Relationship Plan Engine
173: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, null, null);
174: ELSIF (p_party_id IS NOT NULL and p_group_id IS NOT NULL) THEN
175: -- Evaluate for this party Alone, only for Valid checks present in the given group
176: Evaluate_Checks2(p_party_id => p_party_id,
177: p_acct_id => p_acct_id,

Line 186: --Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, null); -- added by mpathani for bug 6928322

182: retcode => v_retcode);
183: party_id_plan_table(1) := p_party_id;
184: account_id_plan_table(1) := p_acct_id;
185: -- Commented the following code for bug 8471528 by spamujul
186: --Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, null); -- added by mpathani for bug 6928322
187: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, p_acct_id); -- Fix bug 8471528 by spamujul
188: ELSIF (p_party_id IS NOT NULL and p_group_id is null ) THEN
189: -- Evaluate for all Valid Checks and For this party ;
190: Evaluate_Checks3(p_party_id,

Line 187: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, p_acct_id); -- Fix bug 8471528 by spamujul

183: party_id_plan_table(1) := p_party_id;
184: account_id_plan_table(1) := p_acct_id;
185: -- Commented the following code for bug 8471528 by spamujul
186: --Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, null); -- added by mpathani for bug 6928322
187: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, p_acct_id); -- Fix bug 8471528 by spamujul
188: ELSIF (p_party_id IS NOT NULL and p_group_id is null ) THEN
189: -- Evaluate for all Valid Checks and For this party ;
190: Evaluate_Checks3(p_party_id,
191: p_acct_id,

Line 200: --Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, null); -- added by mpathani for bug 6928322

196: );
197: party_id_plan_table(1) := p_party_id;
198: account_id_plan_table(1) := p_acct_id;
199: -- Commented the following code for bug 8471528 by spamujul
200: --Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, null); -- added by mpathani for bug 6928322
201: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, p_acct_id); -- Fix bug 8471528 by spamujul
202:
203: ELSIF (p_party_id IS NULL and p_group_id is NOT null ) THEN -- added for 1850508
204: -- Assume Group is given, but party and Account are null , Process for all parties

Line 201: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, p_acct_id); -- Fix bug 8471528 by spamujul

197: party_id_plan_table(1) := p_party_id;
198: account_id_plan_table(1) := p_acct_id;
199: -- Commented the following code for bug 8471528 by spamujul
200: --Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, null); -- added by mpathani for bug 6928322
201: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, p_acct_id); -- Fix bug 8471528 by spamujul
202:
203: ELSIF (p_party_id IS NULL and p_group_id is NOT null ) THEN -- added for 1850508
204: -- Assume Group is given, but party and Account are null , Process for all parties
205: -- This is specifically for cases, where the customers can start 'n' concurrent pgms

Line 229: -- Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, null, null);

225: p_retcode := v_retcode;
226:
227: -- Call Relationship Plan Engine
228: -- Check How to call Plans engine
229: -- Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, null, null);
230: END IF;
231: END IF; /* IF l_custom_hook_enabled = 'N' */
232: Exception
233: when others then