• FlatFive
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
I'm trying to create a simple pop-up window to reflow data in a more printable format. I can access all the account fields including my custom fields with no problem, but these are basically appointment cards I'm trying to print and I'd like to grab information about the event as well, such as subject, location, date and time, etc. The event is in the future of my test record, and it is an event, not a task. Why won't event fields show up?

Here I reduced the code to its simplest form.

<html>
<body>
Account Name:{!Account.Name}<br>
Event Subject:{!Event.Subject}<br>
</body>
</html>

When I execute this code, the result is:

Account Name: John Smith
Event Subject:

Any help is appreciated.