cancel
Showing results for 
Search instead for 
Did you mean: 

getItemData integration api: unable to read data for custom item

saurav_das
Product and Topic Expert
Product and Topic Expert
0 Kudos
273

Hello,

I am trying to retrieve the data of an custom item via the getItemData api but i am gett the error message

"Not implemented for this item type"

I checked the api documentation, the list of supported item types include custom methods.

Is there any thing that i need to maintain for the custom method so that i can read the data stored by it using the getItemData api.

or is it simply not possible to read custom item data.

Thanks for the help,

Regards,

Saurav

View Entire Topic
saurav_das
Product and Topic Expert
Product and Topic Expert
0 Kudos

Finally the issue is resolved.

The issue was caused as I had used a plain name for the method

ModulePrefs name="example_name"

For some reason StreamWork was unable to identify my method.The issues got resolved after changing the name to include a package.

ModulePrefs name="com.test.example_name"

It is generally a good practice to package the content to maintain modularity and it seems not following that can lead into a lot of trouble as I found out the hard way .