Site Studio has show this intermittent problem where sections have been added one day, then have been lost next time SS is run. There doesn't seem to be any...
Hi All, I have problem doing performance test against stellent service. I have a custom service that basicly just insert data to the database within a...
I just upgraded to SS 7.7 and "YES" I am having this same problem. I will post anything I discover in troubleshooting. Jessica ... From: "mark_warren_morse"...
That's really weird... The most obvious reason is that somebody is checking in a new Site Studio project file, or deleting the existing one. User error?...
That could be any number of things... Java could have gone out to lunch under stress because of a synchronized block, there could be a deadlock in the...
Hi Mark, Ok, I cheated a little ... ;-) This knowledge comes from a bit of experience with the product. The closest documented example is probably in the help...
You can't use <$loop$> on a String variable. It can only be used on a ResultSet variable. In your situation, you are going to have to use <$rsFirst(dummy1)$>...
In our case, I am pretty sure it is related to how we call certain navigation nodes. Has anyone experienced this specifically with SS 7.7? JH ... From: Brian...
Is there any iDocScript function available to split string? I want t split following string at ";". String is abc;def;ghi;jkl Is there any other way, i can...
IDOC doesn't do arrays, so it would be difficult to get this to work as you would expect it to in VBScript or Java. You might be able to systematically pull...
We are looking to auto-generate Content IDs based on the Metadata information that users enter. So if someone creates a Fragment, then it would assign...
Provide you're using v7.5.x or higher, that's easily configurable using content profiles/rules and a derived field. Create a rule that concatenates the info...
Little hard way to achieve is to write a component and override compute_std_field_overrides. You can use isUpdate, isCheckin etc. and than manipulate multiple...
If your string doesn't have any commas in it, then you could quickly replace all semicolons with commans and then use <$rsMakeFromString('rsetName', string)$> ...
For some reason, I keep forgetting about that function. Definitely a nice way to make something loopable. Christopher Owens Enterprise Content Management...
Thanks Chris and Sebastian rsMakeFromString is good one. I was able to extract information i needed using it along with strReplace. Here is example code.... ...
There is also a free how-to component available that helps you do this - I believe it utilizes filters. Watch out with using rules to do this. If you want...
What concerns should we have about using rules for this type of thing? How might that affect workflow? I'd hate to make a recommendation that might cause...
I'm a trainer for Stellent, we use to have this as an optional activity working with rules. The solution appeared to work, but the item wouldn't go into...
Thanks for sharing that bit of information. Much appreciated. Good advice :-) Best regards, Chris Christopher Owens Enterprise Content Management Architect ...
In contributor mode, two separate paragraphs show no difference in terms of spacing. In browser view, one paragraph displays larger spacing between sentence...
The Search page consists of some metadata fields as well as some fields which are not metadata fields. These fields are associated with a content indirectly...
Hi Team, I have set up an account with what I think are the same priviledges as the sysadmin account. Yet when I do a quick search the sysadmin account is...
Of course you could write some idoc-code to filter the searchresults, but this could slow performance of the query. The easiest way would be to create one or...
We had some issues with the publisher (database connection loss) while other connections worked fine. The publisher seemed to hang up in this connection. We...
Have a URL we can look at? It's tough to say without actually seeing the problem first hand. Best regards, Chris Christopher Owens Enterprise Content...
Okay, if that's the case, then I would consider creating a custom service with a cached query to retrieve that info from the database. Then you can return that...
Hi Guys, I want to create functions using Idoc script which contains common Idoc code which can be reused across various functionalities. Is it possible to...
Absolutely! Check the NewIdocScript component in the How To Components available/downloadable from the Extras section of the Support site. They teach how to...