What is SDL equivalent of DITAVAL file?

Hi,

For writers who are used to working with and organising their condition rules in a DITAVAL file that can be maintained, shared and reused, does SDL have a similar mechanism to a DITAVAL file?

Thanks,

Ann

Parents Reply Children
  • Hi Ann,

    Out of the Box, the tooling is not supporting through a UI feature the copying of a publication context from one publication to the next.

    However the API is able to do so. So you could write up your own process which would synchronize one publication context from one pubication to another publication.

    You can retrieve the field FISHPUBCONTEXT as a metadata property of the publication version using an requested metaddata structure as shown below

    <ishfields><ishfield name='FISHPUBCONTEXT' level='version'/></ishfields>

    Once the value is retrieved you can update/set the same property on the other publication version objects using a metadata structure as shown below

    <ishfields><ishfield name='FISHPUBCONTEXT' level='version'>value of the retrieved property</ishfield></ishfields>

    Do keep in mind that the ISHRemote Powershell library is a wrapper around the API layer and can be used to implement this type of process.

    Kind Regards,

    Raf