Hello.
Can anyone help me.
I have a custom object in my salesforce like screenshort
I want to display and edit CareerHistory--c data from my outsystems UI,so I create structure in salesforce connector and referenced my module.
The structure look like
In this structure OwnerId and LastModifedById is reference attribute from User structure.
When I publish my service studio the following error is occur.
if anyone understand about this issue.Please help me.
Thanks.
I am waiting for someone repley.
Hi May,
Would be better to open a new Post rather than picking on one that is now > 3 years old.
Nevertheless it seems my response on 2016-03-03 applies to your problem as well. You should most likely make OwnerId and LastModifiedId be of type Text (not a record of type user) as the connector can only bring the flat identifier (UserId) back.
Then you'd need to manually fill extra information to get user details. The best option is usually to cache that in your database (e.g. you could have a table that replicates the Users in salesforce, storing their SF_Id). You could keep a Structure record attribute in your CareerHistory structure (and then fill it up from your local database), but cannot give it the name of the Id, otherwise you'll face the above issue.
Hope this helps.
Gonçalo