Page 1 of 1

Pulling Amounts from HUD Line 1202 & CDF Line E02

Posted: Fri Nov 15, 2019 3:46 pm
by applelisa
Hello,

How can I pull amounts from specific lines into my ReadyDoc? Specifically, for HUD files, I need to pull the amount from line 1202 (on the Recording Charges (1200) screen); for CD files, I need to pull the amount from line E02 (on the CDF Page 2 screen).

Here is what I have so far, respectively:
{{.HUDs.Section1200.Charges.Fees.Amount}}
{{.CDFs.Lines.Charges.Amount}}

Both are working well, except I am of course getting a prompt (attached) asking me to choose from the qualifying 1200SectionLines (for HUD) or from the qualifying CDF lines (for CD).

Any help would be greatly appreciated. Thank you!

Re: Pulling Amounts from HUD Line 1202 & CDF Line E02

Posted: Fri Nov 15, 2019 5:17 pm
by BobRichards
I received a response from a ReadyDocs developer:

CDF:

Code: Select all

<FOREACH {{Order.CDFs.TaxesAndGovernmentFeesSection.Lines}}>
<FOREACH {{.Charges}}>
<FOREACH {{.Fees[{{.FeeScheduleType}}="Recording" and {{.DocumentType}}="Deed"]}}>
    <VAR $1202Total ({{$1202Total}} + {{.Amount}})>
</FOREACH>
</FOREACH>
</FOREACH>{{$1202Total}} 
HUD:

Code: Select all

<FOREACH {{Order.Hud.HudLine[1202]}}>
<FOREACH {{.Fee[{{.DocumentType}}="Deed"]}}>
    <VAR $1202Total ({{$1202Total}} + {{.Amount}})>
</FOREACH>
</FOREACH>{{$1202Total}}
I believe we have documents training classes. Contact your SoftPro customer service representative if you are interested.