DBA Data[Home] [Help]

PACKAGE: APPS.FND_FORM_CUSTOM_RULES_PKG

Source


1 package FND_FORM_CUSTOM_RULES_PKG AUTHID CURRENT_USER as
2 /* $Header: AFFRRULS.pls 120.2.12010000.2 2009/05/08 17:15:51 dbowles ship $ */
3 
4 /*
5 ** DELETE_SET - Delete a set of forms personalizations
6 **
7 ** Deletes a set of forms personalization rules in preparation for
8 ** for upload of replacement data.  Rule set is specified by two filters:
9 **
10 **   - X_RULE_KEY
11 **       <key> - limits deletes to rules tagged with specified rule key
12 **       NULL  - limits deletes to untagged rules (no rule key)
13 **   - X_RULE_TYPE
14 **       'A' - limits deletes to specified X_FUNCTION_NAME function
15 **       'F' - limits deletes to specified X_FORM_NAME form
16 **
17 ** Notes:
18 **   A Forms Personalization can belong to the customer or be shipped from
19 **   Oracle.  All personalizations shipped from Oracle must be tagged
20 **   with a Rule Key.  Customers should not use Rule Keys, to avoid
21 **   conflicting with Oracle delivered rules.  See the loader config
22 **   file ($FND_TOP/pach/115/import/affrmcus.lct) for a detailed
23 **   explanation of loader procedures.
24 */
25 PROCEDURE  DELETE_SET(
26                X_RULE_KEY        IN VARCHAR2,
27                X_RULE_TYPE       IN VARCHAR2,
28                X_FUNCTION_NAME   IN VARCHAR2,
29 	             X_FORM_NAME       IN VARCHAR2);
30 
31 END FND_FORM_CUSTOM_RULES_PKG;