Search Results is_copy_attribute




Overview

APPS.AMS_CPYUTILITY_PVT_W is the public wrapper package that exposes the core copy-utility logic implemented in AMS_CPYUTILITY_PVT within Oracle E-Business Suite Release 12.1.1 and 12.2.2. The package is owned by the APPS schema and is classified as an OTHER API within the Oracle ETRM repository, meaning it is not a formally graduated or externally guaranteed interface, but is nonetheless a stable internal utility that supports the Marketing (AMS) application family. Its central purpose is to provide the plumbing required to duplicate attribute sets, column definitions, and log records when records are copied from one marketing entity to another — for example, when a campaign, event, or one-to-one promotion is duplicated along with its dependent attributes.

The "_W" suffix denotes a PL/SQL wrapper generated for cross-language or cross-tier invocation, typically via the Rosetta (JTF) table-conversion layer. This wrapper marshals PL/SQL collection types into flat JTF_VARCHAR2 and JTF_NUMBER tables so that the underlying private utility package can be called from Java, OAF, or other non-PL/SQL consumers while still passing structured metadata about which attributes should be copied.

Key Procedures and Functions

Tables Accessed

The only table documented as referenced through APPS synonyms is PLITBLM. This is a standard JTF/PL/SQL interface table used by the Rosetta interoperability layer to stage array-bound calls between the database and external callers. The wrapper does not itself manipulate business data; the underlying AMS_CPYUTILITY_PVT package performs the actual DML against marketing attribute tables, and PLITBLM acts as the transport mechanism for the inbound and outbound collections described above.

Usage Notes

AMS_CPYUTILITY_PVT_W is referenced by ten other packages in the ETRM inventory, confirming that it is an internal shared utility rather than a stand-alone entry point. It is typically invoked indirectly — from Marketing forms, from concurrent programs that duplicate campaigns or events, or from custom code that needs to reuse the copy-attribute filtering logic. When customizing, call IS_COPY_ATTRIBUTE to test whether an attribute is eligible for copying, and use GET_COLUMN_VALUE to retrieve its current value from the marshalled arrays. Because the package is classified OTHER and the header dates to 2003, Oracle does not guarantee its signature across releases; custom code should bind to it defensively and avoid direct dependency where an equivalent public marketing API exists.