- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 12:35 AM
Hi!
I have a custom form called u_ctable1 which contains 3 fields: field_1, field_2, field_3. All fields are string fields. field_3 is a function string field that concatenates field_1 and field_2.
I have another custom form called u_ctable2 that has a reference field , referencing u_ctable1. It is correctly displaying the field_1 value. What I want to do is to display 'field_3'.
How to do this?
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 05:13 AM
I have fixed this issue. A function field cannot be used as a display field.
I then created a BR that concatenates both fields and saves it to a new string field. I also set this new string field as the display value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 12:42 AM
change the display value of that table to field 3 and it should be displayed in any field referencing it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 01:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 01:16 AM
Ah ok i see you said it's a function string field, i've not worked with function fields much, i guess they calculate the value whenever a form loads so you can't display them.
Is there any reason you're using a function field rather than just populating the field with a before update business rule? if it needs to be done live on the form you could do it with an onChange client script. I don't really see the necessity for a function field here...

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2019 12:44 AM
Hi,
Make field3 as display value of u_ctable1. Then in ctable2, you will see field 3 value instead of field 1.