DBA Data[Home] [Help]

APPS.QA_SKIPLOT_EVAL_ENGINE dependencies on FND_API

Line 18: if qa_skiplot_utility.insp_rule_finished(p_plan_state) = fnd_api.g_true then

14:
15: --
16: -- rule is finished
17: --
18: if qa_skiplot_utility.insp_rule_finished(p_plan_state) = fnd_api.g_true then
19: --
20: -- if the next rule does not have freq_numerator as 0, then inspect
21: -- otherwise skip
22: --

Line 23: if qa_skiplot_utility.inspect_zero(p_plan_state) = fnd_api.g_false then

19: --
20: -- if the next rule does not have freq_numerator as 0, then inspect
21: -- otherwise skip
22: --
23: if qa_skiplot_utility.inspect_zero(p_plan_state) = fnd_api.g_false then
24: return fnd_api.g_true;
25: else
26: return fnd_api.g_false;
27: end if;

Line 24: return fnd_api.g_true;

20: -- if the next rule does not have freq_numerator as 0, then inspect
21: -- otherwise skip
22: --
23: if qa_skiplot_utility.inspect_zero(p_plan_state) = fnd_api.g_false then
24: return fnd_api.g_true;
25: else
26: return fnd_api.g_false;
27: end if;
28: --

Line 26: return fnd_api.g_false;

22: --
23: if qa_skiplot_utility.inspect_zero(p_plan_state) = fnd_api.g_false then
24: return fnd_api.g_true;
25: else
26: return fnd_api.g_false;
27: end if;
28: --
29: -- rule is not finished, but round is finished
30: --

Line 31: elsif qa_skiplot_utility.insp_round_finished(p_plan_state) = fnd_api.g_true then

27: end if;
28: --
29: -- rule is not finished, but round is finished
30: --
31: elsif qa_skiplot_utility.insp_round_finished(p_plan_state) = fnd_api.g_true then
32: --
33: -- if more rounds and the current frequency numerator is not 0 then inspect
34: -- otherwise skip
35: --

Line 36: if qa_skiplot_utility.more_rounds(p_plan_state) = fnd_api.g_true and

32: --
33: -- if more rounds and the current frequency numerator is not 0 then inspect
34: -- otherwise skip
35: --
36: if qa_skiplot_utility.more_rounds(p_plan_state) = fnd_api.g_true and
37: p_plan_state.current_freq_num > 0 then
38: return fnd_api.g_true;
39: else
40: return fnd_api.g_false;

Line 38: return fnd_api.g_true;

34: -- otherwise skip
35: --
36: if qa_skiplot_utility.more_rounds(p_plan_state) = fnd_api.g_true and
37: p_plan_state.current_freq_num > 0 then
38: return fnd_api.g_true;
39: else
40: return fnd_api.g_false;
41: end if;
42:

Line 40: return fnd_api.g_false;

36: if qa_skiplot_utility.more_rounds(p_plan_state) = fnd_api.g_true and
37: p_plan_state.current_freq_num > 0 then
38: return fnd_api.g_true;
39: else
40: return fnd_api.g_false;
41: end if;
42:
43: --
44: -- round not finished

Line 48: if qa_skiplot_utility.enough_lot_accepted(p_plan_state) = fnd_api.g_false then

44: -- round not finished
45: --
46: else
47: -- if not enough lot accepted, then inspect, otherwise skip
48: if qa_skiplot_utility.enough_lot_accepted(p_plan_state) = fnd_api.g_false then
49: return fnd_api.g_true;
50: else
51: return fnd_api.g_false;
52: end if;

Line 49: return fnd_api.g_true;

45: --
46: else
47: -- if not enough lot accepted, then inspect, otherwise skip
48: if qa_skiplot_utility.enough_lot_accepted(p_plan_state) = fnd_api.g_false then
49: return fnd_api.g_true;
50: else
51: return fnd_api.g_false;
52: end if;
53:

Line 51: return fnd_api.g_false;

47: -- if not enough lot accepted, then inspect, otherwise skip
48: if qa_skiplot_utility.enough_lot_accepted(p_plan_state) = fnd_api.g_false then
49: return fnd_api.g_true;
50: else
51: return fnd_api.g_false;
52: end if;
53:
54: end if;
55:

Line 478: p_plan_state =>plan_states(pID)) = fnd_api.g_false THEN

474: elsif
475: qa_skiplot_utility.date_reasonable (
476: p_receipt_date => sysdate,
477: p_check_mode => qa_skiplot_utility.ADJACENT_DATE_CHECK,
478: p_plan_state =>plan_states(pID)) = fnd_api.g_false THEN
479: --
480: -- bug 6344791
481: -- Included a parameter p_criteria_id so as
482: -- to uniquely identify the skiplot plans

Line 588: elsif insp_required(plan_states(pID)) = fnd_api.g_true then

584: p_applicablePlans(pID).plan_id := pID;
585: END IF;
586: END IF;
587:
588: elsif insp_required(plan_states(pID)) = fnd_api.g_true then
589: --
590: -- plan must be inspected
591: --
592: p_applicablePlans(pID).plan_id := pID;

Line 598: if qa_skiplot_utility.insp_rule_finished(plan_states(pID)) = fnd_api.g_true and

594: --
595: -- if rule_start_lot_id is null, update it with new id
596: -- otherwise leave it as it is
597: --
598: if qa_skiplot_utility.insp_rule_finished(plan_states(pID)) = fnd_api.g_true and
599: (plan_states(pID).last_receipt_date is null or
600: plan_states(pID).rule_start_date is null or
601: plan_states(pID).day_span is null or
602: trunc(plan_states(pID).last_receipt_date) - trunc(plan_states(pID).rule_start_date) <=