Any recent changes to the app? It would help if you could show us, with an image, where you are seeing the problem. Short of that, see the below to start.
First thing is to check that Add capability is allowed/enabled.
Check the data table for the CHILD rows to make sure it allows adds.
If the CHILD rows are based on a Slice, make sure the Slice allows adds.
Make sure that the Add function for the CHILD table doesn’t have any criteria that would have disabled the add function.
If you have played around with any of the “Localize” parameters to update button names, make you didn’t do something to prevent the “New” button from showing - e.g. set the test for the button label to blank
so as youcan see, theres a parent table (APROBAR) and a child table (KARDEX TEMP). each one had its slices. In the form view I created for VISTA PROCESO INICIAL (the slice based on parent) its added the virtual column that refers LINEAS (the slice from the child table). But as you have noticed, it didnt show.
Also what you are showing is the Slice definition with no Filter condition - meaning you basically have two sources with the same set of rows. This is ok but it does mean you could be looking at a different view than you expect.
At the bottom of the emulator in the Editor, there is a “View” property. It will show the name of the displayed view. Make sure it matches what you are expecting. If not, tap the view name to go top that view and make the necessary adjustments.
If that all looks good, your desired column appears, then something in the column definition or implementation is preventing the column from showing. Please show us the column definition
Here’s the column definition. The refrow function calls the name of the slice ‘LINEAS’ and the key column that reference parent and child tables. there is no data validity.
That column is based on another slice named LINEAS. Based on your REF_ROWS() expression, the Slice must have the column “Documento” in it and it must be a Ref type column back to “this” table - “Aprobar”.
Ran into this same problem. Checked all the things above. It was working fine until it didn’t.
Edit: Specifically for me, the nested form is unavailable. I see the Display Name of the child table, but it’s just blank underneath with no “New” button.
I found the solution to my problem.
In order to prevent child rows from being modified when the parent row had a status of 'approved, I added a “Only if this condition is true” behavior expression that was conditional on the parent row for system actions “Add”, “Delete” and “Edit”.
That is fine for “Delete” and “Edit” once the lines were created, but was not for the “Add” action because I guess the expression didn’t make sense without any existing line…
So I deleted the condition and the ADD button for children rows is back… (and I added some Editable_if conditions on the child row for the ‘approved’ status)