DBA Data[Home] [Help]

APPS.CSC_PROFILE_ENGINE_PKG dependencies on CSC_PLAN_ASSIGNMENT_PKG

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

162: p_errbuf := v_errbuf;
163: p_retcode := v_retcode;
164:
165: -- Call Relationship Plan Engine
166: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, null, null);
167:
168: ELSIF (p_party_id IS NOT NULL and p_group_id IS NOT NULL) THEN
169: -- Evaluate for this party Alone, only for Valid checks present in the given group
170:

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

176: retcode => v_retcode);
177:
178: party_id_plan_table(1) := p_party_id;
179: account_id_plan_table(1) := p_acct_id;
180: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, null); -- added by mpathani for bug 6928322
181:
182: ELSIF (p_party_id IS NOT NULL and p_group_id is null ) THEN
183: -- Evaluate for all Valid Checks and For this party ;
184: Evaluate_Checks3(p_party_id, p_acct_id,

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

185: p_group_id, v_errbuf, v_retcode);
186:
187: party_id_plan_table(1) := p_party_id;
188: account_id_plan_table(1) := p_acct_id;
189: Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, p_party_id, null); -- added by mpathani for bug 6928322
190:
191: ELSIF (p_party_id IS NULL and p_group_id is NOT null ) THEN -- Added for 1850508
192: -- Assume Group is given, but party and Account are null , Process for all parties
193: -- This is specifically for cases, where the customers can start 'n' concurrent pgms

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

211: p_retcode := v_retcode;
212:
213: -- Call Relationship Plan Engine
214: -- Check How to call Plans engine
215: -- Csc_Plan_Assignment_Pkg.Run_Plan_Engine (v_errbuf, v_retcode, null, null, null, null);
216:
217: END IF;
218: END IF; /* IF l_custom_hook_enabled = 'N' */
219: