View

<Button text="Conheça" icon="sap-icon://hint" type="Transparent" press="onPressConheca"/>

Controller

Na view pode ser qualquer elemento. Basta que na Controller seja usado o comando openBy passando o oEvent recebido.

var formattedText = new sap.m.FormattedText({
	htmlText: `<strong>${oEvent.getSource().getParent().getBindingContext().getProperty().BoptiMd}</strong> <br> teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste teste`,
	width: "300px"
});

formattedText.addStyleClass("sapUiSmallMargin");

var oPopover = new sap.m.ResponsivePopover({
	showHeader: sap.ui.Device._getSystem().desktop ? false : true,
	content: [formattedText],
	placement: sap.m.PlacementType.Auto
});

oPopover.openBy(oEvent.getSource());

Untitled