Setting published item state in SDL Tridion

Using SDL Tridion 2011 SP1.

Is there a way in TOM.NET so that the published status of an element in the SDL Tridion can be set to publication / Unpublished without actually publishing / un-publishing?

I remember the presence of such a property in the TOM API.

+4
source share
2 answers

Please provide your version of SDL Tridion, including the Service Pack, and any bug fixes.

Some versions of TOM.NET are read-only. If you do not do this in a template or event system, you will probably need to do this using Core Service, as using TOM.NET is not supported in other code. Although I'm not sure that this is currently possible using Core Service.

Also take a look at this post in which users have an old Interops: How to set IsPublishedTo status on a Tridion component?

+2
source

Element publishing status is a read-only property that only the Publisher process can change. Thus, you cannot change your status through TOM.NET or CoreService.

Now you can use TOM / TDSE to change it as before. I believe that a raise request has been executed to resolve this using CoreService, I will check the status.

+2
source

All Articles