DBA Data[Home] [Help]

APPS.IGIPMSMD dependencies on RA_RULES

Line 49: FROM ra_rules rr

45:
46:
47: CURSOR c_rules ( cp_accounting_rule_id in number) IS
48: SELECT rr.rule_id, rr.type
49: FROM ra_rules rr
50: where rr.rule_id = cp_accounting_rule_id
51: ;
52:
53: CURSOR c_rule_schedules (cp_accounting_rule_id in number) IS

Line 172: FROM ra_rules

168: FUNCTION isVariableDuration ( fp_accounting_rule_id in number)
169: RETURN BOOLEAN IS
170: CURSOR c_exist is
171: SELECT 'x'
172: FROM ra_rules
173: WHERE type = 'ACC_DUR'
174: AND rule_id = fp_accounting_rule_id
175: ;
176: BEGIN