# get the related Support Request, this should not be None
support_request_list=portal.portal_catalog(portal_type="Support Request",id=context.getId())# with id keyword, this function will return a sequence data type which contains one element.
# get the all HTML Posts which related to this Support Request
# get the all HTML Posts which related to this Support Request
post_list=portal.portal_catalog(portal_type="HTML Post",strict_follow_up_uid=context.getUid(),sort_on=(('modification_date','descending'),),limit=1,validation_state="published")# with id keyword, this function will return a sequence data type which contains one element.
post_list=portal.portal_catalog(portal_type="HTML Post",strict_follow_up_uid=support_request_object.getUid(),sort_on=(('modification_date','descending'),),limit=1,validation_state="published")# with id keyword, this function will return a sequence data type which contains one element.
# get the related Support Request, this should not be None
support_request_list=portal.portal_catalog(portal_type="Support Request",id=context.getId())# with id keyword, this function will return a sequence data type which contains one element.