When a memo with the title of “Approved – R & W” is used in a repair case the note (which is a date) does not populate on the repair inspection report. If any of the other “Approved” statuses is used, the note prints on the repair inspection report. How can I add “Approved – R & W” as a status that will print in the “approval date” field on the repair inspection report?
If looking at the expression for hiding the field, it is calling for the field to be hidden unless the Memo_CategoryID equals “APPR”. The Memo_CategoryID for your ‘Approve - R & W’ is something other than “APPR” so it doesn’t print.
There is a Memo Category screen available and it should list the various codes for the Memo Categories. You will need to find the correct File type at the top of the screen for these entries. In your case, it may be ‘Service Call Center’.
I’ve never heard of that. Maybe if submitted via a call but that’s not how our workflow is. I used to be able to click display field level help and it would give me the epbinding, DB field as well as the data field.
by any chance, would you know what the syntax would be to display both APPROVED and APPROVED R&W values if shown. Currently but would like to add the APPR4 so it would show values for when APPROVED is select or when APPROVED R&W is selected.
=UCASE(Fields!Memo_CategoryID.Value) <> “APPR”
I am getting the same results, no data, as well on the slide out screen but the information displays correctly when selecting a field on the main screen. I would chalk it up to a Kinetics issue. I looked at the Memo table via BAQ and I am seeing that Memo Title = Memo_MemoDesc, User ID = Memo_UserID, Notes = Memo_MemoText, Category = Memo_CategoryID. I hope this helps and sorry for the confusion.
This SHOULD use the “InStr” (in string) like a “contains” statements. So if your CategoryID.Value “contains” APPR", then “false” (don’t hide it), else “true” (hide it).