Pulling Amounts from HUD Line 1202 & CDF Line E02

Discussions related to ReadyDoc development.
Post Reply
applelisa
Posts: 6
Joined: Wed Feb 07, 2018 2:41 pm

Pulling Amounts from HUD Line 1202 & CDF Line E02

Post 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!
Attachments
SoftPro Prompt.png
SoftPro Prompt.png (33.38 KiB) Viewed 1389 times
Line 1202.PNG
Line 1202.PNG (25.67 KiB) Viewed 1389 times
Line E02.PNG
Line E02.PNG (15.12 KiB) Viewed 1389 times
BobRichards
Posts: 1376
Joined: Wed Jan 15, 2014 3:50 pm
Location: Raleigh, NC
Contact:

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

Post 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.
Bob Richards, Senior Software Developer, SoftPro
Post Reply