Avoiding Redundant Variable Duplication in Custom Form Record Producers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2024 10:49 AM
I have a custom form that includes the fields *Category* and *Description*.
I've created a record producer associated with this form, which captures *Category*, *Description*, and several other details.
To ensure that the submitted variable values are visible in the backend, I added a variable formatter to the table.
However, I'm encountering a problem: because the variable names *Category* and *Description* match existing fields, their values are duplicated in the backend. They get mapped to both the fields and the variables, resulting in redundancy.
I want to capture these values from the record producer but would like to avoid having them as variables in the backend entirely. Is this possible? I'm looking for a solution that avoids these redundant variables instead of just hiding them. Thank you.