DBA Data[Home] [Help]

APPS.FUN_SEQ_BATCH dependencies on FND_MESSAGE

Line 542: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');

538: END IF;
539: --
540: -- Raise Exception
541: --
542: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');
543: fnd_message.set_token ('SEQ_CONTEXT_NAME',
544: fun_seq.get_seq_context_name(null));
545: app_exception.raise_exception;
546: WHEN OTHERS THEN

Line 543: fnd_message.set_token ('SEQ_CONTEXT_NAME',

539: --
540: -- Raise Exception
541: --
542: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');
543: fnd_message.set_token ('SEQ_CONTEXT_NAME',
544: fun_seq.get_seq_context_name(null));
545: app_exception.raise_exception;
546: WHEN OTHERS THEN
547: --

Line 712: -- may use fnd_message.raise_error (automatically log the message)

708: -- SEQ_VER_FOUND
709: -- [Critical Error]
710: -- ENFORCE_NO_ASSIGNMENT
711: IF l_error_code_tbl(i) = 'ENFORCED_NO_ASSIGNMENT' THEN
712: -- may use fnd_message.raise_error (automatically log the message)
713: RAISE no_assigned_seq_info;
714: END IF;
715: END LOOP;
716: --

Line 755: fnd_message.get); -- Retrive mesg from the stack

751: module
752: => 'fun.plsql.fun_seq_batch.populate_seq_info.exception',
753: message
754: => 'EXCEPTION: no_assigned_seq_info' || ', ' ||
755: fnd_message.get); -- Retrive mesg from the stack
756: END IF;
757: --
758: -- Set the shorter version of the error message on the stack
759: --

Line 760: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_SHORT');

756: END IF;
757: --
758: -- Set the shorter version of the error message on the stack
759: --
760: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_SHORT');
761: --
762: -- Raise Exception
763: --
764: app_exception.raise_exception;

Line 1481: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');

1477: END IF;
1478: --
1479: -- Raise Exception
1480: --
1481: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');
1482: fnd_message.set_token ('SEQ_CONTEXT_NAME',
1483: fun_seq.get_seq_context_name(null));
1484: app_exception.raise_exception;
1485: WHEN OTHERS THEN

Line 1482: fnd_message.set_token ('SEQ_CONTEXT_NAME',

1478: --
1479: -- Raise Exception
1480: --
1481: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');
1482: fnd_message.set_token ('SEQ_CONTEXT_NAME',
1483: fun_seq.get_seq_context_name(null));
1484: app_exception.raise_exception;
1485: WHEN OTHERS THEN
1486: --

Line 1840: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');

1836:
1837: --
1838: -- Raise Exception
1839: --
1840: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');
1841: fnd_message.set_token ('SEQ_CONTEXT_NAME',l_context_name);
1842:
1843: app_exception.raise_exception;
1844:

Line 1841: fnd_message.set_token ('SEQ_CONTEXT_NAME',l_context_name);

1837: --
1838: -- Raise Exception
1839: --
1840: fnd_message.set_name ('FUN','FUN_SEQ_NO_ACTIVE_ASSGN_FOUND');
1841: fnd_message.set_token ('SEQ_CONTEXT_NAME',l_context_name);
1842:
1843: app_exception.raise_exception;
1844:
1845: WHEN invalid_sort_option THEN