Creating Custom Transformations

You can create transforms to transform any of the TCA Registry attributes in the entities used in DQM: Party, Address, Contact, and Contact Point.

Procedure

  1. Create a PL/SQL function for transforming a TCA table column.

    Create the transformation in the APPS schema as a PL/SQL function that conforms to the following standard signature:

    FUNCTION <transformation_function_name>  
        p_original_value         IN     <ATTRIBUTE_DATATYPE>  
        p_language               IN     VARCHAR2,
        p_attribute_name         IN     VARCHAR2,  
        p_entity_name            IN     VARCHAR2,  
        p_context                IN     VARCHAR2 DEFAULT NULL) 
    RETURN VARCHAR2;
  2. Assign your custom PL/SQL function to a transformation. To use the transformation, you must also assign the transformation to at least one attribute. See: Defining Attributes and Transformations.

Related Topics