Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

Proofing a continuous delivery

Avatar

Level 2

Hi there

Is it possible to generate a proof when using a continuous delivery in a workflow? I am keen to do this as I will be using script within the 'Advanced' tab to define certain parameters and so need to check that this is working as intended.

I have found the delivery.PrepareProof (    Boolean     bStart) parameter within the CHM file. Will this do it? If so, is anyone able to advise what value goes in the bStart parameter?

Cheers

Chris

1 Accepted Solution

Avatar

Correct answer by
Level 1

Being boolean you just need to use the value of 1 for bStart.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:nms:delivery">

  <soapenv:Header/>

  <soapenv:Body>

      <urn:PrepareProof>

        <urn:sessiontoken>___faked785-5bad-48f9-824d-e637fa869321</urn:sessiontoken>

        <urn:entity>

          <!--You may enter ANY elements at this point-->

        </urn:entity>

        <urn:bBStart>1</urn:bBStart>

      </urn:PrepareProof>

  </soapenv:Body>

</soapenv:Envelope>

View solution in original post

1 Reply

Avatar

Correct answer by
Level 1

Being boolean you just need to use the value of 1 for bStart.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:nms:delivery">

  <soapenv:Header/>

  <soapenv:Body>

      <urn:PrepareProof>

        <urn:sessiontoken>___faked785-5bad-48f9-824d-e637fa869321</urn:sessiontoken>

        <urn:entity>

          <!--You may enter ANY elements at this point-->

        </urn:entity>

        <urn:bBStart>1</urn:bBStart>

      </urn:PrepareProof>

  </soapenv:Body>

</soapenv:Envelope>