Discussion posts and replies are publicly visible
Stefan Helzle , Mike Schmitt , sorry for the delay in replying.
While I was replying to your thread, my account got frozen . I am getting the following error:
"There is an issue with your user account: The allowed frequency of abusive content was exceeded (by 'Abusive User Detection by Abuse Frequency')."
Not sure what went wrong. I just entered a URL that I was using to get a JSON reply and pasted a snapshot of JSON reply. I have not added any abusive content.
Due to this, I am not able to participate in community activities as well .
Hopefully, the community admin will give access back to my account.
Please let me know if anyone have any ideas to resolve this.
Yogi Patel said:There is an issue with your user account
This has been happening to a bunch of us intermittently. I've alerted the community admins for you. They're working to straighten things out as they happen (i assume the spam filters are set too strong or something.)
There is a rule set that only allows for 2 discussion posts or replies per minute. If you exceed this amount, your account will be flagged. If you have any additional questions, please let us know. This is what i got from Community when i asked about it.
Yes, there is limit on posting comments. However, I am getting following message:
Also, till account is locked. Hence, not able to post any comments. Hopefully, community admin will unlock it.
Hi, I am facing same issue. my local variable return list of string. count and length both return 1
PFA snapshot.
this is not very meaningful without seeing your actual code, data structure, etc.
What is the "totalCount" here actually resulting from? How are you trying to ascertain the length/count?
a!localVariables( local!orderIds: rule!ABC_getOrders(id: "Abc"), //integration call returns List of strings local!totalCount: length(local!orderIds), local!totalCount)
your integration call is probably returning a nested list. you didn't post the expanded version of the data structure it's returning so it's hard to know for sure. either way, wrap "rule!ABC_getOrders()" in a "a!flatten()" call and see what happens.
Thank you for your input. On the formatted result it say "list of String " but when i open the value it shows Anytype ,
I type cast to list string and it worked. thanks.
a!localVariables(
local!orderIds: rule!ABC_getOrders(id: "Abc"), //integration call returns List of strings
local!totalCount: length(cast(typeof({"asdjahsd","asdasfasd"}),local!orderIds)),
local!totalCount)
Instead of using typeof() you can also directly reference a type. In your case it would be one of this.
{ typename('type!Text?list'), typename(a!listType(type!Text)), }
or just wrap in toUniformString()?