Good Afternoon all.
I am new to this forum and MS Dynamics RMS, so please forgive me if i am a bit vague.
I am trying to add our Sales Rep's name to the sales receipt. So far i have managed to get the receipt to say 'Sales Rep:' but it wont pull across the name.
Here is what my receipt.xml file looks like:
<!-- show transaction date/time/number -->
<TABLE>
<BORDER> tbNone </BORDER>
<FONT> "Small" </FONT>
<COLUMNHEADER>
<ALIGNMENT> "<~" </ALIGNMENT>
<WIDTH> PageWidth * 0.50 </WIDTH>
<TEXT> "" </TEXT>
</COLUMNHEADER>
<COLUMNHEADER>
<ALIGNMENT> "<~" </ALIGNMENT>
<WIDTH> PageWidth * 0.50 </WIDTH>
<TEXT> "" </TEXT>
</COLUMNHEADER>
<IF>
<CONDITION> Transaction.ReceiptReferenceNumber </CONDITION>
<THEN>
<ROW> Transaction.ReceiptReferenceNumberCaption ":|" Transaction.ReceiptReferenceNumber </ROW>
</THEN>
</IF>
<ROW> Transaction.ReceiptTransactionNumberCaption ":|" Transaction.ReceiptTransactionNumber </ROW>
<IF>
<CONDITION> Len(Customer.AccountNumber) </CONDITION>
<THEN>
<ROW> "Account #:|" Customer.AccountNumber </ROW>
</THEN>
</IF>
<ROW> "Date: " Transaction.Date "|Time: " Transaction.Time </ROW>
<ROW> "Sales Rep: " entry.salesrep.name "|Register #: " Register.Number </ROW>
<ROW/>
</TABLE>
Hope you can help a beginner