RecordData 25.1 error

Certified Lead Developer

Hello,

We have moved from version 24.4 to the new 25.1 and we have encountered some errors in interfaces.

The gridFields that were in version 24.4 had a RecordData as data collection in which they were configured with some Fields with relationships

a!recordData(

recordType: recordType!example,

fields:{

recordType!example.example

...

})

Now in version 25.1 the interface is broken because the action records have lost their ID

To fix it, we added the base field recordtype!exxample.id to the field so that it obtains the data since it gave an error and the action link did not appear.

a!recordData(

recordType: recordType!example,

fields:{

recordType!example.id  <-----

recordType!example.example

...

})

Is there any explanation for this?

Thank you

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    Hi Jesus, 

    I believe we have similar issues with 25.1 as well. Some fields in a collapsed section are not loaded by default anymore. With 24.3 the data was loaded using a record view with rv!record. Now we have to reload all data with 25.1 to get the data of hidden fields loaded or to get other data loaded which are used in subsequent interfaces.The behaviour changed and I assume the performance features in 25.1 are not working correctly.

    We have to rebuild some interfaces / records. Don't have any other solution yet.

    Best regards

    Yusuf

Reply
  • 0
    Certified Senior Developer

    Hi Jesus, 

    I believe we have similar issues with 25.1 as well. Some fields in a collapsed section are not loaded by default anymore. With 24.3 the data was loaded using a record view with rv!record. Now we have to reload all data with 25.1 to get the data of hidden fields loaded or to get other data loaded which are used in subsequent interfaces.The behaviour changed and I assume the performance features in 25.1 are not working correctly.

    We have to rebuild some interfaces / records. Don't have any other solution yet.

    Best regards

    Yusuf

Children