DBA Data[Home] [Help]

APPS.FND_SET dependencies on FND_SET

Line 1: PACKAGE BODY fnd_set AS

1: PACKAGE BODY fnd_set AS
2: /* $Header: AFRSSETB.pls 120.6 2006/04/11 05:17:10 ktanneru ship $ */
3:
4:
5: /* START_PUBLIC */

Line 543: -- fnd_set.incompatibility(request_set=>'X',

539: -- Register an incompatibility for a set or stage.
540: --
541: -- Examples:
542: -- 1. Set X is incompatible with program Y
543: -- fnd_set.incompatibility(request_set=>'X',
544: -- application=>'APPX',
545: -- inc_prog=>'Y',
546: -- inc_prog_application=>'APPY');
547: --

Line 549: -- fnd_set.incompatibility(request_set=>'X',

545: -- inc_prog=>'Y',
546: -- inc_prog_application=>'APPY');
547: --
548: -- 2. Set X is incompatible withset Y.
549: -- fnd_set.incompatibility(request_set=>'X',
550: -- application=>'APPX',
551: -- inc_request_set=>'Y',
552: -- inc_set_application=>'APPY');
553: --

Line 555: -- fnd_set.incompatibility(request_set=>'X',

551: -- inc_request_set=>'Y',
552: -- inc_set_application=>'APPY');
553: --
554: -- 3. Set X is incompatible with stage Y of set Y.
555: -- fnd_set.incompatibility(request_set=>'X',
556: -- application=>'APPX',
557: -- inc_request_set=>'Y',
558: -- inc_set_application=>'APPY',
559: -- inc_stage=>'Y');

Line 562: -- fnd_set.incompatibility(request_set=>'X',

558: -- inc_set_application=>'APPY',
559: -- inc_stage=>'Y');
560: --
561: -- 4. Stage X of set X is incompatable with program Y.
562: -- fnd_set.incompatibility(request_set=>'X',
563: -- application=>'APPX',
564: -- stage=>'X',
565: -- inc_prog=>'Y',
566: -- inc_prog_application=>'APPY');

Line 1901: -- See examples from fnd_set.incompatibility() for argument usage.

1897: -- inc_request_set - Sort name of the incompatible reuqest set.
1898: -- inc_set_application - Application short name of the incompatible set.
1899: -- inc_stage - Stage short name to the incompatible stage.
1900: --
1901: -- See examples from fnd_set.incompatibility() for argument usage.
1902: --
1903: PROCEDURE delete_incompatibility(request_set IN VARCHAR2,
1904: application IN VARCHAR2,
1905: stage IN VARCHAR2 DEFAULT NULL,

Line 2021: -- See examples from fnd_set.incompatibility() for argument usage.

2017: -- inc_request_set - Sort name of the incompatible reuqest set.
2018: -- inc_set_application - Application short name of the incompatible set.
2019: -- inc_stage - Stageshort name to the incompatible stage.
2020: --
2021: -- See examples from fnd_set.incompatibility() for argument usage.
2022: --
2023: FUNCTION incompatibility_exists(request_set IN VARCHAR2,
2024: application IN VARCHAR2,
2025: stage IN VARCHAR2 DEFAULT NULL,

Line 3068: END fnd_set;

3064: end if;
3065: end if;
3066: return true;
3067: END;
3068: END fnd_set;
3069: /* end package */