My answers are for a distribution with known parameters. It's not specific to lognormal, but obviously applies to it too. The integrals use the lower limit of integration 0, but you can change them to $-\infty$ then they'll work for any distribution with finite mean, not only the ones with positive domain such as lognormal.
The optimal point forecast is $\hat x$, the PDF and CDF are $f(x),F(x)$, loss function is $C(x,\hat x)$.
- MSE, the optimal forecast is mean $\hat x = E[x]$.
$$C(x,\hat x)=(x-\hat x)^2$$
First order condition (FOC) for minimum expected cost:
$$\frac \partial {\partial \hat x}E[C(x,\hat x)]=E[-2(x-\hat x)]=0$$
$$\hat x=E[x]=\mu$$
2,3. MAE & MASE, the optimal forecast is median $F(\hat x)=1/2$.
$$C(x,\hat x)=|x-\hat x|$$
First order condition (FOC) for minimum expected cost:
$$\frac \partial {\partial \hat x}E[C(x,\hat x)]=
\frac \partial {\partial \hat x}\left(\int_0^{\hat x}(\hat x-x)dF(x)
+\int_{\hat x}^{\infty}( x-\hat x)dF(x)\right)\\
=F(\hat x)-(1-F(\hat x))=0$$
$$F(\hat x)=\frac 1 2$$
So, $\hat x$ is the median.
- MAPE, the optimal forecast is median $G(\hat x)=1/2$, where $dG = cdF/x$ for some constant $c$.
$$C(x,\hat x)=|1-\frac{\hat x} x |$$
First order condition (FOC) for minimum expected cost:
$$\frac \partial {\partial \hat x}E[C(x,\hat x)]=
\frac \partial {\partial \hat x}\left(\int_0^{\hat x}(\frac{\hat x-x} x)dF(x)
+\int_{\hat x}^{\infty}( \frac{x-\hat x} x)dF(x)\right)\\
=\frac 1 {\hat x}(G(\hat x)-(1-G(\hat x)))=0$$
$$G(\hat x)=\frac 1 2$$
So, $\hat x$ is the median of $G$.
Finite mean
It is important to note that distributions with undefined mean such as Cauchy will not have a good answer for MSE. This is a very serious problem in business forecasting for it is not obvious that every real life distribution has a mean. It can be argued that some distributions can have a very fat tail, so fat that in fact the mean is undefined.
In these cases there is no optimal point forecast with MSE.