DBA Data[Home] [Help]

APPS.FND_MENU_ENTRIES_C_UPDTRG dependencies on FND_FUNCTION

Line 23: FND_FUNCTION.QUEUE_MARK(:NEW.MENU_ID);

19: end if;
20:
21: /* Mark the new menu id */
22: if (:NEW.MENU_ID is not NULL) then
23: FND_FUNCTION.QUEUE_MARK(:NEW.MENU_ID);
24: last_mark := :NEW.MENU_ID;
25: end if;
26:
27: /* Mark the old menu id */

Line 31: FND_FUNCTION.QUEUE_MARK(:OLD.MENU_ID);

27: /* Mark the old menu id */
28: if (:OLD.MENU_ID is not NULL) then
29: /* Dont mark the same menu id twice */
30: if (last_mark is NULL) or (last_mark <> :OLD.MENU_ID) then
31: FND_FUNCTION.QUEUE_MARK(:OLD.MENU_ID);
32: end if;
33: end if;
34: end;
35: