Page 1 of 1

Prompt in document footer

Posted: Fri Nov 17, 2023 5:35 pm
by nickparker-hsoa
I have a custom field that is set as a prompt and that is then coded into a ReadyBloc that is later referenced on the main document in the footer. When I render the document, the prompt does not come up. Is there a way to prompt from a ReadyBloc that is set as a footer or another work around?

Screen shots of the custom field, document footer and readybloc have been attached.

Re: Prompt in document footer

Posted: Tue Nov 28, 2023 1:40 pm
by nickparker-hsoa
Hi - checking to see if there was any update on this question?

Re: Prompt in document footer

Posted: Thu Nov 30, 2023 6:47 pm
by BobRichards
I have sent this to our Documents group. I will reply with any response I get. I don't know when I will hear back since they are a separate group. Feel free to ping me again if you don't hear back from me in a reasonable amount of time.

Sorry for the delay.

Re: Prompt in document footer

Posted: Mon Dec 04, 2023 12:23 pm
by BobRichards
This needs to be added to the HEADER of the document.

Code: Select all

<VAR $Fax (“”)><IF (IsEmpty({{Order.ReturnToEscrowOfficeFaxNumber##}}))><VAR $Fax ({{Order.Escrow.Office.Fax}})><ELSE><VAR $Fax ({{Order.ReturnToEscrowOfficeFaxNumber##}})></IF>
Because our rendering engine renders HEADERS and FOOTERS before the body of the document, the value assigned to the $Fax variable must be established prior to the rendering of the footer, which is where the ReadyBloc reference (<REF (ftg_EscrowOfficeFooter_PrivatePayoffEnglish##)>) is located.

Once the variable coding above is added to the header, the data is rendered as expected.