Question Kishan Ravindran · Jul 20, 2017

Problem with setting a property

Hi!

While i am trying to write a data i am getting a error as "<PROPERTY DOES NOT EXIST>zFile+15^User.zKQRest.1 *value,%Collection.ListOfObj" but there are values stored in it. How can i break it write it separately.

Comments

Rubens Silva · Jul 20, 2017

Can you post the code that's generating this error?
I noticed that the error is coming from a method called File inside your class User.zKQRest.

0
Sean Connelly · Jul 21, 2017

Hi Kishan,

Can you provide the source code at zFile+15^User.zKQRest.1

If you are not sure how to get this, open User.zKQRest.1 and then press Ctrl+Shift+V , this will open up the compiled code, now press Ctrl+G and paste in zFile+15, the cursor will now be on that line.

Could you also provide the source code for the property...

Sean

0
Otto Medin · Aug 7, 2017

Hi Kishan,

The error message indicates that you're trying to access a property called 'value' in a collection of objects (%Collection.ListOfObj), but there is no such thing. My guess is that you're trying to access a property of one of the objects in the collection, in which case you need to use the 'GetAt' method of the collection object to specify which one you're after.

Here's more information on how to handle collections of objects.

Otto

0
Sergei Shutov · Aug 8, 2017

Looks like you are trying to get your property from Collection instead of object itself. You likely forgot to call .GetAt(i) method before referencing .value.

0
Robert Cemper · Aug 14, 2017

Pls. don't forget to mark your question as "answered" on Developer Community,
please click the checkmark alongside the answer you (as author of the question) accept

0